library(wordcloud)
## Loading required package: RColorBrewer
library(plotly)
## Loading required package: ggplot2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
library(tm)
## Loading required package: NLP
## 
## Attaching package: 'NLP'
## The following object is masked from 'package:ggplot2':
## 
##     annotate
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(RColorBrewer)
library(ggplot2)
library(twitteR)
## 
## Attaching package: 'twitteR'
## The following objects are masked from 'package:dplyr':
## 
##     id, location

Set up credentials

CONSUMER_SECRET <- "EmH5TYf5X0vYCiKwxb8GaCCwZ2DR7094qMA9hb4tXjdoE4W27A"
CONSUMER_KEY <- "Az08rualcz9xPB2uAA3bDRftn"
ACCESS_SECRET <- "gYDcMWu6JQLMR7wT3osJq6itQD9YXHek9r44wp8tOo0pT"
ACCESS_TOKEN <- "1595060341146234880-s3E81fGpab6vA3xWJIPhpVAu7DTP8h"

Connect to twitter

setup_twitter_oauth(consumer_key = CONSUMER_KEY,
                    consumer_secret = CONSUMER_SECRET,
                    access_token = ACCESS_TOKEN,
                    access_secret = ACCESS_SECRET)
## [1] "Using direct authentication"

Get 10000 observations “excluding retweets

trendingtweets <- searchTwitter("Seventeen",
                                n = 10000,
                                lang = "en",
                                since = "2022-12-10",
                                until = "2022-12-17",
                                retryOnRateLimit=120)

list to data frame

seven10DF <- twListToDF(trendingtweets)

save & load data

save(seven10DF, file = "seven10DF.Rdata")
load(file = "seven10DF.Rdata")

check missing values

missingval <- sapply(seven10DF, function(x) sum(is.na(x)))
missingval
##          text     favorited favoriteCount     replyToSN       created 
##             0             0             0          9577             0 
##     truncated    replyToSID            id    replyToUID  statusSource 
##             0          9582             0          9577             0 
##    screenName  retweetCount     isRetweet     retweeted     longitude 
##             0             0             0             0         10000 
##      latitude 
##         10000

subsetting

seventeen <- seven10DF %>%
  select(screenName,text,created, isRetweet) %>% filter(isRetweet == FALSE)
save(seventeen, file = "seventeenDF.Rdata")
load(file = "seventeenDF.Rdata")

grouping

seventeen %>% 
  group_by(1) %>%
  summarise(max = max(created), min = min(created))
## # A tibble: 1 × 3
##     `1` max                 min                
##   <dbl> <dttm>              <dttm>             
## 1     1 2022-12-16 23:59:39 2022-12-16 17:48:24
grp1 <- seventeen %>%  mutate(Created_At_Round = created %>% round(units = 'hours') %>% as.POSIXct())
grp1
##           screenName
## 1          kimguggie
## 2            ko0xmin
## 3        mangchimmy_
## 4            jjkjeky
## 5         inesdemiau
## 6         punidrag0n
## 7        jieuncheolk
## 8        ahjumma1127
## 9          hnyhuncsc
## 10    jeonghan_comms
## 11       mvnjirosano
## 12           fverluv
## 13      korean_shine
## 14        love214jae
## 15       jy_fries143
## 16        shuarandom
## 17       EvitaLyrics
## 18     Stupidcounter
## 19       coupsdotnet
## 20     FrancheskaMax
## 21      lovemochi___
## 22        erizenxvii
## 23         Yannabeul
## 24       icaruseunie
## 25           httpcmy
## 26        bearieyoon
## 27       ShinggiYeol
## 28     stefaniaminha
## 29       mopipomixer
## 30         bingnemai
## 31       b2MarineBio
## 32       calanguit0s
## 33           fvslivs
## 34      iS2couffaine
## 35       Kiamazinggg
## 36    jeonghan_comms
## 37        Chan07Hana
## 38         adoreshao
## 39        samxmendez
## 40        mkelainec_
## 41     mikeovernight
## 42          kth_axie
## 43          ENryPHEN
## 44       wwhoranghae
## 45      seokgyusmess
## 46        olliescart
## 47   olaoluw72135543
## 48        sm0lwonnie
## 49           margeds
## 50        LynT19_SVT
## 51           margeds
## 52         wonsolbuy
## 53     BROKE15405427
## 54           hiddoun
## 55      adamhorovitz
## 56     _summermagic_
## 57        hoonie_02z
## 58         honeyxsol
## 59         honeyxsol
## 60    themoonisloyal
## 61      17jihunsgirl
## 62         lighthaos
## 63      sincerelysvt
## 64       rurinaverse
## 65      IkoneriKshop
## 66   CandiceFortnite
## 67          _Moonpjw
## 68      kareninapark
## 69    strawberrymxnt
## 70      svtbillboard
## 71        hanniezel_
## 72    kwaciematahari
## 73           flock4l
## 74       laverezbrix
## 75    mundinhohannie
## 76           flock4l
## 77        yomkyunjin
## 78      dsrkylsantos
## 79           flock4l
## 80           luvrplu
## 81       shiashishii
## 82           flock4l
## 83    rpmradiostream
## 84       hae_tiger15
## 85           igununu
## 86      alleyesongyu
## 87     CArmstrongGFS
## 88          r_u_nice
## 89        only4hoshi
## 90            snyut0
## 91          elenawbk
## 92            haoznn
## 93   kwonfirerawrawr
## 94      world_skippy
## 95       infirescult
## 96    heesunsunshine
## 97       lyrakkk_SvT
## 98     bobalimilktea
## 99      GoggleDoddle
## 100       RimbaudBot
## 101  ParamountAurora
## 102        msleijean
## 103   BethPatterson5
## 104         elenawbk
## 105    GObyChocoberi
## 106     caratsmarket
## 107     scoupsfatass
## 108         yjhnslvr
## 109      outro_kooks
## 110     vern_offline
## 111      outro_kooks
## 112      justforgyuu
## 113        moonyskaa
## 114         hanieeun
## 115      hyequotebot
## 116     crimeboyspos
## 117       junhaodoll
## 118      foreheadsvt
## 119           stthsn
## 120      outro_kooks
## 121      ChevalricRS
## 122   kwanswatergirl
## 123      outro_kooks
## 124       MINGH8OLUV
## 125     stephbertram
## 126    KPopKDramaGal
## 127        ceezennie
## 128          gr8hao_
## 129    luvqcjungkook
## 130         klutaker
## 131    lyricsnightly
## 132     hanniehaee17
## 133      Bre_edillor
## 134       jeonginmia
## 135          Gyumigu
## 136         zenkun__
## 137          ItsMryR
## 138   sseonmyeonghan
## 139   Handsel_fanboy
## 140   SugaHoneyHoney
## 141        poppillon
## 142      everyownwoo
## 143          dvrstun
## 144       akariamore
## 145      mydeareight
## 146          clllinn
## 147  teamseventeenvn
## 148      Hennranghae
## 149   therealsorenzo
## 150     seventhetics
## 151      swirlzcream
## 152         zenkun__
## 153      beomiegummy
## 154      artcmistics
## 155    cheolitobebbu
## 156       flwrsdino_
## 157         2capts99
## 158        alotoftae
## 159   CoachAWheatley
## 160       chediejeon
## 161      gomdoriboos
## 162   SolAriaWriting
## 163         sannssaa
## 164    RobinMillionZ
## 165    raycarrozza74
## 166    martial_law16
## 167    bookwanieluvr
## 168     iblckmulti21
## 169      teach_katie
## 170          pcrikth
## 171          m0ira_1
## 172      Y00NGIS_TWT
## 173          vmin_hk
## 174      tellembi131
## 175         dateorca
## 176  Shua_everybodyy
## 177          hqtsbot
## 178     kazumadaniel
## 179       beomjjangg
## 180     hoshikanawut
## 181     mavillera_ww
## 182      CastelloesA
## 183       fangurleng
## 184      luvwonucart
## 185          TwcxSvt
## 186        eocheolna
## 187        acciolice
## 188       dan_cussen
## 189    wonwoostudios
## 190        Rainerie_
## 191          forJHHJ
## 192          chnlezh
## 193   BeySVTColombia
## 194      Mochiissart
## 195     IkoneriKshop
## 196       8winenight
## 197        Ryu_MiHye
## 198       16to17czma
## 199        day_arday
## 200         kyhglows
## 201        HallyuLuv
## 202        Berdabest
## 203         FucknoOs
## 204      BTSPhSeesaw
## 205         ksjscart
## 206       no20751519
## 207   kwanswatergirl
## 208      Taejoooning
## 209           _hcshi
## 210     571213126fan
## 211         geminsik
## 212        wndermuse
## 213         roufinou
## 214     SeoArthurKim
## 215        jihansluv
## 216         iveskiss
## 217   amitaf35720419
## 218    ahgasebongtin
## 219       mingyuIomI
## 220     alexiaxmunoz
## 221   hwalittlestaar
## 222       deerhansie
## 223       wonsoonmin
## 224   iKONICandTeume
## 225       TF_Moments
## 226        zonelissa
## 227      PROTECT_SVT
## 228      kyeoranghae
## 229    sugaringjungp
## 230     brownienteen
## 231       jowanithe8
## 232         majophia
## 233       PeteMazza4
## 234      ellearchiv3
## 235          LeckzyC
## 236  anshoryrieduane
## 237     Bardagulan17
## 238        jheslayyy
## 239       onlynaksuu
## 240       cyjprofile
## 241           jmduke
## 242       jcngwoniee
## 243     shuasblossom
## 244   aprilfoolishly
## 245        aroundydj
## 246          chum164
## 247        moshimagu
## 248    andreacue_AAC
## 249    sparklessjels
## 250   notpullandbear
## 251     poyo_gyu_SVT
## 252  geeksofmilkyway
## 253        hansknnie
## 254          gyujhan
## 255        Luis06962
## 256    wonandonlysvt
## 257          salscuu
## 258       huixuhao_o
## 259    vicostan5ever
## 260    previousindex
## 261       boosreason
## 262        watarubfs
## 263       deerhansie
## 264  helloshawtyawty
## 265   beverlytoegold
## 266      Joe_Alouder
## 267        pIanethim
## 268         hongriri
## 269        ddaljihan
## 270       carrotkaik
## 271         SUNWOSHI
## 272       Diiinee_11
## 273         TitaAsul
## 274         TitaAsul
## 275         TitaAsul
## 276         TitaAsul
## 277         TitaAsul
## 278  LoveCoryForLife
## 279       cherrowlet
## 280         shinix03
## 281        kwonushii
## 282          meuthe8
## 283         yeoyeox1
## 284        sparksyjh
## 285           bcgaes
## 286      tomatocoups
## 287    wonranghaeee_
## 288         eshiwaps
## 289      luv4yunjin_
## 290    WRLDOFTINASHE
## 291       Marklee_04
## 292     OneHatMadder
## 293      Sanyinjiaoo
## 294  Tellmunrothena1
## 295        doieyongs
## 296        ddeonu637
## 297      yoonranghae
## 298        OhAngge94
## 299   bornpinkjossie
## 300         95ZH0LIC
## 301     JeonKate_Que
## 302        fannaddy7
## 303     _jeongkkulbo
## 304    AndrewFilms15
## 305          mzkgems
## 306  wintercrush9588
## 307        lixbotluv
## 308      fullsuniest
## 309       nainonandy
## 310      mingyu17ive
## 311       slipkn6tic
## 312   jeonghannierae
## 313     kayecabatian
## 314       snapshushu
## 315      Wooaahaee17
## 316       slipkn6tic
## 317       luvielilyv
## 318      fullsuniest
## 319         fullofjs
## 320   Hoshi_99others
## 321   BlueasSerenity
## 322       _kathimoo_
## 323     AtayeeTajala
## 324    lrn_Shuarling
## 325       asterwhims
## 326       caratiny23
## 327         jhaeysha
## 328         riiisarm
## 329      fullsuniest
## 330         n44m1nha
## 331  yonkiminmyfeels
## 332         MYundt94
## 333       sm0lwonnie
## 334      gentleshuan
## 335          MonggiD
## 336         bf2mingi
## 337       gyuukookie
## 338    echoofpromise
## 339      hueningjinn
## 340   wonhanseoksoon
## 341      fullsuniest
## 342    sillyaswonwoo
## 343          O2_Zein
## 344   withshuaminwon
## 345         redmafer
## 346      rizvikisa01
## 347           woozmo
## 348        hoshitaey
## 349      CaratLandPH
## 350    Chaaariiinaaa
## 351        doominsun
## 352      thickkskull
## 353         jnminmin
## 354        pochajunn
## 355         jjeoshuu
## 356        koomotive
## 357      kiraya_mita
## 358       smellarbee
## 359    __snapshoot__
## 360        ughnooope
## 361          i60kwon
## 362     SeventeenIU_
## 363      pepsschoice
## 364      Veaming1995
## 365     aychitenphon
## 366       chrrylyn13
## 367          msyckae
## 368     joannacaraig
## 369   beatlemaniabot
## 370       CCT_JOSHUA
## 371     seokgyusmess
## 372      segyeshiimo
## 373     gilanggigiii
## 374        h0ney3ee_
## 375  thosewithoutbot
## 376      kyeomshijun
## 377         ibeomizz
## 378   halsugofficial
## 379   halsugofficial
## 380        seoryungz
## 381         camokiti
## 382      michikartsu
## 383        Dodoljong
## 384       minlixxoxo
## 385      dreamies_17
## 386         ChodePNE
## 387         junyakos
## 388        billboard
## 389       mexabigirl
## 390        koushimai
## 391        squishyfu
## 392        jeonineja
## 393   smilingdokyeom
## 394      schlashlomi
## 395   suju22teuksung
## 396        Vantellaa
## 397      pyongjeongi
## 398        Yannabeul
## 399   always_svtenha
## 400         kzells13
## 401         miyosamu
## 402          fortbzs
## 403      takoyakimob
## 404          agwenay
## 405  nicksbluepen111
## 406      gyuscircles
## 407     oncegenedays
## 408     sweetanime99
## 409     Lolycoupssss
## 410          TwcxSvt
## 411     stevedjoluvr
## 412     soonyoungsss
## 413       gyuhanwooV
## 414       Joyofjelly
## 415       sm17eycrew
## 416       jseonglove
## 417           jiosgf
## 418    marinalyrical
## 419         sannssaa
## 420  derandomshitbot
## 421        skzsweden
## 422    Stupidcounter
## 423        blue2boot
## 424        hera_nori
## 425      svtshongsam
## 426        seventeen
## 427      aka_rachael
## 428       tarastrike
## 429       cscheolxxx
## 430    GinghamAndTea
## 431        seventeen
## 432     mydearestwon
## 433   Itsmepeeyyyttt
## 434          huierin
## 435       min_Dee879
## 436        kwonushii
## 437      seungprints
## 438       vickookies
## 439     cutelikejoon
## 440   loleng_whalien
## 441       BinAnimals
## 442           kezRmr
## 443        kyeomsgyu
## 444        kwonushii
## 445        ra1nlover
## 446  lorelaysoonhoon
## 447      ygdreamingg
## 448     IkoneriKshop
## 449       yonghafans
## 450        kwonushii
## 451     IkoneriKshop
## 452     chelseacpIXP
## 453   daengnyangsseu
## 454   hoRANGHAEshiii
## 455   dawn_summersrp
## 456   BeySVTColombia
## 457      actuallygyu
## 458    svntncarat17_
## 459      gam3bo1wonu
## 460     nwafestivals
## 461        joohoones
## 462       yoshikyeom
## 463      starryhun94
## 464         PT_KOREA
## 465       JHaniToast
## 466      KPOPFansApp
## 467        shujiiii_
## 468   SinSin80849323
## 469       YUBINSHYUN
## 470   WonHuiKyeomBoo
## 471  DSOAgentKennedy
## 472  Caratdeulforlyf
## 473      jjklleclerc
## 474       ale_voyage
## 475   stolenmoonligh
## 476   stolenmoonligh
## 477          ssmyggv
## 478        marksnabi
## 479       fangurleng
## 480  leeseokminized_
## 481         alla_vic
## 482          jacimp3
## 483       LLLayagami
## 484        hansolmes
## 485  BluePurpleMusic
## 486     concert_next
## 487    Leidy34910365
## 488        parkbihon
## 489   Musicstradio20
## 490  Gretche22021642
## 491         kngychan
## 492    coupsofnoodle
## 493    daoud12827007
## 494      hoshikenz17
## 495     thedextazlab
## 496        jeonselca
## 497         kngychan
## 498       hanimeanie
## 499       moonmonggu
## 500      autoflaneur
## 501           jjaeyy
## 502       gam3boigyu
## 503     luvlykwano_o
## 504       ksybabieee
## 505       CALLUMN0VA
## 506        ___kidult
## 507           ivqn09
## 508     _wonwoofilms
## 509    esquireattire
## 510      hrts4woozii
## 511        Dorris78U
## 512       allyscart_
## 513  Sabrina34311023
## 514       kkumashane
## 515         bstvst__
## 516         ryuzuhas
## 517      gyuhuizones
## 518          Shuajii
## 519     joshujikyeom
## 520    SamSabotage96
## 521      ISP0SSESSED
## 522           lvryok
## 523  thefckrulooking
## 524      jungwonbffl
## 525     spinosauruus
## 526      mariebutsad
## 527  christi26412221
## 528         PT_KOREA
## 529  nervousyounglyr
## 530   lonelyfloweryg
## 531      simplyposhh
## 532     pathak_manya
## 533        ickyungyu
## 534   babynijeonghan
## 535     etherealwons
## 536     blueaces1128
## 537  jjkeybalenciaga
## 538    Tweets_ByCass
## 539        jamgyoobi
## 540      quotefeykoi
## 541           mezxig
## 542      just_pingu5
## 543        dh_qorgks
## 544     james047563m
## 545   LalSinghmahor3
## 546      shopcandtee
## 547     yoongiplants
## 548     salvati_lisa
## 549      hanna_yaaaa
## 550         9596blvd
## 551   ramminyeocart_
## 552      hansollieee
## 553       moonmonggu
## 554  lisamanobal_327
## 555        kiwiboong
## 556      DealsOnRPGs
## 557       moonmonggu
## 558          eusterz
## 559  waterIooletters
## 560    SOURlyricsbot
## 561     kywonniesimp
## 562        waveofshi
## 563      MovoSaijari
## 564     owhxkeyboard
## 565         upicgent
## 566         ae_fngrl
## 567      SVTL0VERB0T
## 568     minshuaberry
## 569   Mikszze_gyuhae
## 570    creature_from
## 571     yeontaehours
## 572           mxmbot
## 573        viesgidle
## 574           ltgyul
## 575     kpopvotes_ga
## 576  ann_yeonggggggg
## 577   istayneverland
## 578         tozakivy
## 579      jjklleclerc
## 580         kentohao
## 581      jjklleclerc
## 582     yejisoloist_
## 583        luvrcheoI
## 584       AbdaouiMed
## 585   CopradaGwyneth
## 586     king_jakween
## 587        b0ranghae
## 588   romina13750960
## 589          dkscart
## 590        LisaWick9
## 591         gyulaabi
## 592      jjklleclerc
## 593     jnkchaelisoo
## 594        jiunyeons
## 595       notUbitchh
## 596          wwridul
## 597        lorizonee
## 598     Geeky_Waffle
## 599     unofficialhy
## 600          Jr_mkgs
## 601          jwonhui
## 602     coupsiekelly
## 603      yoonranghae
## 604         lev0tate
## 605       Hoshihora6
## 606        joshucore
## 607  scoupsthighmeat
## 608       cheollie05
## 609     samanthalui_
## 610         sokenily
## 611         WOODZER0
## 612  pepperminthoshi
## 613  _hoshihoranghae
## 614            jwave
## 615          PEANduh
## 616    carmycarmyesq
## 617     danceologiez
## 618       pzrfectlou
## 619       Hoshihora6
## 620    Akinscoded147
## 621         shinix03
## 622         kyeomima
## 623         enchugoo
## 624          ReexRco
## 625   DouthitMichael
## 626        arocks_75
## 627       iseult1124
## 628    JimmyDetroit1
## 629       Hoshihora6
## 630      2damncheeky
## 631        bernacnti
## 632         lcvllnv_
## 633    dahyuns_chair
## 634       LetsSortIt
## 635     requiemarane
## 636       astrohajus
## 637    drowninginluv
## 638  Ashisha24624151
## 639    ariesheojiwon
## 640   enhypenseven__
## 641  oldworldromance
## 642  riskyriskywikgy
## 643  annyeongmerchph
## 644    ariesheojiwon
## 645      lunefaerie_
## 646        jiunyeons
## 647      yunh0shands
## 648        seventeen
## 649       _ddanadino
## 650  W13TMpHpipWHxot
## 651   SVTlifechoseme
## 652       Emmi_shane
## 653         oohkiera
## 654        jiunyeons
## 655    donutsnknives
## 656         DI0RLELE
## 657        jiunyeons
## 658      cristyclark
## 659  seventeen_cha92
## 660         OT12Soup
## 661       RimbaudBot
## 662          NAVYB00
## 663        woomygosh
## 664  Abdulwasishah50
## 665       sslyricbot
## 666        fullsunCJ
## 667      Beastin25_8
## 668     WonhoWeLoveU
## 669     idolshapebot
## 670        4SVTJIHAN
## 671       sleepingjh
## 672        hiautosng
## 673         wooaynih
## 674            WKDfm
## 675  rosiesrr_rreedd
## 676  chronoSprockets
## 677     verytiredtwt
## 678    k_alfarttoosi
## 679    SkzAntoinette
## 680        deekayeom
## 681    jihyultiverse
## 682        Mya_Facts
## 683       kkumashane
## 684     pheebeegates
## 685  LumiKPlaysGames
## 686   SexiestJiminie
## 687    ILove2Paint22
## 688  LumiKPlaysGames
## 689  theinsidexpress
## 690   oncemoobitreve
## 691    ariesheojiwon
## 692        luv__wonu
## 693  Movieblocktimus
## 694   piratekinghwax
## 695  tiny_taehyungie
## 696       yepthemsvt
## 697        meehehehe
## 698    FLOWERBOYSVTN
## 699     markybriones
## 700        koothelaa
## 701       bonsbestie
## 702          elfhao_
## 703       bonsbestie
## 704         seuIcart
## 705      donwilly01_
## 706      wowthatsrnb
## 707         chaefIwr
## 708        bluehrkyo
## 709   dazed420gaming
## 710        somizitos
## 711    WasHappeninLT
## 712    13officialTwt
## 713      some_day401
## 714       ecarchive_
## 715    ariesheojiwon
## 716       dasukaaaaa
## 717        wonufolla
## 718        brockpszn
## 719         shinix03
## 720      yoonranghae
## 721        TerrorD0g
## 722        33BEASTMM
## 723       AtA_Lyrics
## 724      kpoppiepapi
## 725        allchlosu
## 726       FatokisSon
## 727     pathak_manya
## 728    kiIIerslyrics
## 729      SciPiHarvey
## 730       yogirlchay
## 731       btsvt_OT20
## 732         ryuzuhas
## 733         iampaatt
## 734         carl1787
## 735     trinitycheck
## 736       horangsese
## 737           ZeGcgh
## 738       neojenosis
## 739      teamojunnie
## 740      teamojunnie
## 741     michaeleaves
## 742          mcpnews
## 743      teamojunnie
## 744         kioutie_
## 745   CoreyHasIssues
## 746      alltimegelo
## 747       amandbibis
## 748   teariciaanneuu
## 749       wonuversee
## 750           gtombs
## 751   AngelAmelia881
## 752       bonsbestie
## 753   rpmradiostream
## 754    Stupidcounter
## 755           lbvlil
## 756        seokkieji
## 757      sugapremacy
## 758  Amarach41208783
## 759       dreamofyuu
## 760      jiangtoopia
## 761  fangirlarchives
## 762        luv__wonu
## 763         yngishua
## 764         jujuhobi
## 765     RAHMAT998six
## 766      patchinoona
## 767      Guililla__1
## 768    ariesheojiwon
## 769         Volupt4s
## 770   KPopAurore1993
## 771   KPopAurore1993
## 772       gomenne666
## 773     tweekaroonie
## 774         kwannhao
## 775     ally_jianggg
## 776      goddess_xxv
## 777          lynzaxx
## 778        staynisse
## 779         hiraiscy
## 780    KirktonChurch
## 781     JohannaNobre
## 782    moaprillaicha
## 783  Christi61296539
## 784    scaraetherism
## 785       bonsbestie
## 786         svt_arry
## 787        Madziehwa
## 788     Miyaratoon_0
## 789        yjhlovbot
## 790        fitzsimme
## 791       itsandykim
## 792         hobabbie
## 793      aljabali737
## 794   bodylike3racha
## 795        Taehyun29
## 796       jottace019
## 797       taesskates
## 798   littlepixie006
## 799   hyacinth4maria
## 800           25ijis
## 801         edizza15
## 802   TheMuzicNation
## 803         minjizis
## 804       sohngarden
## 805   ourleadersfatu
## 806      chrln_yrm02
## 807       tteokbokkj
## 808    LilisSlestari
## 809  stannicocolyn_n
## 810     ningninguwiw
## 811         MANIIC11
## 812      ChartwayFCU
## 813         haeechoo
## 814  GordonJohnson19
## 815     getcool_jeno
## 816      alvinnenjap
## 817       yunjinlgbt
## 818   winterangelhao
## 819   benpalmach1967
## 820    kpopmultigain
## 821        seventeen
## 822     seokminroyal
## 823     byjeonheejin
## 824        bechiibeb
## 825  BluePurpleMusic
## 826     concert_next
## 827      acequotebot
## 828         john_kjv
## 829      cherubfinds
## 830       616IRONLAD
## 831   AboutScotlandd
## 832       tuanhaoism
## 833      cherubfinds
## 834     notsomeagain
## 835      cherubfinds
## 836         woIgreve
## 837    kuyaaamingyu_
## 838      cherubfinds
## 839     thedextazlab
## 840         Wen17Boo
## 841     seolasbestie
## 842      cherubfinds
## 843       minhaoland
## 844        seventeen
## 845       kyeomshua_
## 846    boo_from_jeju
## 847        SteSierra
## 848         gyupoetc
## 849     bibobiaddict
## 850    SVT_Vernonbot
## 851         yellOmeh
## 852  baekhyunee_EX0_
## 853         _qchinks
## 854      Santaro2410
## 855         odetovou
## 856      Santaro2410
## 857     chocoofrappe
## 858        liezldhin
## 859      ForKentin07
## 860    voopsie_daisy
## 861   anaelizabethdg
## 862      jokerwongyu
## 863      reverookiee
## 864      ForKentin07
## 865      taehyuncore
## 866         all_rhue
## 867       junhuioppa
## 868        quirkaaaa
## 869          boosfav
## 870  grimmyapologist
## 871   Tippipani_0801
## 872      taehyuncore
## 873         Joshuju_
## 874    jhonianguarin
## 875       gyulwonies
## 876       jdeclutter
## 877         Joshuju_
## 878           mmaxgf
## 879      woojoodollz
## 880         ___ohshi
## 881         luwandrw
## 882  InnieMinnieMoni
## 883    xuminghaoluvr
## 884     therealogive
## 885        beemin9yu
## 886       cheolattes
## 887          m4rshua
## 888    wonhaokyeom17
## 889        luv7yseok
## 890        seventeen
## 891       bae_forsvt
## 892      MeeInAugust
## 893        KrlosRad1
## 894         SlMP4JUN
## 895        joyuriful
## 896     bibobiaddict
## 897   boyfriendangeI
## 898        pmhmylove
## 899        pmhmylove
## 900  PodcastQuoteBot
## 901        kidultacy
## 902     lostlatibule
## 903         shuaoshi
## 904      sourirecart
## 905    floweredemian
## 906  IKnowYoureAScam
## 907        Azrael316
## 908      brattycarat
## 909      nicoleeeltg
## 910       DkDeokyeom
## 911       DkDeokyeom
## 912         gyyruiae
## 913      gam3bo1wonu
## 914         melokomi
## 915        hananunie
## 916          krae_rn
## 917        yumiebrry
## 918    theehongverse
## 919     Rosie_blink9
## 920        SegyeNaui
## 921   cholulasmarket
## 922      devluvschwe
## 923        pro_cabby
## 924       chuuyavale
## 925  borntoserve1968
## 926      sharlynn53s
## 927       BrucieKBot
## 928         eivorbot
## 929       om_tatamic
## 930  CentralCoastRa1
## 931  Kurotsuchi_____
## 932     froggyyeojin
## 933    bonesquotebot
## 934      minimevsart
## 935      yoonzinahae
## 936        imberna17
## 937    izallenjandro
## 938  serndpty_pledis
## 939      AuthorShout
## 940      jiminsfangs
## 941    malloryquinnn
## 942   __charliee____
## 943         TM_DALLA
## 944     coupranghaae
## 945        seventeen
## 946        celinieee
## 947     fullmoonjooe
## 948    readgellmaeee
## 949  bts_skz_lovebot
## 950      wonwoo_main
## 951        jeonghozi
## 952         teeniedk
## 953          10sbian
## 954      lexthemulti
## 955         DDilkies
## 956       EloisaAli5
## 957          ye0sunx
## 958        samedmn17
## 959       2_moka2006
## 960    smilesuminisa
## 961      SVT_Fatisha
## 962    every_wonwo_o
## 963      preshcarrot
## 964        hhwangina
## 965           11eons
## 966    Shleepysheep1
## 967           zzbhui
## 968        SANRlOJJK
## 969          gyvhans
## 970  Master_Goldfish
## 971       cloverclds
## 972      haichengmp3
## 973      theagwrites
## 974       essicakes_
## 975          jere7my
## 976     lostlatibule
## 977     jihancheol88
## 978     BlueRosie289
## 979     rowlenegrace
## 980    AdelineOulala
## 981       bymartiii_
## 982           ull_by
## 983       itsmeptrca
## 984     dokyeomhanie
## 985    thenameisdash
## 986     Simsekekkuin
## 987          gjsrulz
## 988        dksimjake
## 989     ready_to_woo
## 990        kenari_na
## 991   haruharuminwon
## 992        lixbotluv
## 993        jseunie07
## 994         wandmina
## 995    tiaraboo1004_
## 996        benoski73
## 997     SxvietWeapon
## 998  thisbrokenwheel
## 999        seventeen
## 1000       granny_vr
## 1001    jihoonbiloog
## 1002 Simplybrowsing1
## 1003        m0chii_3
## 1004      luvvyanggg
## 1005       hieutsiot
## 1006       hoeeshook
## 1007      hanniessvt
## 1008     ThiruGeneva
## 1009   smallmatsubot
## 1010     Shivvvvvvv2
## 1011  mattmonroe1980
## 1012       seventeen
## 1013      AnFhuiseog
## 1014     forevergluv
## 1015        dyochans
## 1016  haruharuminwon
## 1017     numbercount
## 1018     hyojinsmile
## 1019       hoeeshook
## 1020      extratteen
## 1021   bubble_ncteaa
## 1022 whatkindofcarat
## 1023  0xBigwin19bibi
## 1024        mindoksi
## 1025        mindoksi
## 1026       seobkitty
## 1027         xtinesp
## 1028       lousanoze
## 1029           yvmis
## 1030       soobifilm
## 1031   Stupidcounter
## 1032         newskzi
## 1033 strangeheqthers
## 1034  littlepixie006
## 1035       soobifilm
## 1036       daisy_bey
## 1037  Cristian_sem_H
## 1038    nelly_nella_
## 1039       vp_marina
## 1040          xiuspo
## 1041       0xytocity
## 1042  feerlvsdokyeom
## 1043 CaldwellThomas1
## 1044      EloisaAli5
## 1045   kelvinreyes08
## 1046     lachicashii
## 1047        mindoksi
## 1048          gyupov
## 1049     BotLifetime
## 1050        eilymee_
## 1051   hwnghyunjeanz
## 1052   dre_seventeen
## 1053           msnwu
## 1054       r4in3_twt
## 1055     Regvelvet20
## 1056         opavtyy
## 1057    pathak_manya
## 1058       normaIbot
## 1059     lilbadksw19
## 1060       shuasmwah
## 1061      jihan1995_
## 1062 wonwoosexcbrain
## 1063         PJHC4RT
## 1064     Snowfoxiiee
## 1065       BaRk_r0wR
## 1066        CaryennG
## 1067      huntzworld
## 1068       0297haulz
## 1069      aojxtmashi
## 1070 coupshan_sebong
## 1071        bewithbu
## 1072      sebongtrsr
## 1073       atpstumii
## 1074     777DKWonwoo
## 1075   dre_seventeen
## 1076 coupshan_sebong
## 1077     kawterXback
## 1078 Nick25426726585
## 1079      anyonedrei
## 1080        gabateez
## 1081           wzmg_
## 1082      ChoVhemmie
## 1083   itsmewannable
## 1084      TbeomxjunT
## 1085   dokyeeeooomie
## 1086      _llaineeey
## 1087     SayWahuWahu
## 1088      anyonedrei
## 1089   itsmewannable
## 1090       Jayee3Mp4
## 1091    vminkook_vmk
## 1092    iamnumberbot
## 1093      maricarttt
## 1094     lizisawommy
## 1095  CamelliaKiller
## 1096         KRISVEM
## 1097        Yjhnihae
## 1098    SeleniumXVII
## 1099        _gdncs13
## 1100        dda_dduu
## 1101      anyonedrei
## 1102       cloisepam
## 1103          cse843
## 1104       nebulagyu
## 1105  onlythemolerry
## 1106       shhuuwwaa
## 1107       ariezdale
## 1108   itsmewannable
## 1109     faholoworks
## 1110     faholoworks
## 1111         intaksz
## 1112      toywatch81
## 1113         sjmtrkw
## 1114  suju22teuksung
## 1115         hwakttn
## 1116       oheungsvt
## 1117 PriyankaTalgao3
## 1118   miss_svtmafia
## 1119 MeganJa33528118
## 1120        accusary
## 1121       SeeUsIdle
## 1122      mochipyoji
## 1123       jishoocho
## 1124        Lattchwe
## 1125    kbgchartdata
## 1126        dda_dduu
## 1127    fbgiaodesign
## 1128     into_SooHui
## 1129      marii_nhel
## 1130   enhypenjaysgf
## 1131  RobertEBarnes1
## 1132         nhixxie
## 1133       4sahissi_
## 1134    vminkook_vmk
## 1135        svthugsl
## 1136         intaksz
## 1137      watakeibot
## 1138          Zarj34
## 1139      dizzyIover
## 1140       ezcart666
## 1141      anyonedrei
## 1142  everythingshua
## 1143   inn_creatives
## 1144    Boss50197733
## 1145       nootokkii
## 1146    vminkook_vmk
## 1147     777DKWonwoo
## 1148    jaden_lyrics
## 1149        dda_dduu
## 1150       IndieBook
## 1151       luvmingoo
## 1152     jklmbigwins
## 1153       boothinkz
## 1154       Heavy_Dew
## 1155  jeonghaanniiee
## 1156        _wooluvr
## 1157 13CaratDiamond_
## 1158       Brenoteen
## 1159       Brenoteen
## 1160       Brenoteen
## 1161       Brenoteen
## 1162       Brenoteen
## 1163       Brenoteen
## 1164       soobifilm
## 1165      0096karteu
## 1166       Brenoteen
## 1167       Brenoteen
## 1168     jaysaysnope
## 1169      chomamamas
## 1170         Phusaza
## 1171         intaksz
## 1172    jeongcheols_
## 1173  serenilyshopph
## 1174 13CaratDiamond_
## 1175          lhbryl
## 1176       seventeen
## 1177   sebong_hana17
## 1178           wzmg_
## 1179     mscuttlebot
## 1180   mushroom_teen
## 1181        CaryennG
## 1182        Lattchwe
## 1183 coveredinbees42
## 1184 westcoastsexgod
## 1185      mentosguac
## 1186         jiuneok
## 1187       chagiyoon
## 1188       seventeen
## 1189      samviixxii
## 1190   mushroom_teen
## 1191       kpoplikez
## 1192      jhluversvt
## 1193 coupshan_sebong
## 1194     Oniwanbashu
## 1195   SparklingMiii
## 1196    sunflwrchers
## 1197        Danvas14
## 1198       boothinkz
## 1199      svtgalaxy_
## 1200        Lady0ice
## 1201        minwonqt
## 1202      svtgalaxy_
## 1203      svtgalaxy_
## 1204   pichulinology
## 1205      Yang_Broke
## 1206      svtgalaxy_
## 1207  VollzeitFranzi
## 1208     tinydorijam
## 1209  minimonistudio
## 1210       syheong20
## 1211     aerishanhan
## 1212     DeepripTide
## 1213 UribooSeventeen
## 1214           66eph
## 1215      svtgalaxy_
## 1216       nnswift13
## 1217      mariam49is
## 1218        Lady0ice
## 1219 macejkovic60dch
## 1220       LuPartTwo
## 1221          cse843
## 1222       air_kyeom
## 1223    SeleniumXVII
## 1224   dre_seventeen
## 1225        Floofvee
## 1226      Yang_Broke
## 1227      svtgalaxy_
## 1228   winter_sunnie
## 1229 TheCuConnection
## 1230   dre_seventeen
## 1231        ILLsCart
## 1232   moonchild875_
## 1233       soobifilm
## 1234     wineparty17
## 1235      svtgalaxy_
## 1236        BintyAsa
## 1237         Dk_0428
## 1238      Jkorsling1
## 1239      svtgalaxy_
## 1240       shualvr_r
## 1241  spideykookstay
## 1242          intbun
## 1243      svtgalaxy_
## 1244        1041zion
## 1245      svtgalaxy_
## 1246       eyahann13
## 1247     Solely_Ming
## 1248 CharmSupportLab
## 1249      angelisuhs
## 1250     bluemincart
## 1251       daisy_bey
## 1252      svtgalaxy_
## 1253        d_dskr_r
## 1254        indainya
## 1255 yoonjeonghannny
## 1256   hwnghyunjeanz
## 1257      svtgalaxy_
## 1258    UKChartStats
## 1259   bebeamoraaa14
## 1260     jedisoonwoo
## 1261  haruharuminwon
## 1262     maxx_is_mad
## 1263        treteen_
## 1264       ririesse_
## 1265           _cmrj
## 1266     GirlWitHour
## 1267      svtgalaxy_
## 1268        iluuvwon
## 1269 ceruleanhorrors
## 1270      chweolpapi
## 1271      hanniezel_
## 1272      svtgalaxy_
## 1273  rodriguez_anci
## 1274         newskzi
## 1275        lotherye
## 1276  cigsaftercheol
## 1277         KL10218
## 1278      aesirwords
## 1279         YJ__MOA
## 1280       jseunie07
## 1281    reallifegojo
## 1282     scjnjh_9405
## 1283    GeneNiMingyu
## 1284      choisuchie
## 1285 octobereveryday
## 1286      ch3rrytrbl
## 1287   hourlyancient
## 1288     TheAthletic
## 1289       seventeen
## 1290    Joana_______
## 1291    hyejubaitola
## 1292       Brando_WX
## 1293         newskzi
## 1294   lemonopossum_
## 1295      svtgalaxy_
## 1296       shhuuwwaa
## 1297        itzaimae
## 1298     evrbdyhngsm
## 1299      svtgalaxy_
## 1300   joshushushuwu
## 1301       atpstumii
## 1302        Yjhnihae
## 1303      svtgalaxy_
## 1304    coupranghaae
## 1305  _1350_woofwoof
## 1306          sksuxs
## 1307        gelcakyy
## 1308 coupshan_sebong
## 1309     _chanslatte
## 1310        vjkscart
## 1311        _gdncs13
## 1312   pichulinology
## 1313     drunkkiest7
## 1314   yupsheskitten
## 1315    minhuiyeolie
## 1316    miroticjimin
## 1317      svtgalaxy_
## 1318        cseadara
## 1319      NEVERVMlND
## 1320 fearlesslyPearl
## 1321     scjnjh_9405
## 1322      diseasethv
## 1323       shewalnur
## 1324         mwbcart
## 1325  ParlourDigital
## 1326      TbeomxjunT
## 1327          vuum00
## 1328     cindynamint
## 1329     SayWahuWahu
## 1330      BLAZEAYEEN
## 1331      jowanithe8
## 1332 coupshan_sebong
## 1333    cappuccinoz_
## 1334          gyuext
## 1335         PJHC4RT
## 1336          gyuext
## 1337      hanniezel_
## 1338          gyuext
## 1339     Mochii_1095
## 1340      heesoomios
## 1341          gyuext
## 1342      eysvtcarat
## 1343     yoonshrim_p
## 1344   Arasu74416072
## 1345  DecorativeCoUK
## 1346          hngxji
## 1347          gyuext
## 1348          gyuext
## 1349     jkpjtrade13
## 1350          gyuext
## 1351     crazypersun
## 1352        zhrjun23
## 1353          gyuext
## 1354     Aeryn_Rudel
## 1355       shhuuwwaa
## 1356          gyuext
## 1357 haosebythe8cean
## 1358         asha272
## 1359  BeySVTColombia
## 1360   kpopretweet05
## 1361        dda_dduu
## 1362          gyuext
## 1363        CaryennG
## 1364          gyuext
## 1365    GeneNiMingyu
## 1366  rodriguez_anci
## 1367     SVT_Fatisha
## 1368    junhui_noona
## 1369          gyuext
## 1370      minygiiii_
## 1371      malkinmoth
## 1372        minwonqt
## 1373       EVRY1WOO_
## 1374      itsdindin_
##                                                                                                                                                                            text
## 1                                                                                          @tanyakanrl happy sweet seventeen sender-nim !! ❤️‍🔥❤️❤️‍🔥❤️❤️‍🔥❤️❤️‍🔥❤️ https://t.co/kuSCqMHumw
## 2                                                                                                                                   @elelduarvk happy sweet seventeen el!! 💗💗💗💗
## 3                              wts lfb svt seventeen ph be the sun bulacan\n\n2 LBB PREMIUM TICKETS BETS BULACAN\n\nPrice: 10000 ea (19k if claiming b… https://t.co/pbylfhs13i
## 4                                                                                                                                                  D-day!!!! See u seventeen!!!
## 5                                                                                             🫶🏻the cutest mirror selca\n#caratSelcaDay #csd #SEVENTEEN https://t.co/D6cmwnt12H
## 6                               number seventeen.\nvalkyria chronicles\n\n9/10. this game had such a beautiful story, about the struggles of war and h… https://t.co/yWuX7hdmiD
## 7                                                                                                     Good luck sa mga aattend ng con! Give Seventeen their biggest PH crowd!!!
## 8                                                                                                                                          @ajooniceee SEVENTEEN WAAAAAAAAHHHHH
## 9                                                                                                                      Make this day a memorable day for us and for seventeen 🤍
## 10                         wts lfb ph\n\nseventeen osaka limited pcs + dream album set\n= ₱10k\n= secured na!\n= dop: Dec. 20\n= dm to mine\n\n🏷 svt b… https://t.co/fT1R4QSbGz
## 11                                                                                                                                                happy sweet seventeen for me🫶
## 12                                                                                                                   i want him so bad. #csd #seventeen https://t.co/Vq3liiDhsq
## 13                     - Desk calendar 2019 SEVENTEEN ❌\n•80k\n\n- Lipbalm + pc The Saem DK❌\n- PC lipbalm The saem The8✅\n\n- Postcard set ❌\n\n-… https://t.co/9B0rI5fp0U
## 14                                 @JAY4YOON @nwjnsbts Nope. There is one fandom that regularly hates on bts even before Hybe acquired their faves com… https://t.co/sqJKIfxpTd
## 15                                                                                             D-DAY! See u later @pledis_17 ✨\n\n#SEVENTEEN #BeTheSuninBULACAN #BeTSinBULACAN
## 16                                                                                                                  kiss!\n\n#JOSHUA #조슈아 #SEVENTEEN https://t.co/O6k23DqUQy
## 17                               Show business kept us all alive\nSince seventeen October 1945\nBut the star has gone, the glamour's worn thin\nThat's… https://t.co/AjhzI8Pxfd
## 18                                                                                                         four million five hundred sixty two thousand eight hundred seventeen
## 19                                                                                                    d-day ✨ i will meet seventeen today #BeTSBulacan https://t.co/UugUl68mgg
## 20                                                                                                         see you again in a few hours, seventeen !! 🤍 https://t.co/RlG4C1v6an
## 21                            #lovemochi_phgo | wts • lfb • ph\n\n🔥 LAST 1 STOCK 🔥\n\nSEVENTEEN 💎\nOfficial Lightstick Powerbank ver 2\n💯 Sealed - Php… https://t.co/bA7EQRaymY
## 22                                                                                                              seventeen bets in bulacan d-day !! Be safe everyone and enjoy~~
## 23                                 I Wonder what Songs seventeen will sing in Bulacan- ISTG if they get like the OG Ready to Love, Heaven’s Cloud, Che… https://t.co/MqFdcUWJrJ
## 24                                                                                                                 d-day 🥹 see you later carats and seventeen!!!!! @pledis_17 🤍
## 25                                                                  i can finally say that i am seeing seventeen tonight !!!! #BeTheSuninBULACAN\n\nps. hindi na to majjinx pls
## 26                                                                          i want to go to a seventeen concert so bad, why did i have to live in australia out of all places 😭
## 27                    seventeen dicon dfesta mini edition\n\nmember set (7 pcs) RM10\n✅SC\n✅T8\n✅SK\n✅DN\n\n• exc local postage only\n• no rush po… https://t.co/l9NNaB60it
## 28                                                                                                                                             @gincnatal the edge of seventeen
## 29                                                                                                                          “Extremely Underwhelming Seventeen-Million Dollars”
## 30                                                                                                                                             @gincnatal the edge of seventeen
## 31                                 “so between the sixth grade and now i’ve had to kill seventeen mice. that’s probably why i’m so emotionally stunted… https://t.co/THUBlVxRIK
## 32                                                                                                                                             @gincnatal The edge of seventeen
## 33                                                                                                                                             @gincnatal the edge of seventeen
## 34                                                                                                                                             @gincnatal the edge of seventeen
## 35                                                                                                 @neogotmybankx @pledis_17 done #SEVENTEEN @pledis_17 https://t.co/ltxwIaGTjN
## 36                           wts lfb ph\n\nseventeen tokyo dome pcs\n— available: jun the8 scoups jeonghan\n— dop: payo\n— 700 ea (2800 set)\n— prio s… https://t.co/1ZbQTuKjaN
## 37                                                                                       Happy CSD day, everyone 🥰\n#CaratSelcaDay #SEVENTEEN #JUN #CSD https://t.co/SiE4SjCLBK
## 38                                 i hope everyone attending betsbul today will have loads of fun! 🧡 it’s worth it, always worth it when you’re seeing… https://t.co/MVPUIndYSI
## 39                                                                                                                                See youuuu SEVENTEEN💛 https://t.co/Gq6gjoB89O
## 40                                                                                            Bulacan Freebies On The way 💙\n\n#BeTSBulacan\n#SEVENTEEN https://t.co/havVccc2Ar
## 41                                                                                        Text  📲   206-588-6453  Request 🎶 Stevie Nicks - Edge Of Seventeen  📤  With Others  ❤️
## 42                                                                                                                                          see you seventeen! #BeTheSunBulacan
## 43                                                                                                                                 It’s dday!! I’m finally seeing seventeen omg
## 44                                                                                                             people are seeing seventeen today and I… am seeing the dentist🫠🫠
## 45                                 @dudeparebrochwe and I met for the first time exactly two years ago. today, we will meet again to attend a seventee… https://t.co/vD45389xCS
## 46                                                                                            whenever carats and seventeen met, it rains talaga ano? 🥹 https://t.co/r6fkj4Gwo9
## 47                                           HAPPY BIRTHDAY SIR BABA HONORABLE❤️❤️❤️💯🥃🎂🎂🎂🎂🎂🍦🍦 #PriyAnkit #TheMaskedSinger #Kizilcikserbeti #الهلال_الباطن… https://t.co/rxL3txkUoE
## 48                                                                                                                                                   I’m not seventeen- anymore
## 49                                                                        @Spotify Seventeen BE THE SUN!!!!\n#SVT_WORLDTOUR_BETHESUN \n#BETSinBulacan \n#SEVENTEEN \n@pledis_17
## 50                                                                    I'm ready! Aju nice! 🔥🔥🔥\n#BETSinBulacan\n#BeTheSunBulacan\n#SEVENTEEN @pledis_17 https://t.co/FgdAJ5Akl7
## 51                                                         Seventeen BE THE SUN!!!!\n#SVT_WORLDTOUR_BETHESUN \n#BETSinBulacan \n#SEVENTEEN \n@pledis_17 https://t.co/EEunFNcIAU
## 52                                    wts want to sell usa canada cn europe eu indo ina sg singapore thailand th china jp ph my malaysia\n\n#SEVENTEEN… https://t.co/W2z3S0cki9
## 53                                                                               ✨Mr and Mrs Kim ✨\n#CaratSelcaDay #CSD #SEVENTEEN #MINGYU @pledis_17 https://t.co/3C9sD63WU4
## 54                                                                                                        SEVENTEEN WORLD TOUR [BE THE SUN] - JAKARTA (Additional Show)\n\nD-11
## 55                              @NMOliverPoetry Well, as @official_jcc says, in his “first - and only - haiku”:\n\nTo convey one’s mood\nIn seventeen syllables\nIs very diffic
## 56                                                                                                                                             SEEING SEVENTEEN AGAIN TODAY 😭😭😭
## 57                            WTS/ LFB \nSEVENTEEN BeTS in BULACAN\n- UPPER BOX C REG 409\n- SAME PRICE1850\n\nRFs: di macontact yung bibili ilang ora… https://t.co/w0PmMB9uak
## 58                                                         after seventeen it’s more just music wise cuz even tho i don’t keep up with all of them, i keep with those even less
## 59                           if u see this, ur REQUIRED to list ur top 10 groups\n\n1. red velvet \n2. twice\n3. aespa\n4. blackpink\n5. stayc\n6. nct… https://t.co/WXstGo6kQN
## 60                                                                                                                           good morning 🥰 im going to see seventeen today! 💗💙
## 61                                                                                                         #openfollow for kpopers esp. seventeen biased , retweet terserah ಠ_ಠ
## 62                                                                             everyone have a wonderful time at bets !!!! a seventeen concert is an extraordinary experience 🧡
## 63                                                     it has been exactly two years since i became a carat and im going to celebrate it w seventeen 🥹🫶 https://t.co/stZmqE30nw
## 64                                                                                                                                              WAHHH IM SEEING SEVENTEEN TODAY
## 65                             WTS / LFB PH ONLY\n#iKONERIonhands\n\nALL ONHAND AND READY TO SHIP \nSTRICTLY SET ONLY OFFICIAL SEVENTEEN LIGHTSTICK AN… https://t.co/KpjATIzu8g
## 66                                                                                                                            @carseatheadrest william toledo number seventeen.
## 67                                                               Grabe 'yung unity ng carats to help other carats. 🥺 appreciate you guys so much. Proud sainyo ang Seventeen. 💙
## 68                                                                                          SEVENTEEN\n\nBias                              Bias wrecker https://t.co/UTk4sAj0RL
## 69                                                                                                Is anyone here going for TXT, Seventeen and Kep1er cafe event on 23 Dec (Fri)
## 70                                                                                            @billboard @pledis_17 @itstetrisbish Love it 🥰🥰\n\n@pledis_17  #SEVENTEEN #세븐틴
## 71                                 @miss_svtmafia @pledis_17 I deserve to see Seventeen po because I've been their fan since I was in Grade 8 and they… https://t.co/RH7QrfefBW
## 72                                            good pods gen 3✨️\n\nlink https://t.co/GQGH6NZETI\n\ntags: #LISA #ข่าวลือ #16December #SEVENTEEN #NCTDREAM… https://t.co/Op5AsLT52c
## 73                                              YOUTUBE: MoreFlock \nLINK IN BIO\n#ข่าวลือ #16December #PriyAnkit #TheMaskedSinger #BLACKPINK #SEVENTEEN… https://t.co/hrgNU3pc4I
## 74                                   iiyak ako mamaya for sure. december has been a tough month so far and finally, i'm seeing seventeen again for the third time this year! 🥺🤍
## 75                                  I just got result 'junhui' on quiz 'which seventeen member are you based on my perceptions of them'. What will you… https://t.co/YaTs55B3Wo
## 76                                              YOUTUBE: MoreFlock \nLINK IN BIO\n#ข่าวลือ #16December #PriyAnkit #TheMaskedSinger #BLACKPINK #SEVENTEEN… https://t.co/x5FyXvX7Jd
## 77                                                                                                                                      regresenme los Going seventeen xfavor 😭
## 78                                                                                                                         D-day 😭 Seventeen dis Dec. 17. Tamang iyak for today
## 79                                              YOUTUBE: MoreFlock \nLINK IN BIO\n#ข่าวลือ #16December #PriyAnkit #TheMaskedSinger #BLACKPINK #SEVENTEEN… https://t.co/ngSTazuOZM
## 80                                                                                  carat selca day ft my sick self !! #SEVENTEEN #CARAT #CaratSelcaDay https://t.co/UOXajOl68O
## 81                                                                                                                                 otw to phi-ar\n#BeTheSunBulacan \n#SEVENTEEN
## 82                                              YOUTUBE: MoreFlock \nLINK IN BIO\n#ข่าวลือ #16December #PriyAnkit #TheMaskedSinger #BLACKPINK #SEVENTEEN… https://t.co/tVfa4WRpQK
## 83                                                                                    #NowPlaying Letter Seventeen - Waiting at https://t.co/JNfC3Ouky0 https://t.co/dkeif6J31X
## 84                                                                                                                                          EXCITED NA KO GRABE SEE U SEVENTEEN
## 85                                                                                                                                 @kchartsmaster world_ by seventeen of course
## 86                                 iiyak ako mamaya for sure. december has been a tough month and finally, i'm seeing seventeen today for the third ti… https://t.co/Ho8leWMFzG
## 87                               CHOCOLATE COVERED ANYTHING DAY – BARBIE AND BARNEY BACKLASH DAY – UGLY CHRISTMAS SWEATER DAY\n\nIf you are a chocolat… https://t.co/VHy9xQv9kM
## 88                                                             huhu grabe coincidence 17 din ung extra seats sa bus namin then its dec 17 and we’re going to see SEVENTEEN!!!!!
## 89                                                                                                                 There is no way I found fts albums for like 18€ 😭 #seventeen
## 90                                                @halatagon i find this song so annoying 😭\nbut apparently everyone makes it way better than him, even that guy from seventeen
## 91                                                                                          wtb lfs ph shuttle vertis seventeen be the sun bets bulacan https://t.co/Bx0LkKaFaK
## 92                        ꒰ wts lfb ph ꒱\n\n✘ woozi vernon set\n\n  ⤷ ₱280 set\n  ⤷ onhand | x sensitive\n  ⤷ mod/p: gcash | ggx/flash\n  ⤷ loc: bul… https://t.co/bp32SlM4Jc
## 93                                                                                                                  otw na to ph arena!! so excited to finally meet seventeen!💗
## 94                                         LIVE NOW TUNE IN FOR ONE OF THE TOP 5% IN THE WORLD AT COD ! https://t.co/v5OJK3IoEu #16December #SEVENTEEN… https://t.co/4mRQdgUJpi
## 95                                                                               literally my whole tl is seeing seventeen today, when will that be me? https://t.co/S1uZYHgvpa
## 96                                                                                                                                                     SEE YOU, SEVENTEEN !!! 🥺
## 97                                                                                       Good morning!!! :) See you later seventeen ! \n\n#BeTheSunBulacan \n#BeTheSuninBULACAN
## 98                            wts lfb ph only // D-day✨\n\n•. Seventeen BeTS in Bulacan PH Arena .•\n\n- One (1) UBB REG TIX (rfs. got the desired se… https://t.co/ZtUg8BIJX6
## 99                             #Celebrating Ana Mercedes Hoyos #\n\nDate: December 17, 2022\n\nToday’s Doodle celebrates Ana Mercedes Hoyos, a disting… https://t.co/X8vhaqcbsB
## 100                                            Smiling Italian girls, and Spanish women.\nYou’re not serious, when you’re seventeen.\nA, black velvet jacket of brilliant flies
## 101                                 There's still time to experience the love of The Sound of Music this #holidayseason! Join us until Jan. 15 to feel… https://t.co/iuQYkuESRc
## 102                                                                                                 i can't believe i am seeing seventeen and i am actually crying here sa cr 😭
## 103                                      My newest anthology appearance! This was something I hand wrote when I was seventeen, and all this time later… https://t.co/Yp37gMMwfL
## 104                             LF carpool or bus shuttle for seventeen concert \nlooking po for 2 slots sana!!\n\npick up: sm north or anywhere in qc… https://t.co/URtuC3k5gx
## 105                           Update slot Sharing SG23 Seventeen\n\n📍SDA, Jatim\nDM for claim 🩷\n\nt. photobook heart message paper holder digicode ph… https://t.co/pY5NvcOT04
## 106                          Cwts aab photocard seventeen woozi, wonwoo and dino @sekairsm\n✅ include packing\n✅ Free ongkir via 🍏🍊\n✅ Good conditi… https://t.co/gnqyXikUrv
## 107                                                                                                      @scammerhannie yeah the other seventeen members are his fans after all
## 108                                                                                                                             i know i'm late pero WELCOME BACK SEVENTEEN 😭😭😭
## 109                                                                                                                                           Seventeen https://t.co/CzqO51l8is
## 110                                                                the king and queen of flavortown 😎 @pledis_17 #caratselcaday #csd #vernon #seventeen https://t.co/PJub6GxJdk
## 111                                       Don't leave me - BTS\nShadow - seventeen\nGotta go - chungha\nStay Tonight - chungha\nHellevator - Stray kids https://t.co/e5nitGohNT
## 112                                                                                                                  spending the 17th of december with seventeen and carats 🥹❤️
## 113                                Imagine you are having a really bad day/weeks or so and today pupunta ka  sa concert ng Seventeen ,our home our com… https://t.co/JAGBOJwJaD
## 114                          wts lfb ! pls help rt\n\n- 1 lbb reg 204 row 56\n- 5k (lowest price)\n- meetup sa venue\n\nsvt seventeen be the sun bulac… https://t.co/nK5SP97eIP
## 115                                                                                                                                                    Thanks - SEVENTEEN, 1:15
## 116                                As the sun seeped through the curtains of his room, the first thought Tommy had the morning he turned seventeen was… https://t.co/6xVNlcERB2
## 117                                                                                                            wave is awfully sexual for a reason you cannot fool me seventeen
## 118                                       march my beloved, it's FINALLY D-DAY!!!!! 🥺🥹🥹🥹🥹🥹🥹🥹🫶🫶🫶🫶🫶🫶🫶🫶🫶\n\n#BeTheSunBulacan #SEVENTEEN #세븐틴 @pledis_17 https://t.co/cr51rcFsFD
## 119                        wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. be… https://t.co/KmNseXrgV2
## 120                                                                                                                 BTS, bigbang, Stray kids, seventeen https://t.co/LqRlPzZKsl
## 121                                                                                           I hate this cold man, always need to pee seventeen times before i can go to sleep
## 122                                                                                                I wanna be the girl who hands out freebies soooo bad for next seventeen tour
## 123                                                                                                                            BTS y seventeen de calle https://t.co/AIJfnyPyy5
## 124                                              you ever think about how seventeen literally had a gose episode to training to push cars.. and then proceeded to push cars 😭😭😭
## 125                                                                               THIS WILL GET BIGGER IF YOU KNOW WHAT I MEAN, I'M SORRY IF YOU'RE LIVING AND YOU'RE SEVENTEEN
## 126                                        Any updates on traffic? Quezon city to Philippine Arena? #betsinbulacan #bethesunbulacan #bethesuninbulacan… https://t.co/vDMAQxXHxV
## 127                             first time joining carat selca day 💎 \n\n~ matching glasses with my boo 🍊🩷\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN https://t.co/RPPWvbDT0q
## 128                                                                                                                                           SEVENTEEN https://t.co/dezCV2Bw5L
## 129                                                                                                                                         D-Day!🔥 #SEVENTEEN #BeTheSunBulacan
## 130                                The 39 united state president Kla*tu+ke-r ChrisKo  Biden the seventeen any many mine more catch a tiger by it toe i… https://t.co/e0aVb1tmG4
## 131                                                                                              caught in a web of your memories like the way we would talk, we were seventeen
## 132                                                                                                @neogotmybankx @pledis_17 done #SEVENTEEN @pledis_17 https://t.co/DzXIXmsgmc
## 133                                                                                                                    See you later sebongsss!!!😭🤧💗\n\n#BeTSBulacan #SEVENTEEN
## 134                                                                                                                                                seeing seventeen today!!!!!!
## 135                                                                                                                  bets in Bulacan today!!! semangat seventeen &amp; carats ❤️
## 136                                                                                        niji en (including our dearest dj of course) and seventeen na lang ang mamahalin ko.
## 137                                                                                             D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17
## 138                                                                                                     D-DAY keep safe everyone!!!\n\n#BeTheSuninBULACAN #SEVENTEEN @pledis_17
## 139                                                                                  bus ride to bulacan!!! field trip feels 🤣🤣 #seventeen #BeTSBulacan https://t.co/iyOdz0SnC0
## 140                             💎 SEVENTEEN BE THE SUN IN BULACAN FREEBIES 💎\n\nTime &amp; Venue — TBA when I'm already at PH Arena \n\n#BeTSinBULACAN… https://t.co/v4ZCexFHDB
## 141                                                                I think it’s a crime we never got to see Seventeen play among us like it’s right up their mafia crazed alley
## 142                                @dearseokjinas @chanelwoozi for the reasons.. i am just like other carats who want to meet seventeen and attend the… https://t.co/CE7NSatr6I
## 143                           wtb lfs • ph only help lagi akong nauunahan\n\n— seventeen be the sun in bulacan\n— lbb reg prem or lba reg prem\n\nbudg… https://t.co/WQYuYP8Xsq
## 144                                                                                                                                                  I'll be seeing seventeen 🥹
## 145                                                                Took a board exam a week before a Seventeen concert.\n\nPassed it a day before another Seventeen concert. ✨
## 146                             @starfess BTS: yet to come, your eyes tell, heartbeat, whalien 52, spring day\nBLACKPINK: you never know\nTWICE:-\nNEW… https://t.co/IZtxxHpq8g
## 147                             Seventeen daily streams on Spotify | December 15 (12/15) | Thursday\n\n• Total streams ─ 2,912,580,936 (+3,675,781)\n•… https://t.co/N4iK5p9ed4
## 148                                                                                                                D-DAY\n#BeTheSunBulacan \n#SEVENTEEN https://t.co/V9JqY1Qtg0
## 149                                @elonmusk can you help small content creators? I get 500-2000 views on YT, insta and tiktok each organically but le… https://t.co/1Hkh38Vyhx
## 150                                                                        everytime seventeen is about to hold a con here in ph, laging may rainbow 🥺🤍 https://t.co/ls3tL3DX2i
## 151                                                                                                              @tanyakanrl happy sweet seventeen nder, wish u all the best 🫶🏻
## 152                                                                                                                                             I....I WANNA SEE SEVENTEEN. T^T
## 153                               @starfess ENHYPEN: shout out, fever, go big or go home\nSEVENTEEN: don't cry, rock with you\nSTRAYKIDS: miroh, god's… https://t.co/HgtkPAsX4i
## 154                                                                                                                                       Only the dead stay seventeen forever.
## 155                                                                                                                                                  @ajooniceee SEVENTEEN!!!!!
## 156                                                                                                                                                  @ajooniceee SEVENTEEN!!!!!
## 157                                                                                                                            i will only wake up this early for seventeen 🫠🫠🫠
## 158                                                                   ✨Available Member\n\nwts season greeting sg seventeen svt 2023 dk woozi jun dino https://t.co/IP6dCiVkVS
## 159                              Seventeen Student-Athletes Set to Graduate This Weekend\n\nMUNCIE, Ind. - This Saturday in Worthen Arena, 17 student-… https://t.co/nBvSMHsrUE
## 160                                                                                                                   See you SEVENTEEN 😭🎉🎉\n@pledis_17 https://t.co/NdG1IDfrqL
## 161                                immensely enjoying returning to tumblr as now i get fox mulder from xfiles scoups from seventeen and brennan lee mu… https://t.co/kIUone021F
## 162                               Day seventeen!\nI am awake at 5am and haven't slept well in weeks! I made this while wishing I had something similar… https://t.co/64ZcgVLGaX
## 163                                                                                                                SEVENTEEN WAS THIS NECESSARY 😭😭😭😭\n\nhttps://t.co/2OTgLw6NbU
## 164                                                                                                            I think I was seventeen when it came out https://t.co/vYiyKYF19q
## 165                                Look it up,Biden in the four years after he was VP , Trumps in office made like seventeen million. The career in Go… https://t.co/V9jCKpyDLH
## 166                                                                SEVENTEEN Be The Sun Bulacan D-Day!! @pledis_17\n\n#BeTheSuninBULACAN #BETSinBulacan https://t.co/q6U8prdpJm
## 167                                also very funny to me that a friend of mine has 124 saved tiktok in total, meanwhile i have more than 124 saved tik… https://t.co/b3M4xYS1GD
## 168                                                                                                                               I just love seventeen https://t.co/MJ7Y2iUUu3
## 169                                        SEVENTEEN Rupley Risers this week. Absolutely incredible! I sure do love this school. Best place ever! 💙🙌💙🙌… https://t.co/3CLcqsARGt
## 170                                                                                                                               @elelduarvk YEYY HAPPY SWEET SEVENTEEN ELL!!!
## 171                                                                                                         I'm currently getting ready. So see you Seventeen it's D-Day Ahhhhh
## 172                                                                                                        #BeTSBulacan SEE YOU SOON SEVENTEEN!! @pledis_17 #SEVENTEENinBulacan
## 173                                                                                                                                     @Nannyyy721 BASKSU SEVENTEEN RIGHT HERE
## 174                                                                                                                    IM SEEING SEVENTEEN TODAY 😭😭😭😭😭😭😭😭😭 I FEEL LIKE DREAMING
## 175                                                                                                                                                     You were only seventeen
## 176                                                                                                                today is 17th of dec,and seventeen's #BeTSBulacan concert!!!
## 177                                                                                                kageyachi\ni’m only seventeen, i don’t know anything, but i know i miss you.
## 178                                                                                              see u seventeen!🥺\n\n#BeTheSuninBULACAN #BeTSinBULACAN https://t.co/bSVlGt7ARI
## 179                          see you laterr! dont hesistate to approach me🤗\n\n✨BE THE SUN BULACAN FREEBIES GIVEAWAY✨\n\n🍒 i'll be giving away svt g… https://t.co/wv7HPzxMBp
## 180                             You know it’s gonna be a good day. ✨\n\nGood Morning! It’s Dec. 17, Saturday.\nIn the Philippines, it’s Be The Sun in… https://t.co/Pe808M3FNw
## 181                               D-DAY🧧JEON WONWOO! BAG OF LUCK!\nhiii po! I made crocheted cat keychains tho superrr onti langg, paki-alagaan po ang… https://t.co/Flvrqq0yaD
## 182                                        @MySunSilHal One word frees us of all the weight and pain of life: that word is love  one hundred seventeen… https://t.co/XOR8O1FBaJ
## 183                          If you see this, you're required to list your top 10 groups:\n\n1. Seventeen\n2. NCT Dream\n3. Red Velvet\n4. ITZY\n5. Wa… https://t.co/YW7edsQXfb
## 184                                                                                                                                         SEE U SEVENTEEN SHUTA DEKDHQJXHS ZH
## 185                                                              @luvkim20 @kpophappenings_ We carats love to clown not only fellow carats but also other fandoms and seventeen
## 186                                        take care everyone and enjoy today!\ndon't forget to bring essentials and your tickets ❤\n\n#BeTheSuninBULACAN #SEVENTEEN @pledis_17
## 187                                                                                                                                                @cliffemalll O seventeen 🙏🙏🙏
## 188                                  @FoxNews OK I agree with this too, it should be a 51st state.  Get better flag designers.  Seventeen times three.… https://t.co/6cfwW14DlX
## 189                                                                                                        goood morning! its d-day 🥺 see you carats and seventeen @pledis_17 🧡
## 190                                                                                                                                       seventeen by heathers is SO C RAINDUO
## 191                                                                                                           Good morning to carats and seventeen only!!! Dday! Enjoy guys 💎🫶🏻
## 192                                                                                      i’m seeing seventeen today!! #BeTheSuninBULACAN #BeTSinBULACAN https://t.co/MMzy7KUdQF
## 193                              BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bi… https://t.co/xrPGpPY9t1
## 194                                                                                                                                               CAN'T WE BE SEVENTEEN???😭😭😭😭😭
## 195                                onhand caratbong v2, Used once po nung bets mnl, Still complete inclusion pero yung hoshi sticker po nakalagay na s… https://t.co/Aw2M7Ga3Bd
## 196                                                                                                Not mommy saying san ka na naman pupunta 😭 IM GOING TO WATCH SEVENTEEN MIEEE
## 197                                      @yjhanee_ I hope you're already asleep but listening to Wonwoo's Knees Cover 🤗\n\n@pledis_17 @pledis_17jp #SEVENTEEN #세븐틴 #セブチ 💎
## 198                                                                                                                                       SEVENTEEN 💎💎💎 https://t.co/Ycv88b0ULd
## 199                                                                                                           Seventeen-year-old boy view them\n؟?\nنمشے\n\n🔹W77🔹\n🔹W77🔹\n🔹W77🔹
## 200                       1. the boyz\n2. red velvet\n3. nct 127\n4. f(x)\n5. twice\n6. seventeen\n7. nct dream/u\n8. exo\n9. le sserafim\n10. newjeans https://t.co/hq1EQ1zz0A
## 201                     [PHGO] HallyuLuv 🇵🇭\n\n&lt;SEVENTEEN 2023 Season’s Greetings&gt;\n\nSG: ₱2,530 + LSF\nWall Calendar: ₱1,520 + LSF\nSET: ₱3,470… https://t.co/3zdNDcaOFB
## 202                                @angel_funsized If I will chose wants over needs I will say I want a caratbong, it is a lightstick of fans of Seven… https://t.co/jGEy0orMSo
## 203                                @Wumbojumble @burblebutt At 27. You can Definitely consider somebody you met at seventeen/eighteen a childhood frie… https://t.co/fDqkldMze0
## 204                                     DDAY! \n\nSee you later, #SEVENTEEN 💕\n\n@pledis_17 ! 😍🤍💎 @anaelizabethdg \n#BeTheSuninBULACAN #BeTheSunBulacan https://t.co/klfORearm6
## 205                           ❗️REPRICED❗️\n\nwts lfb #BeTheSuninBULACAN 1 lba regular ticket\n\n— section 104, row 33, seat 106\n— price: ₱10,000 (or… https://t.co/cG5VOD1CHd
## 206                                                                                                                  @k_sellingvote done for #SEVENTEEN https://t.co/zaWJKiiR3t
## 207                                                                                                                                                    I MISS SEVENTEEN SO MUCH
## 208                                              sometimes he lets me borrow his bag 🐸\n\n#CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/ZiihgdtaW9
## 209                                                                                                                            rainbow for seventeen 🌈🌳 https://t.co/caPobKOguy
## 210                                                                                                                  BEEN BROKE SO MANY TIMES BUT SEVENTEEN IS WORTH THE WAIT!!
## 211                                                                                                                                      @cho_tyongf Donnes tes pc seventeen la
## 212                                                                   every single kpop boy group falls into one of the three categories of trying to be exo, nct, or seventeen
## 213                                                                        a staff member from BTS, Seventeen or ATEEZ, i wanna be with the guys so bad https://t.co/xkUvaLOgzb
## 214                                                   Team bahay but im still very excited for today!!! Enjoy kayo mga team concert!! Give seventeen the best experience here!!
## 215                                                          copied from multiple oomfs but reply for a government assigned twice and seventeen bias 🫶‼️ https://t.co/mz9uppvhuS
## 216                                                                                                           AYOOOOOOO SEVENTEEN RIGHT HERE!!!!!!!! 🤙🤙 https://t.co/poEICi25hI
## 217                                goodmorning caratland....enjoy kayo today and keep safe. Sa mga first time makikita SVT ,I'm sure you will have the… https://t.co/gs2k0WLNjA
## 218                                                                                                                  today im seeing seventeen (2) ✨🫶🏻 https://t.co/AIlEPmhI2H
## 219                                                                                                                                          I'M SEEING SEVENTEEN TODAY OMG 😭😭😭
## 220                      1. bts\n2. seventeen\n3. p1harmony\n4. shinee\n5. nct127\n6. txt\n7. day6\n8. twice\n9. red velvet\n10. block b\n\nlesserafim… https://t.co/1Jo2QIdPt5
## 221                                                                                                                                       00:00 ateez &amp; seventeen, home 🏡❤️‍🩹
## 222                                                 really wish maka attend ako ng bets today &amp; see seventeen again, but ig i'll just work today.. next time nlng sebongs 😭
## 223                                                        i’m so ready, see you my love @pledis_17 💖 \n\n#BeTSinBULACAN #SEVENTEENinBulacan #Seventeen https://t.co/N1sme3CCag
## 224                                                                                                                                   SEE YOU SEVENTEEN! OMG WONWOO FINALLY! ♥️😭
## 225                                in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callb… https://t.co/VDJCfULYNR
## 226                                                                                                                                                   00:00 seventeen, the boyz
## 227                              [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us… https://t.co/32nC5a0NwT
## 228                                                                                                                                                       @ajooniceee SEVENTEEN
## 229                                                                                                                   @tanyakanrl happy sweet seventeen, wish u all the best 💓💓
## 230                                                                                                                   @kchartsmaster #HOT by #SEVENTEEN @pledis_17 of course 😵‍💫
## 231                             wts lfb ph \n\nbets in bul ubc prem ticket 417 row 121 \n- 2.7k meet up sa ph arena\n\nref extra ticket \ndm  or reply… https://t.co/h38rHDOemk
## 232                                                                                                                                                 @giulia canta seventeen 🥺🫶🏽
## 233                                 @av_toi @Thomson8 Good evening feller. Hope all's good. Seen today that we're in the sixth coldest December period… https://t.co/hM2WqQ65ZW
## 234                                gOODMORNING! 🥰 this is one of my best days. wag lang masira because im at the peak of my emotions. ang luha ko lang… https://t.co/HNdoFyo4cE
## 235                                                                                                                  D-day!!!!!! After 5 years, I’m finally seeing SEVENTEEN 😭❤️
## 236                                   Spirituality and loveThat lasts for a seventeen-year-old boy went girl touching me&amp;gt;omg&amp;gt;boner?\n؟?\nنمشے\n\n🔹H4🔹\n🔹H4🔹\n🔹H4🔹
## 237                                                                                                                 @Bardagulan17 will see SEVENTEEN today!!!! #BeTSinBULACAN 😭
## 238                                                                                                See you later @pledis_17 💗 #Seventeen #SEVENTEENinBulacan #BeTheSuninBULACAN
## 239                           wts lfb ph | #minunniesells \n\n👋seventeen dk seokmin your choice other side attacca op 2 \n\nSALE!\n\nPrice on pic + pf… https://t.co/OLzavqN5Ad
## 240                                                                                                                                                 im seeing seventeen today 🤧
## 241                                One of the things that I really admire about Cron is that there's no killer feature, there's no big mission to tran… https://t.co/ilcL8cqFHE
## 242                                                                                                                                               ITS THE DAY SEE YOU SEVENTEEN
## 243                            Oh, Christmas lights\nLight up the street\nLight up the fireworks in me\nMay all your troubles soon be gone\nThose Chri… https://t.co/59CMLqFGvA
## 244                                                                    idk how but suddenly my little brother knows all the old seventeen b-sides like he was singing omg today
## 245                                1. Highlight\n2. EXO \n3. B1A4 \n4. SF9 \n5. Nu'est \n6. Pentagon\n7. SHINee\n8. Twice \n9. The Rose\n10.  Seventeen https://t.co/pqiwSEP7nI
## 246                                                                                           Off to Bulacan PH Arena!!! See you soon SEVENTEEN 🤩\n#BeTSinBULACAN\n\n@pledis_17
## 247                                                                                    see you next concert, seventeen! i love you. have fun tonight 🥺🤎 https://t.co/iznUdUbjXU
## 248                                                                                                                                     D-day!!!! #BeTheSuninBULACAN #SEVENTEEN
## 249                                                                                                          @tanyakanrl happy sweet seventeen sender , wish u all the best 💗-!
## 250                                  1. skz\n2. bp\n3. everglow\n4. le sserafim\n5. seventeen \n6. bts\n7. iz*one\n8. oneus\n9. dreamcatcher\n10. twice https://t.co/z4CwG6zwt2
## 251                                                  SEVENTEEN Dances to 'Left and Right', Talks MAMA Awards &amp; Performing At ... https://t.co/cl8pVWuhwU @YouTubeより\n\n🐶💗
## 252                                      Longing, rusted, furnace, daybreak, seventeen, benign, nine, homecoming, one, freight car.\n\n#CaptainAmericaCivilWar \n#MarvelStudios
## 253                                                                                                                                           i’m seeing seventeen today !! 😭😭🤍
## 254                                                                                                                                           GOOD MORNING TO SEVENTEEN ONLY !!
## 255                                                                                                                  D FUCKIN' DAY!! SEE U, SEVENTEEN!!! 🫶🏽\n#BeTheSuninBULACAN
## 256                                                    It's the day, everyone. We're finally seeing Seventeen later 🥺 See you and have safe travels 🤍 #BeTSinBULACAN @pledis_17
## 257                                                    —two reasons of my happiness; u and sushi🍣🤍\n\n#CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 https://t.co/x9ptfqrM8X
## 258                                                      juicy juicy~  pookuh chi ke ah pookuh uh! SEEE YOU LATER, SEVENTEEN! 🔥🔥🔥\n\n#BeTheSuninBULACAN https://t.co/UeAX23Je0q
## 259                                                                                                                                          GOOD MORNING SEVENTEEN AAAHHHHHHHH
## 260                       me and kyeomie in busan :) first carat selca day! \n\n#CaratSelcaDay #CSD #dokyeom #seventeen #svt #carat #도겸 #캐럿 #세브틴 https://t.co/X1jNdaNAfI
## 261                          💛 our hearts, timeless\n      our love is timeless\n         we are timeless 💙\n\n[#SEVENTEEN #CaratSelcaDay #CSD #세븐틴… https://t.co/wOCXHUzCH1
## 262                                Now now, Hasumi Keito-kun is rather cold, is he not...☆ Fufufu. Hasumi Keito-kun, aren't you seventeen? It is as if… https://t.co/ExTjiDy5rq
## 263                            today's dday for bets again.. this time in bulacan, &amp; i just realized i havent shared any pic/vid i had when i went… https://t.co/YWS2MaBTXg
## 264                                                                                                                                           SEVENTEEN https://t.co/7oWUGDtBTQ
## 265                                                                                                                                   shut the fuck up. jeonghan from seventeen
## 266                                                                                                                                     @AvatarPod The Edge of Seventeen (2016)
## 267                                                                                                                           fathers we love seventeen https://t.co/jdyrkBer2M
## 268                                 From christmas party last night with alcohol drinks that ended 1am, dumiretso na tayo ngayon ng Bulacan 🥹🤣 See you… https://t.co/scLgXDxV3a
## 269                                                                                                A dual rainbow for Seventeen. \n\n#BeTheSunInBulacan https://t.co/GCXYDK9VMm
## 270                                                                                                                         it’s d-day !!! see u later seventeen and carats !!!
## 271                                                                                                                                                       @ajooniceee SEVENTEEN
## 272                         ✨ \n\nNflying / Knk 💕\nSeventeen \nMonsta X \nWEi \nFromis9 \nVicton / Pentagon \nAce \nDreamcatcher\nOneus \nTwice \n\n✨ https://t.co/Svg6rKHoAl
## 273                                                          📢KEEP STREAMING\n\n#DREAM #SVT_DREAM\n\n(https://t.co/xywW2tlFnC)\n\n#SEVENTEEN  #세븐틴 \n@pledis_17 @pledis_17jp
## 274                      📢KEEP STREAMING\n\n#SECTOR17\n#_WORLD #SVT_WORLD\n#세븐틴과_캐럿의_WORLD\n\n▶ https://t.co/4vOZb1v7Sj\n\n#SEVENTEEN  #세븐틴 \n@pledis_17 @pledis_17jp
## 275                                                   📢KEEP STREAMING\n\n▶️ https://t.co/Z7LGWtniQ1\n\n#SEVENTEEN #세븐틴\n#FacetheSun\n#HOT #SVT_HOT\n\n@pledis_17 @pledis_17jp
## 276                      📢KEEP STREAMING\n\n▶ https://t.co/iioKyTMFxM\n\n#SEVENTEEN #세븐틴\n#SVT_Darling\n#Darling #달링 #ep0\n#세븐틴_달링_오후1시\n\n@pledis_17 @pledis_17jp
## 277               DAILY📄 #CARAT \n\n✅STREAM &amp; BUY ALL #SEVENTEEN ALBUMS &amp; MVs\n✅VOTE &amp; COLLECT❤️🌟🎫  \n✅ALWAYS ↗️👍💬 RT #SEVENTEEN contents… https://t.co/5ckZy3GXfT
## 278                         1. Stray Kids\n2. Stray Kids\n3. Stray Kids\n4. Stray Kids\n5. Stray Kids\n6. Stray Kids\n7. Stray Kids\n8. Stray Kids\n9.… https://t.co/FIHGGoxm1p
## 279                                                                                                                         The way he's the most important member of seventeen
## 280                      WTS PHOTOCARD SEVENTEEN OFFICIAL YOU MAKE MY DAY\n\n✅ MINGYU\n✅ HOSHI\n✅ JEONGHAN\n\nPrice : Dm  / cek shopee\nWorldwide Y… https://t.co/mHGq4Xo8Zc
## 281                                I have mentioned that I'll be giving out the 3 photos that I really like in my photo album. (No frame, thought it m… https://t.co/mECVSkb8YZ
## 282                                 I just got result 'junhui' on quiz 'which seventeen member are you based on my perceptions of them'. What will you… https://t.co/CgfEqiV5n5
## 283                                                                                                                                                         SEE YOU SEVENTEEN 😭
## 284                              a rainbow formed around nlex on our way to PH Arena 🥺 even the sky is welcoming you, seventeen 🌈\n\n#BeTheSuninBULACAN https://t.co/FlyA6BX1nK
## 285                                                                                                                       nature really loves seventeen https://t.co/fBvvJIqtaq
## 286                                                                                     WE'RE HERE NAAAAAAA \n\n#BeTSinBULACAN \n#SEVENTEEN\n@pledis_17 https://t.co/juH9Vei79H
## 287                                                                                                                   OMGGGGGGGGG FINALLY! see you later SEVENTEEN and carats😭💓
## 288                                                                                                                          d-day!!! see u later, seventeen!\n\n#BeTSinBULACAN
## 289                                                                                                                                                       @ajooniceee SEVENTEEN
## 290                               GIVING ME LIFE AND IT'S EVERYTHING, THINKIN' BOUT WHEN WE WERE SEVENTEEN,\nFEELIN' MYSELF LIKE I'M NORMA JEANE, HERE… https://t.co/duy8qYTTNF
## 291                                Hi, any carat na team bahay for bets in bul na gusto ipalagay yung name or username just dm me or reply to this twe… https://t.co/JVdIi1VMw1
## 292                                                      Day Seventeen, \nI don't think this movie is as great as its reputation, but it's cute enough. https://t.co/0A87reyu04
## 293                                                                              @kchartsmaster Hot, March - seventeen \nDesigner - nct 127\nForever 1 - snsd\nAfter Like - ive
## 294                                @SilvioTattiscon Mines is seventeen and we're getting near that time  ,you love them so much, but the time comes wh… https://t.co/1Z0uknIMa1
## 295                         ✨@doieyongs' Mini Giveaway ✨\nSEVENTEEN BE THE SUN: in BULACAN \n\n✨Date: Dec 17, 2022\n✨Time: 10:00 AM - until stocks… https://t.co/XjUUxmvgpx
## 296                                                                                                                                                 see you later seventeen !!!
## 297                          repriced !\n\nwts lfb ph ; help rt\n\n˗ˏˋ svt be the sun: bulacan ˎˊ˗\n(1) lbb regular 216 (row 51)\n- last price is ₱7,5… https://t.co/BhDLv4YTU6
## 298                                                                            goodmorning🥹 souvenir ko na lang ito.. seeyouu next life seventeen😭😭😭😭😭😭 https://t.co/GYjdxpWASJ
## 299                                @blueming_13 Not a child. I’m 21. And your mad cause you know I’m right. And if you try to deny. Well once again li… https://t.co/qu0qTYt4i0
## 300                                                                                                 GRABE YON OH 😭😭😭 rainbow for seventeen and carats 🫶 https://t.co/Ujh6LzNQ3Q
## 301                                                                                          Rainbow 🌈🥺\n\n#BeTheSunInBulacan #BeTSInBulacan #Seventeen https://t.co/nqfchFU3eJ
## 302                                 I miss seeing them having fun like this. Istg the groups I stan aren’t normal. I mean, seventeen and got7? They’re… https://t.co/F1VZJjVXJL
## 303                                                                                                             @elelduarvk Happy sweet seventeen el wish you all the best!! 🥳🥳
## 304                                                                                                                                      Day seventeen. https://t.co/X2Fb2pUg2e
## 305                                                                                                                        I’ll probably just post randoms idk And Seventeen 🥰🥰
## 306                                          eto pala bagay na song pag nasa byahe hahahaha\n\nHere’s a playlist for you… This is SEVENTEEN by Spotify\nhttps://t.co/CLiQA7PPG1
## 307                          if you see this, you’re required to list your top 10 groups\n\n1. stray kids\n2. seventeen\n3. kingdom\n4. verivery\n5. c… https://t.co/161Mwi8bcH
## 308                           @caratsmarket wts want to sell photocard pc seventeen svt\n\n• mingyu henggarae set ver \n\ntake all 100k\nexc admin sho… https://t.co/wuFrajY21F
## 309                            2016: Drift Away - Seventeen\n2017: Baby Don't Like It - nct 127\n2018: Bar Code - Haon y Vinxen\n2019: Hero - Oneus\n2… https://t.co/XQnXewofhs
## 310                                                                                                                                                @kchartsmaster SEVENTEEN HOT
## 311                                                     Its crazy cause they’re still the same seventeen I know after all these years sorry I’m just really emotional right now
## 312                                                                                                                                         SEVENTEEN💙💖 https://t.co/yyNmSVHQgU
## 313                                                                                                                                                i’m seeing seventeen today !
## 314                                                                                                                                        @hanisector gummy bear seventeen :’)
## 315                                                                                                                                           @kchartsmaster SEVENTEEN - HOT 🔥🔥
## 316                                                                    Listening to old seventeen that I used to listen to on the bus every day to middle achool at 6am is just
## 317                                                                                                           I JUST WOKE UPPP I CANT BELIEVE IM SEEING SEVENTEEN AGAIN TODAYYY
## 318                              @caratsmarket wts want to sell photocard pc seventeen svt\n\n• mingyu henggarae set ver \n• dino yourchoice otherside… https://t.co/llGh6AaO9t
## 319                                                                                                                                                 dday! see you seventeen! 🫶🏻
## 320                         wts / lfb rush selling\nseventeen bulacan bets ticket\n\nLBB 219 / lowerbox \n\nselling for a price lower \n\n●7,000  seat… https://t.co/8hqsjxsMxA
## 321                                                                                                                                                          rain and seventeen
## 322                                                         [Knk&lt;3]\nSeventeen\nMonstax\nOneus\nFromis9\nNflying\nTwice\nPentagon\nVaV\nA.c.e\nStayC https://t.co/Zin9jT0blk
## 323                                @Afia_said_what ex: blackpink, twice, stray kids, txt, monsta x, seventeen, gidle, itzy, nct, aespa, le sserafim, i… https://t.co/M5miYsQJvU
## 324                                             See you later boys. @pledis_17 🤍🤍🤍\n\n#BeTSinBULACAN #SEVENTEENinBulacan #seventeen #BeTheSuninBULACAN… https://t.co/szPsZs53yl
## 325                                                                                                                                              will see seventeen again later
## 326                                                                                        @kchartsmaster Hot Hot Hot🔥\n\n@pledis_17 #SEVENTEEN #세븐틴 https://t.co/WDO8rBdvJX
## 327                                 since jeonghan is a good rapper and cheol is a good vocalist, we need an album where cheol is singing and jeonghan… https://t.co/SL5aE8hXRp
## 328                                                                                                                                                          seventeen on 17 🥺🧡
## 329                            @caratsmarket wts want to sell photocard pc seventeen svt\n\n• mingyu henggarae set ver \n\nexc admin shopee 1.8% \ndom… https://t.co/2VTWP3EKQ9
## 330                                    he got that boyish look that i like in a man, i am an architect, i'm drawing up the plans, it's like i'm seventeen, nobody understands 🥴
## 331                                                                            golden hour *☼⭒\n\n#CARAT #CaratSelcaDay #CSD #SEVENTEEN #SVT @pledis_17 https://t.co/QOheU4iiA8
## 332                                              Seventeen: College Goals: An Insider's Guide to Finding and Getting Into A School You'll Love QJCMORY… https://t.co/tzUvLsdkYc
## 333                           If you see this, you're required to list your top 10 groups\n1. Enhypen\n2. TXT\n3. StrayKids\n4. Treasure\n5. Seventeen… https://t.co/Bdfpov4oFI
## 334                                                                                                                  RAINBOW FOR SEVENTEEN AND CARATS 🌈 https://t.co/nejcpZ6euE
## 335                               I wish for clear skies today but kelan ba hindi umulan or umambon pag may concert Seventeen?\nMy kcarat friend asked… https://t.co/PMMjSb8ILS
## 336                          1 ateez\n2 seventeen\n3 nct \n4 loona\n5 p1harmony\n6 lightsum\n7 onlyoneof\n8 shinee\n9 dreamcatcher\n10 red velvet/aespa https://t.co/SjEfHRw34j
## 337                                                                                      i love how every member of seventeen is a simp for to you \n\n https://t.co/ZVhrzOgBXs
## 338                                                                                            when matt healy said, “sorry if you’re living and you’re seventeen,” i felt that
## 339                                                                                                                                                    see u later seventeen 🙈🤭
## 340                                     Team SM FAIRVIEW (Maze and Lala) thank you for organizing our carpool! Ingat tayo mga carats~ \n#BeTSinBulacan… https://t.co/hHoz2xLOrj
## 341                              @caratsmarket wts want to sell photocard pc seventeen svt\n\n• mingyu henggarae set ver \n• dino yourchoice otherside… https://t.co/MJCZVaMUJJ
## 342                                                                                                                       IM FINALLY GOING TO SEE SEVENTEEN TODAY OMG IM CRYING
## 343                                 19 y.o #MohamadBroghani is still in solitary confinement and his precious life is in danger.\n#StopExecutionInIran… https://t.co/IvQ09bujlq
## 344                                                                                             CLEAR SKIES FOR TODAY'S #BeTSinBULACAN #BeTheSuninBULACAN 🙏 SEE YOU, SEVENTEEN!
## 345                                                                                                             I’m only seventeen, I don’t know anything but I know I miss you
## 346                         @kchartsmaster Hype boy\nWild flower\nSeventeen sector 17 album\nNew things \nLove dive\nGood boy gone bad\nLesserafim \nf… https://t.co/RnkkeBws1J
## 347                                                                                                                               TRADITIONAL SEVENTEEN https://t.co/ULNRCh7rBw
## 348                                                                        Seventeen literally tell us to just buy one and print the other pictures lol https://t.co/USyMeTPW3j
## 349                                                                     D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 350                                                                                                                      It's always raining when seventeen &amp; carats meet 🥹
## 351                                                                        mom + our ults hehe #CaratSelcaDay #SEVENTEEN #CSD #HOSHI #VERNON @pledis_17 https://t.co/oGybc3ROd1
## 352                                                                                                                                              day seventeen: misery business
## 353                                                                                                                                     good morning! seventeen concert again!!
## 354                             @starfess BLACKPINK: shut down\nTWICE: queen of hearts, cheer up, fancy, fanfare, icsm \nNEWJEANS: cookie\nLESSERAFIM:… https://t.co/MZbVkDLcXi
## 355                                                                                                       it's true that the sky is jealous everytime carats and seventeen meet
## 356                                                                                      @taejinkoobi if u need help with anything seventeen related feel free to talk to me 💗💗
## 357                                                                                                                   @kpopvotes_ga Done for #SEVENTEEN https://t.co/vNZQsmckfS
## 358                                                 you are my escape babe 🥀 \n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 @pledis_17 https://t.co/FRBGDF5MQd
## 359                          SEVENTEEN BE THE SUN BULACAN \n\nWTS LFB/ WTT\n\nHAVE: (2) UBA 313 TICKETS (ADJACENT SEATS)\n\nWANT: (1) LBA PREMIUM TICK… https://t.co/Ia5uHf6Hoi
## 360                                                                                                                                    @yaba_sugi SEVENTEEN?? she raised him fr
## 361                                                                                                                                                  WAAAAAA SEEE YOU SEVENTEEN
## 362                                                                                                                               @kchartsmaster Definitely HOT by SEVENTEEN 😚💙
## 363                         wtb want to buy\n\nscoups set seventeen season greeting 2023\n\n✅️ prefer ada GO\n\nDM please\n\nt. wtb want to buy scoups… https://t.co/gyGUdm6NaJ
## 364                             Finally Finished! mystery envelopes can include (official pc,postcards,crochet,etc.)\n\n~ 1:1 only\n~ will post our lo… https://t.co/xsnQcdT462
## 365                                                                                                                                                               Seventeen:(((
## 366                                @yupsheskitten Every Carats deserved to meet Seventeen and I am One of those Carats who really dream and pray to me… https://t.co/H8wA1sqDNq
## 367                                                                                                EVERYBODY SHUT UP NEW SEVENTEEN CONTENT JUST DROPPED https://t.co/2sqBqooEhe
## 368                                                                                                                                              i will see seventeen today omg
## 369                                                                                                                           Well, she was just seventeen you know what I mean
## 370                                Carats!🐰❤️\n\nWe are looking for new members! Please consider joining us ❤️\nWe will be glad to have you as a part of… https://t.co/4EgzmzoXlZ
## 371                                                                                                                                    GOOD MORNING SEVENTEEN WILL SEE ME TODAY
## 372                         wts / lfb rush selling\nseventeen bulacan bets ticket\n\nLBB 216 / lowerbox \n\nog price 10, 700\n\nselling for a price lo… https://t.co/XErGVY2NcQ
## 373                                                                       WTB\nSharing or Pairing\nSeason Greeting Seventeen 2023\nMemberset Wonwoo 🥺🙏🏻 https://t.co/pkm7nr59E8
## 374                          If you see this, you're required to list your top 10 groups\n\n1. TXT\n2. LE SSERAFIM\n3. Xdinary Heroes\n4. SEVENTEEN\n5… https://t.co/qqAPpcyNqT
## 375                                   it’s not the way that i want to be seen, like i’m caught somewhere between my moral compass and your behaviour since the age of seventeen
## 376                                Now that I've calmed down!! After two months of participating in various giveaways, I was beginning to lose hope an… https://t.co/4OAMeK9nFN
## 377                                I just got result 'seungkwan' on quiz 'which seventeen member are you based on my perceptions of them'. What will y… https://t.co/YNwocDgOFt
## 378                                                 If you want to read more about SEVENTEEN’s high energy performance, check out the link below! 🔥🎵\n\nhttps://t.co/yQdGGh03Ip
## 379                                 Fans of SEVENTEEN sang along to their favorite songs like “Rock with you”, “Cheers”, and much more! We interviewed… https://t.co/YNqUcNgUan
## 380                                 thinking about how the most followers i've ever had was in 8th grade when i ran an instagram fanpage for dino from… https://t.co/4Ady1UOj2T
## 381                                                                                                                                                @kchartsmaster hot seventeen
## 382                             huling tawad daw pi\nwts lfb svt seventeen ph\n\n✴︎ (1) LBB Reg 217 BeTS tickets✴︎\n⤷ tickets are claimed already\n⤷ ₱8.… https://t.co/EohjB9skll
## 383                                                                                                           1:25 am here sa Kuwait but I'm still at work para sa Seventeen 🥲🧡
## 384                                                                                                           otw to ph arena. see you later 🥳😍 #SEVENTEEN  #SEVENTEENinBulacan
## 385                                I am so excited for my friends to see Seventeen later. Please don't forget your basic essentials like phone, water,… https://t.co/w7KCrbYgIG
## 386                                                                                                                                                 @bIurt99 YOU'RE SEVENTEEN??
## 387                                 I just got result 'wonwoo' on quiz 'which seventeen member are you based on my perceptions of them'. What will you… https://t.co/ffpkcKZdw0
## 388                                                          SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 389                                                                                                                           edge of seventeen HAHHSHS https://t.co/Zs7plnfPgw
## 390                                                                                                      seeing seventeen again in a few hrs YEESHAHSJX https://t.co/p7g3IBWtBt
## 391                                                                                 i’ll also like to add that to my knowledge fromis are the lesbian sisters of seventeen saur
## 392                                                                                                    TEAM BAHAY ULIT SA BE THE SUN CONCERT BECAUSE SEVENTEEN IS MY HOME &lt;8
## 393                                                                                                                                         IM SEEING SEVENTEEN TODAY HOLY SHIT
## 394                                                                                                                                        I miss Seventeen with all my heart 😓
## 395                                                                                                @kchartsmaster Hot by seventeen was fire but didn't get no award or anything
## 396                                                                                                                                    @tanyakanrl Happy sweet seventeen sender
## 397                                                                       it looks like the rain's not gonna stop anytime soon 🥲🥲🥲 seventeen and carats are meeting after all 🥹
## 398                            Matching Hollister fits with the MFIng boyfie #CARAT_SELCA_DAY #CSD \n#CaratSelcaDay #정한 #JEONGHAN #SEVENTEEN #세븐틴… https://t.co/YgffSQL0ir
## 399                                   D-DAY!!! SEE YOU, @pledis_17 and Carats 🥺\n\n#BeTSBulacan  #SEVENTEEN #세븐틴  @pledis_17 https://t.co/sWE7SsmOsx https://t.co/RaGKwf5eQY
## 400                          Anyone na hahabol until 11am 🥺\n\nWTS / LFB \n\nDK ALBUM PC \nHenggarae an ode attacca hana dul set  poet \nJeonghan hosh… https://t.co/YZEx5S36xA
## 401                                                                                                                     missing you by btob gives me major seventeen vibes hehe
## 402                            hello rush wts lfb help rt\n\nseventeen svt be the sun bulacan concert \n- UBC REG 433 Row 102 \n- ₱1,600 (orig ₱1,850)… https://t.co/W7PkOtaDHq
## 403                                                                                                my first seventeen album with some good pulls 👍 yass https://t.co/whH51LxJKX
## 404                                                                                       still can't believe seventeen is in the same place with me and breathing the same air
## 405                                       @queerbumbles SHE TEXTED ME AT LIKE 1PM MY TIME TODAY BUT YEAH NO ITS LIKE SHE TURNED SEVENTEEN AND SUDDENLY WE DONT MATTER 😒😒 /j, lh
## 406                                                                                                                                THIS IS IT SEE YOU LATER SEVENTEEN!!!!🫶🏻🫶🏻🫶🏻
## 407                                                                  wts lfb bets bulacan\n\nubc reg 426\n1,850 only!!\n\nmeet up sa ph arena\n\nwts lfb bets bulacan seventeen
## 408                                                                                           let me tell you NO ONE can beat seventeen in stage presence @pledis_17 #seventeen
## 409                                                        One, two, three   Click!📸\n\n#CSD #CaratSelcaDay #MINGYU #민규 #세븐틴 #SEVENTEEN @pledis_17 https://t.co/3arXsGoOUi
## 410                                                                                                                                                       @ajooniceee SEVENTEEN
## 411                                                                                                    seventeen and the weeknd https://t.co/1sBeTGzKz5 https://t.co/ux11qRYkep
## 412                                                                                                                                                         i miss seventeen :(
## 413                                                                                                    i hope seventeen enjoys my hometown!! i am with them in spirit iakjsbciw
## 414                                      It’s funny because we sometimes dress the same sets without knowing 🤣🤣🤣\n\n#CSD #CaratSelcaDay #HOSHI \n #SVT… https://t.co/STpiSSuYYu
## 415                                4. Ash by Seventeen. ASH ON ASH ON ASH ON ASH!!!!! But in all seriousness this is Vernon's best verse in a long fuc… https://t.co/ajowDhRlkr
## 416                             @kchartsmaster INVU - mother taeyeon\nBeatbox - nct dream\nForever 1 - girls generation \nGasoline - key\nRuby - woozi… https://t.co/wA3mNCdub8
## 417                                                                                                                                   GOOD FUCKING MORNING SEE YOU SEVENTEEN KO
## 418                                                                                                                                                                   Seventeen
## 419                                                                                               My friends are watching either Seventeen or Super Junior today. HAVE FUN ❤️❤️❤️❤️
## 420                                                                                                 i love the number seventeen, it goes well with my favorite thing: laptop...
## 421                                                               there was no karaoke and my friend whispered in my ear "let's go home and watch seventeen videos" i'm in love
## 422                                                                                                        four million five hundred sixty two thousand seven hundred seventeen
## 423                              @Ashley__Dalton @AndrewHWestern @LabourNorthWest 70% of a 25% turnout is not a mandate to be an MP.\n\nOnly seventeen… https://t.co/EAAzOYD5WX
## 424                                                                                                                                  good morning!!! SEE YOU LATER, SEVENTEEN!!
## 425                              helping a friend sell one ubb prem for a discounted price, inch check po hihi. can do meet up later at the arena\n\n🏷… https://t.co/08swymA6S5
## 426                                        Meghan Markle's Instructions for Her British 'Vogue' Cover Shoot Say a Lot About Her https://t.co/NKaqQvMKKI https://t.co/pNTYEOYWez
## 427                                                                                          @juicywoozi BTS\nSKZ\nTXT\nItzy\nAteez\nSeventeen \nEnhypen\nMCND\nTwice\nEverglow
## 428                                                              NSFW ACCOUNTS STOP FUCKING INTERACTING WITH ME IM SEVENTEEN. GET IT? 17. SEVENTEEN. ONE SEVEN. TEN PLUS SEVEN.
## 429                                                                                                         GOODMORNING!!! IT'S D-DAY! SEE YOU SEVENTEEN 😭♥️\n#BeTheSuninBULACAN
## 430                                @SubversionCroft Seventeen? That's being generous. *Q snorts, before he hums and presses a kiss to Seb's cheek.* Yo… https://t.co/kgKAIzVx4z
## 431                                                                                         Lana Condor Walked On The HEADS of Barbies?! | Then vs. Now https://t.co/f5xbDt0rFQ
## 432                                Super Seventeen concerts today 🥺 my first ever Kpop ult and current!! my heart is soo happy even though i wont be a… https://t.co/phugUxa9PX
## 433                                                                                                                                      Ingat kayo today Seventeen and Carats🤍
## 434                                 I just got result 'junhui' on quiz 'which seventeen member are you based on my perceptions of them'. What will you… https://t.co/RXIagk7oFK
## 435                          if you see this, you’re required to list your top 10 groups \n\n1. TXT\n2. Stray Kids\n4. Seventeen\n5. OnlyOneOf\n6. Xdi… https://t.co/4wJgSa2EV4
## 436                                                                                                      Keep safe and stay hydrated Carats! 🤗\n\n#BeTheSuninBULACAN #Seventeen
## 437                                 idk why anyone’s surprised, nct dream, 127 and seventeen always chart + candy is a remake of a well loved classic,… https://t.co/q2KilwcJFS
## 438                                                                                                                               @Spotify SEVENTEEN 😩💗 https://t.co/Qumdg59KrN
## 439                                                                          just trying something new 📸#CaratSelcaDay #CSD #SEVENTEEN #THE8 @pledis_17 https://t.co/ICxYsVIQqd
## 440                                BE THE SUN BULACAN FREEBIES from @SVTPHUnnie \n\nSEE YALL LATERS CARATDEULS 🫶💎\n\n#bethesunbulacan #BETHESUNwithSVT… https://t.co/2Cw6uS5KkW
## 441                              Cool, cool, cool, that won't make my anxious throughout the festivus season at all.\n\nWe live in a society, seventee… https://t.co/wZWKfGNfjP
## 442                                                                                                                   @kpopvotes_ga Done for #SEVENTEEN https://t.co/FEQ4TLqwsu
## 443                                d-day!!!! icb i’m about to witness a history made by seventeen as the first kpop group to hold a concert in the wor… https://t.co/PdxxZVT4IB
## 444                                                                       To the people that I'll be trading, hope you will like my freebies 🥹\n\n#BeTheSuninBULACAN #Seventeen
## 445                                                                                                          OAK IS NOW SEVENTEEN- HOLD UP JUDE IS 27???? they grow up so fast💔
## 446                                                                                                                                     @kchartsmaster Seventeen HOT @pledis_17
## 447                                                                        ☆ side by side ☆ #csd #CaratSelcaDay #seventeen #carat #THE8 #디에잇 #徐明浩 https://t.co/BHXBldDWlj
## 448                                May interested pa ba sa onhand caratbong v2? Used once po nung bets mnl, Still complete inclusion pero yung hoshi s… https://t.co/nhQB8kScwS
## 449                                                                                        csd but i wasn’t ready #csd #CARAT #CaratSelcaDay #SEVENTEEN https://t.co/4lDMkc8sML
## 450                                Hello, just want to say I'm sorry in advance if you will receive the freebies without sleeves. I tried buying anoth… https://t.co/GjMZOGe8Xp
## 451                            WTS / LFB PH ONLY\n#iKONERIonhands\n\nALL ONHAND AND READY TO SHIP \nSTRICTLY SET ONLY OFFICIAL SEVENTEEN LIGHTSTICK AN… https://t.co/JNsX6Qq8Mj
## 452                                               | Ateez ♡ | Stray Kids ♡ | Seventeen ♡ | NCT ♡| Enhypen ♡ | Txt ♡ | EXO ♡ | P1Harmony ♡ | Treasure ♡ | The Boyz ♡ | Oneus ♡ |
## 453                                                                                                                                      SEE YOU LATER, SEVENTEEN! @pledis_17 🤩
## 454                            wts lfb svt bets ph \nSeventeen Be the sun in Bulacan\n\n-UBC REG 432 ROW 98 SEAT 678\n-1,500php (discounted from 1,850… https://t.co/SLaXwCsye6
## 455                                                                                            @Darkest_Faith @EnglishPunkVamp Hey I’m seventeen eighteen soon I know my things
## 456                                                                                                                @touringdata Seventeen JAPan dates ? https://t.co/u21PC0Eb9Z
## 457                                                                                                                                 I GOT A BERET IN MY SEVENTEEN FORTUNE BOX 🤩
## 458                                   IT'S FINALLY D-DAY CARATS!!! 🔥🔥🔥\n\n#BeTSinBULACAN #SEVENTEENinBULACAN #SEVENTEEN_WORLDTOUR_BETHESUN  @pledis_17\nhttps://t.co/gkAJ62CRDf
## 459                                                                                                                                     SEVENTEEN BE THE SUN IN BULACAN D-DAY 💎
## 460                                                      SEVENTEEN Reveal New Year’s Resolutions, Promise ‘Fresh Music’ in 2023 https://t.co/qVqAOwLa8b https://t.co/9YDbgsRl59
## 461                         If you see this you're required to list your top 10 groups\n\n1. GOT7\n2. Seventeen\n3. BTS\n4. Twice\n5. Monsta X\n6. Red… https://t.co/bdbBAwVdEG
## 462                                                                                                        see you later seventeen! after almost two years aaaahhh \n@pledis_17
## 463                             wtb lfs bets svt seventeen bulacan\nhelping a friend\n\n-discounted/complimentary ticket (will get the lowest offer ma… https://t.co/Xt6rhqHWmt
## 464                                                   Survey Time! Which "Twilight" species do you think SVT members belong to? What secret "Spy x ...… https://t.co/QWxX1lPXW0
## 465                                                                                                Its the day we meet SEVENTEEN again 💕 Ingat CARATs! ✨\n\n#BeTheSuninBULACAN
## 466                                                                              SEVENTEEN Reveal New Year’s Resolutions, Promise ‘Fresh Music’ in 2023 https://t.co/UWRsMWNz5V
## 467                                 hi! we still have 1 slot for betsbul carpool! nagcancel yung 1st taker :( dm me for inquiries! ₱700 all in, bagong… https://t.co/slF2Js5Ymj
## 468                                                      @huntzworld 1. ATEEZ\n2. BTS\n3. KQ FellaZ\n4. Ikon\n5. Treasure\n6. NCT\n7. TXT\n8. Seventeen\n9. Stray Kidz\n10. KNK
## 469                                                                                     14) HOT by Seventeen \n\nhonestly a banger what else can I say. https://t.co/FDAuKHoNno
## 470                               Shadow by SVT 🫶🫶🫶\n\n(Good luck, stay safe and enjoy the show to those Carats who can hear this one live, along with… https://t.co/yfHSqyqGQe
## 471                                            He’s often thought about Ashley and what she did with her life after being rescued from the ʟᴏs ɪʟʟᴜᴍɪɴᴀᴅᴏs seventeen years ago…
## 472                                   Goodmorning everyone! (*in Mingyu's tone in the Inside seventeen behind Asia Manila tour) 🥰 It's D-day!! See you Seventeen and Carats! 💖💙
## 473                                                                                                                              i made everyone stan seventeen i’m just better
## 474                            @kchartsmaster WildFlower, Closer-RM\nHighFive -Dino of Svt\nTo my First -NCT Dream\nDon Quixote, Cheers- Seventeen \nO… https://t.co/phppW7Q6zj
## 475                                                     @pinkchimmm 1. GOT7\n2. BTS\n3. SKZ\n4. SF9\n5. SHINee\n6. NCT DREAM\n7. ENHYPEN\n8. TREASURE\n9. VICTON\n10. SEVENTEEN
## 476                                                      @fullsunCJ 1. GOT7\n2. BTS\n3. SKZ\n4. SF9\n5. SHINee\n6. NCT DREAM\n7. ENHYPEN\n8. TREASURE\n9. VICTON\n10. SEVENTEEN
## 477                                                                                                                                     @elelduarvk Happy sweet seventeen el 🥳🥳
## 478                                                                                                                                                      Good morning seventeen
## 479                                                                                                     See you, SVT!\n\n#세븐틴 #SEVENTEEN\n#SVT_WORLDTOUR_BETHESUN\n#BETHESUN
## 480                              suddenly, it’s a rainy day?! \n\nit’s really seventeen’s concert day 🫂 but ahhhh, hope it won’t rain too hard huhu st… https://t.co/70EOMMjidq
## 481                               Day seventeen of the #ALLAAdventFestiveCalendar\nHave you noticed all the hidden Christmas Tress in the Melbourne gr… https://t.co/QkucPMmv6S
## 482                                                                                                                                                      SEVENTEEN THIRTY EIGHT
## 483                                              We just passed by Philippine Arena 🥺 mamaya.. nasa loob na din kami with Seventeen and co-carats 😭🧡🩵🩷… https://t.co/7pn988I0tg
## 484                                                                        me and my husband 🐈‍⬛\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #VERNON https://t.co/giwPPCznws
## 485                                                      SEVENTEEN Reveal New Year’s Resolutions, Promise ‘Fresh Music’ in 2023 https://t.co/4UPE5p7GDb https://t.co/poeXSYhxjI
## 486                                           #Music #MusicNews #KPop #LA3C #Pop SEVENTEEN Reveal New Year’s Resolutions, Promise ‘Fresh Music’ in 2023 https://t.co/KJpxmAaizK
## 487                                                                                         tween seventeen and eighteen years of age. She was a r      https://t.co/dGi1W84rjt
## 488                                                                                                                                 seeing seventeen in a few hours yayayayayay
## 489                                                                                                           Now Seventeen Going Under - SAM FENDER on https://t.co/6eqJ3wikQr
## 490                                                                            9 and seventeen doubtful readings, with only that innat                  https://t.co/PPnHqCca41
## 491                                                                                        @just_pingu5 I CAN'T SLEEP BESTIE😭😭CAUSE I'LL BE SEEING UR ULT GROUP SEVENTEEN LATER
## 492                                                                        me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 493                                                                                         tween seventeen and eighteen years of age. She was a r      https://t.co/t9stcWIc2q
## 494                                Caratdeuls who are attending Bets Bulacan concert today, ENJOY LOVES! Desurv na desurv nyo lahat eto! Dont forget t… https://t.co/3an9WkPUlg
## 495                                                                              SEVENTEEN Reveal New Year’s Resolutions, Promise ‘Fresh Music’ in 2023 https://t.co/4zh4aHvQ32
## 496                                                                                                                       its raining again.... in seventeen's concert day.....
## 497                                                                                                                                can't believe i'll be seeing seventeen today
## 498                                                                                                       Why is that every time Seventeen has a concert here it always rains 🤣
## 499                                                                                  @ararunamakie Done for #SEVENTEEN @pledis_17 #세븐틴 @pledis_17jp⠀ https://t.co/RGyCG0JNyD
## 500                                                                                                                                       Go slowly for the count of seventeen.
## 501                                                                                                                    d-day hahaswhjwda 😭 will finally see seventeen later ACK
## 502                                                                                        i got a crush on you 🫶🏻\n\n#caratselcaday #mingyu #seventeen https://t.co/0ZB4qvJKX3
## 503                                                                                                          enjoy later, seventeen and filo carats!! stay safe and take care!🌷
## 504                                                                                     ganda ng shuffle ng seventeen playlist ko ahhh good morning, hoping for clear skies 🤞🤞🤞
## 505                                started a new book, read 10 pages, put it down, never picking it up again. never read a book that felt so distinctl… https://t.co/viI9mQ8L7U
## 506                                                                           SHOULD I RISK AND WATCH SEVENTEEN OR STAY NA LANG SA DORM IN CASE TULOY ASSESSMENT HNGSJDGHELP 😭😭
## 507                           @kchartsmaster wild flower by rm\nthe astronaut by jin\nqueen of hearts by twice\nafter like by ive\no.o by nmixx\nantif… https://t.co/7oYphkD8RP
## 508                                                                                                                                       I'm finally seeing seventeen later 😳💗
## 509                                                                          https://t.co/ZGoFWJFDar J. Garcia Men Dress #silk #tie 4" Wide 59" Long SH https://t.co/WCLddfqcki
## 510                                 carat selca day!! \n#SEVENTEEN #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN_AT_LA3C #16December #dk #DOKYEOM #SEOKMIN https://t.co/xjCU2stIgB
## 511                                Seventeen 2019-2020 World Tour [Ode to You, Off The Record] Official Photobook (+IDOLPARK Special SVT Photocards Se… https://t.co/Bv5ueRsa8c
## 512                                                                                                        I had 3 opportunities to see Seventeen but the stars never aligned 🙁
## 513                                                                                                                                 @kchartsmaster Hot by #SEVENTEEN @pledis_17
## 514                                                                                                                                  shane-ta is on her way to see seventeen 🤶🏻
## 515                                                               @r4in3_twt pasali ateee hahaha thank you for this GA 💜💙 #BeTheSuninBULACAN #SEVENTEEN https://t.co/IPRIrVRztn
## 516                                                                                                 im gona sound so delusional.   but what if seventeen performed to you later
## 517                                                           Jun's SVT 2023 Season's Greetings photoshoot behind film\n\n#JUN #준 #SEVENTEEN #세븐틴 \nhttps://t.co/jCBsp8hzPG
## 518                                                                                                                See you later seventeen @pledis_17 🤍 https://t.co/OBc4rU0iIt
## 519                                      Namamasko po!! pang UBC Reg. 😭😭\n\n09396333629 \nM*ica M. \n\nAny amount will do 😭🙏\n\nbets in bulacan be the sun seventeen sebong svt
## 520                                @MissNerdyCurvy One hour and seventeen minutes. I can appreciate where he's coming from, but his delivery has all k… https://t.co/HbTYJ721QI
## 521                                @skymyes His speeches of being unbelievable upon her eagerness came out naturally due to her age, didn't they? "...… https://t.co/pwcMc1eeLT
## 522                                                                                             @moonihuii seventeen, lesserafim and ateez are my ults but i stan a lot more ^^
## 523                                                                                      i love woozi and blue\n\n#CSD #CaratSelcaDay #SEVENTEEN #WOOZI https://t.co/vKUVHRpKHA
## 524                                              their username was hoshi and i was like this is either a weeb or a carat so i said hoshi like seventeen and now we are friends
## 525                                                                                                                     wtb season greeting sg23 seventeen wonwoo set juseyoooo
## 526                         if you see this, you're required to list your top 10 groups:\n\n1. skz\n2. twice\n3. day6 \n4. stayc\n5. lesserafim\n6. se… https://t.co/NJ5r3nkT7H
## 527                                                                                         tween seventeen and eighteen years of age. She was a r      https://t.co/S3qG692E8k
## 528                                          221217 Billboard: #SEVENTEEN Dances to 'Left and Right', Talks MAMA Awards &amp; Performing At LA3C | ...… https://t.co/kOoVl1x81l
## 529                                                                                                and i stole every single song that i wrote\nfrom my seventeen-year-old ghost
## 530                                                                                                                  in such a seventeen mood… YOU KNOW WITHOUT YA IM SO LONELY
## 531                                Goodmorning besties magkikita nanaman tayo😭😭😭 Lets make history today!\nFirst solo kpop group to hold concert on ph… https://t.co/blMr1BOIhT
## 532                               @RoseFocused @thenreport One thousand, six hundred and seventeen\n#NETIZENSREPORT #ROSÉ for Asian Celebrity of the Y… https://t.co/jBcAkTGYrx
## 533                                                                                                                                                  Aga nagising for seventeen
## 534                                                                                              It's raining. Everytime Seventeen and Carats will meet, it's always raining. 🥺
## 535                                                                                                                                                 see you later, seventeen! 🤍
## 536                                                                                                                  @kchartsmaster _World by Seventeen https://t.co/p2mhMDnz6k
## 537                                                                                                                  See you later, @pledis_17 ♡\n\n#BeTSinBULACAN \n#SEVENTEEN
## 538                                                                          Kpop has really been carrying my mental health at work today thank u seventeen, hyolyn, and miss a
## 539                                                                               GOOD MORNING 😭😭😭😭 cant believe im waking up this early but i guess anything for seventeen 😭😭😭
## 540                                                         Everything here is so inundated with history. Including himself. It’s a peculiar thing, to feel old at seventeen. 🌷
## 541                                                          « you are my crush i got a crush on you🤍 »\n\n#CaratSelcaDay #SEVENTEEN #SCOUPS @pledis_17 https://t.co/r0GyRmf4AT
## 542                                @kngychan When i was in 4th grade my classmate was an Aghase and talked about got7 so i learnee about them and real… https://t.co/8Y6O0VySQS
## 543                                 @yupsheskitten i think every carat needs to see seventeen and be part of the ocean but for me i should win because… https://t.co/np8L8DcHIJ
## 544                                @jannarden @annemurray1 You are. Your "At Seventeen" is used in my poetry class every year. Maybe these fools could… https://t.co/geJ0ramqdp
## 545                                                        9 and seventeen doubtful readings, with only that innat  ls #推特刷粉丝 #刷粉平台 #推特买粉  https://t.co/3gfnHsqGfe
## 546                             Seventeen Shadow Long Sleeves✨\n\nThe design is inspired by one of my favorite svt bside’s! the shapes on the left ar… https://t.co/xBQfGEwCgP
## 547                                                                                        just exploring art \n#csd #caratselcaday #MINGHAO #seventeen https://t.co/yeqaUf6GFN
## 548                                @Vintagesteve2 @DannySt44245634 @pmvc218 @LunaConejo87 Seventeen is below age of consent in NY.  He was 39?? That i… https://t.co/jZZGN1kGfU
## 549                                           I will make this a thread &amp; checklist to complete simbang gabi (as much as I can):\n#SimbangGabi2022… https://t.co/Wpc1HFad8Q
## 550                        wtb lfs ph\n\n2023 Seventeen Season's Greetings \n\n~ the8 memset\n\nlong dop sana\n\n🏷svt sg2023 scoups jeonghan joshua ju… https://t.co/Nqq13P3p4n
## 551                                                                                                                        it's dday, goodluck seventeen, see you sa susunod ha
## 552                            Produced their own songs &amp; choreographies, promoting their group on the street, seungkwan personally meeting PDs an… https://t.co/SPRX61UiNo
## 553                                                                                  @kpopvotes_ga Done for #SEVENTEEN @pledis_17 #세븐틴 @pledis_17jp⠀ https://t.co/iS4njp3SX1
## 554                             The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nT… https://t.co/DswRwoQTJE
## 555                                                                                             @r4in3_twt #BeTheSuninBULACAN #SEVENTEEN  thank you po! https://t.co/noJEst653E
## 556                              Check out the Rifts Core Mega Bundle at @BundleHolding \n\nRifts Ultimate Edition and Seventeen(!) major supplements!… https://t.co/Wfefbw7HzG
## 557                                                                                 @haelygiveaway Done for #SEVENTEEN @pledis_17 #세븐틴 @pledis_17jp⠀ https://t.co/1MZXjRzr2A
## 558                                                                            9 and seventeen doubtful readings, with only that innat                  https://t.co/66KWppH3mN
## 559                                                                                                                                           seventeen https://t.co/bm4JmuD1Dp
## 560                                                                                                             and i'm so sick of seventeen, where's my fucking teenage dream?
## 561                                                                                                     @bubble_ncteaa @ming1jn @luv__wonu @markierawrr @hwabeary SEVENTEEN-😭😭😭
## 562                            @Kpopfan96009017 - hoshi, beom, dabin\n- seventeen, txt, monsta \n- bts \n- hoshi \n- soobin, mingyu, booboo \n- y’en a… https://t.co/oxdMphrdGX
## 563                                                                                                                        @kchartsmaster HOT SEVENTEEN https://t.co/xYwKCfeiYg
## 564                                                                                                                                                                seventeen 🥺😬
## 565                                                                                                               Seventeen-year-old boy beliefs. It could take time to\ngoolak
## 566                            💙💗💙💗💙💗💙💗💙💗💙💗💙\n   D-DAY of Be The Sun in BULACAN \n                              ♡\n     see you again, SEVENTEEN !\n 💙… https://t.co/tfzAw83esZ
## 567                                                                                                                                    i miss seventeen https://t.co/gFwwS7LvLQ
## 568                                                                                                                                   D-Day naaaa! Ingat Seventeen and Carats!!
## 569                                                                good morning! I woke up telling to myself that I will see seventeen today. \n\n#BeTheSuninBULACAN @pledis_17
## 570                                                                                     The blueish hound, which grows more than seventeen legs, is now found in bleak jungles.
## 571                             If you see this you’re required to list your top 10 groups\n\n1. Seventeen \n2. Got7 \n3. Day6\n4. Tomorrow x Together… https://t.co/3PvaMQMCmd
## 572                                                          Will I always be the words I wrote when I was seventeen? \nWill the world still be around when I turn sixty-three?
## 573                       1. Stray kids \n2. Twice \n3. Seventeen \n4. G-idle \n5. Le sserafim \n6. Ive \n7. New Jeans \n8. Txt \n9. Enhypen\n10. Blac… https://t.co/kD92Ff2uSA
## 574                                                                                                                             seventeen rock with you https://t.co/3tR1N1N3cA
## 575                           GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must… https://t.co/VhXBcntpb3
## 576                                                                                            It’s d-day! #BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN https://t.co/njGEe9p20Z
## 577                                                         Carats explain to me WHY TF AM I GRYING WITH NO REASON LISTENING SHADOW??? SEVENTEEN YOU ALREADY HAVE ON YOUR HANDS
## 578                             crazy like you/love me out loud - chungha\ninvu/toddler/timeless - taeyeon\no.o/dice/cool - nmixx\nbetter and better -… https://t.co/eLeAdxs6dY
## 579                                                                                                                                 seventeen makes music for people with taste
## 580                                                                               is it crazy if i said i wanted to start collecting ot13 seventeen pcs https://t.co/6xMRIRydqT
## 581                                                                                                    seventeen has and will always have one of the best discography’s in kpop
## 582                          If you see this you're required to list your top 10 groups\n\n1. exo\n2. exo cbx\n3. exo sc\n4. seventeen\n5. clc\n6. ioi… https://t.co/iQ5CAagiiL
## 583                                                                    me and bae 🤝 mirror pics #CSD #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #SCOUPS https://t.co/J0dvaGERc8
## 584                                                                            9 and seventeen doubtful readings, with only that innat                  https://t.co/tQdY4NiaUf
## 585                                                                                                                               ~Concert thread~\n#BeTSinBULACAN \n#SEVENTEEN
## 586                                   Get ready for trauma, @WDTGTPodcast &amp; I are playing more #danganronpav3 tn @ 8:30pm est! #danganronpa #gamer… https://t.co/c5z8KniAFX
## 587                                                                                                                                                december 17 with SEVENTEEN 🥺
## 588                                                                                            d say when I tell him that? Biddy O'Hara seventeen! D    https://t.co/o7ACiaVul3
## 589                                                        wts lfb ph \n\nseventeen ot13 uchiwa\n- haru\n- ideal cut \n\nmeet up today bets in bulacan! https://t.co/IrgeXyBIzv
## 590                                @ame_todd @DisrespectedThe @JustinTrudeau I couldn't go to my 17 yr old grandsons funeral, after he had a heart att… https://t.co/M6ZzxNPJFD
## 591                                        me convincing people that seventeen, going seventeen by seventeen and going seventeen are 3 different things https://t.co/UK18zvmFde
## 592                                                                                              one of the best seventeen songs ever made !!!!!!!!!!!! https://t.co/5klmB7PKNw
## 593                                   Bro why is it that it’s always some random crazy shit &amp; then I read the comments and they’re saying seventeen https://t.co/jMJZ9ki6m0
## 594                        eventeen 2023 SEASON'S GREETINGS templates\n\ndrive: https://t.co/lnL8PyVrA5\n\n#seventeen #세븐틴 #seungkwan #승관 #vernon… https://t.co/MKNw4AcbTg
## 595                                @miss_svtmafia @pledis_17 Really really want to attend. Seventeen save me during my darkest day and inspire me a lo… https://t.co/3KA6ZCGGGL
## 596                                  i feel like a part of my brain is blocking the fact that I'll see seventeen in order to protect my sanity. 🥹 best believe i will cry later
## 597                                                                                                                                      SEVENTEEN !!!! https://t.co/1AMVMs9QrD
## 598                                                                                              @jon_draws 👀 Did someone say "Longing, rusted, seventeen, daybreak, furnace??"
## 599                                                                                                         I’m still hoping to see Seventeen tonight tho it’s v impossible.😭😭😭
## 600                                     @datguyfawwaz A tread #ai #Pakistan #16December #LISA #anipoke #BLACKPINK #UkraineRussiaWar #NCTDREAM #Pokemon… https://t.co/pyJxHzRP6J
## 601                                                                                                                                              GOOD MORNING SEE YOU SEVENTEEN
## 602                                                                                                                                            @amicaratimnida SEVENTEEN YUH! 💅
## 603                          still available !\n\nwts lfb ph ; help rt\n\n˗ˏˋ svt be the sun: bulacan ˎˊ˗\n(1) lbb regular 216 (row 51)\n- can do long… https://t.co/2HnHmpQw0y
## 604                                                                                                                                    @kchartsmaster _WORLD SEVENTEEN ATE DOWN
## 605                                                                                                    @kchartsmaster Darl+ing by #SEVENTEEN @pledis_17 https://t.co/rxYz0Xfkx8
## 606                                                                                        i think he should speak with a specific someone in seventeen https://t.co/3CVJWQCfEy
## 607                                           Me at the Seventeen show with Scoups but hes checking my ID to check if im atleast 3 years older than him https://t.co/1gbx8VzVgk
## 608                                                                                           @kchartsmaster Hot - Seventeen, Back Down - P1HARMONY, Under the skin - &amp;Team
## 609                                Has it sunk in that I saw @pledis_17 just a week ago at @la3cofficial? It was the day I saw the much anticipated "C… https://t.co/hlPobtq9UX
## 610                                                                                                                                Snap shoot seventeen https://t.co/gqZVo6A4D6
## 611                                                                                                                                snap shoot seventeen https://t.co/wohVOnuux9
## 612                                                                                           D-DAY!\n\n#BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN #SEVENTEENinBulacan #CARAT
## 613                                                                                                                           @mingyuswon hii herr po https://t.co/0ctwFhcN0e 🤍
## 614                                                                                                          「DARL+ING(HOLIDAY VER.)」 SEVENTEEN 06:21 https://t.co/jHBdHbeMC7
## 615                                saw a seventeen edit on my fyp and it's always a fun time to guess which member the edit is about before it starts,… https://t.co/Brxk9h0chp
## 616                                                                                                                @kchartsmaster Shadow #SEVENTEEN \n\nhttps://t.co/GOOQfZarSc
## 617                                                                     IM SO OUT OF THE SEVENTEEN LOOP I THOUGHT HE WAS HABING SURGERY WHEN I SAW THIS https://t.co/hCksettubu
## 618                                                                                                    im so sick of seventeen, where’s my fucking teenage dream !!!!!! reel ca
## 619                                                                                         @kchartsmaster Cheers by #SEVENTEEN leaders unit @pledis_17 https://t.co/rvP4npGQYT
## 620                                Please don't Fall sick in 🇳🇬 Nigeria o, all the good Doctors and Pharmacists are in the UK 🇬🇧...\n#16December Shola… https://t.co/RwQoRATYN6
## 621                       WTS ALBUM ONLY SEVENTEEN OFFICIAL \n\n✅ YOU MAKE MY DAY\n\n❌ NO Photocard\n❌ NO POSTER\n\nPrice :  cek shope\n\n#seventeen https://t.co/OzMZCUd8Z6
## 622                                                                        twinning with bae♥️ #CaratSelcaDay #csd #CARAT #SEVENTEEN #DOKYEOM @pledis_17 https://t.co/9oSnNa1SUp
## 623                                @yupsheskitten I think i deserve to see #SEVENTEEN in #BeTSinBULACAN kase poo they have been may comfort ever since… https://t.co/xmMAdC2V9T
## 624                                      The in-demand hitmaker shares the stories behind songs he crafted with #BTS' Jin, SEVENTEEN, NCT 127 and more\nhttps://t.co/1Kvy81B484
## 625                                                                                                                          @davidcoverdale Reb on the Winger album. Seventeen
## 626                                 Who said it? December 16!\n•\n•\n•\n•\n•\n#motivation #mindset #success #inspiration #transformation #workvelocity… https://t.co/OcTjaA4LP4
## 627                                Day Sixteen is a gingerbread #BlackPanther! Almost forgot that I get to do two today since it's Friday; Day Sevente… https://t.co/Wxyr31WSD0
## 628                                                                            I love that 17 Magazine rated xmas horror movies! It's not a bad list. \nhttps://t.co/eZf3M8RODB
## 629                                                                                                         @kchartsmaster Hot by #SEVENTEEN @pledis_17 https://t.co/zdJ72jaV5P
## 630                                                             #TGIFRISKY #nowplaying SEVENTEEN - 16 December 2022 - Christian Monique on @friskyradio https://t.co/w6ki1Sli5Z
## 631                                                                                [SEVENTEEN BE THE SUN FREEBIES]\n\nSee you later🤧😭\n\n#BeTSinBULACAN https://t.co/nN7W3Opx7q
## 632                                                                                                         D-DAY!!!!! See you, Seventeen!!!! 💙💙💙 @pledis_17 #BeTheSuninBULACAN
## 633                                                                     @4ever_with17 @kpophappenings_ @pledis_17 HELP I said "I feel like this is smn seventeen related" 💀 💀 💀
## 634                                         These are the celebrities we should support. People who treat others right and with respect. ✊ #Hollywood… https://t.co/NmUFHXrvm6
## 635                            If you see this you're required to list your top 10 groups\n1. Shinee e Twice\n\n(👇 não necessariamente nessa ordem\n3.… https://t.co/sLoiCEGHvQ
## 636                             year 2022 is not yet over, but I already saw my 19/38 fave kpop artist. \n\n- Cha Eun Woo (Aug 6)\n- Seventeen (Oct 8)… https://t.co/jf2ZjtXE1U
## 637                                                                                                     I ain’t even got room for twice, seventeen and stayc . 10 is not enough
## 638                                                                                       At my favourite location - #Mumbai \n\n#16December #SEVENTEEN https://t.co/QL9G1T7VHh
## 639                                                                                  @vampwon i don’t think they’re a part of seventeen but i’m not sure 🤔 i’ll let you know!!!
## 640                                                                                                                                                    SEE YOU LATER SEVENTEEN😭
## 641                                          She was a dancer in a Russian play\nThat I saw in the city today\nI went in for the matinee\nI won’t be leaving for seventeen days
## 642                  @ggukmms @dwersy Bts \nTwice\nSkZ\n(G)I-dle \nAteez \nThe boyz \nTxt\nNmixx\nRed velvet\nBp \nMamamoo \nIve \nNew jeans \nExo \nG… https://t.co/06TbUpdiuO
## 643                              #ANNYEONGMERCH_GO\n[wts lfb ph]\n\nSECURED SEVENTEEN 2023 SEASON’S GREETINGS SEALED / COMPLETE SET WITH WALL CALENDAR… https://t.co/0BHMiNZw7n
## 644                                                                                        @vernonchweonme i’ll help you out google “hoshi seventeen” and send me what you find
## 645                              if you see this, you're required to list your top 10 groups\n\n (these are in a random order cause I can't really ran… https://t.co/wLRlneKg9N
## 646                             seventeen 2023 SEASON'S GREETINGS templates\n\ndrive: https://t.co/lnL8PyVrA5\n\n#seventeen #세븐틴 #dk #dokyeom #도겸… https://t.co/fMPFTRftHw
## 647                         if u see this, ur required to list your top 10 groups \n1. ateez\n2. itzy\n3. lesserafim \n4. nct\n5. aespa \n6. bts\n7. t… https://t.co/3TVBDw0O8m
## 648                                Whether you want to ski, visit museums and art galleries, eat insanely delicious food, or escape the cold weather e… https://t.co/UGTDmmKxmH
## 649                                                                                                                                               good morning! see u seventeen
## 650                                                                            9 and seventeen doubtful readings, with only that innat                  https://t.co/9k7NfsmzCq
## 651                                                                                                               Dang y'all SEVENTEEN really ruined all other men for me. Rip.
## 652                                                        @ozymomdias Ever since I heard he had dated a seventeen year old as a grown man, and had spoken against me too… barf
## 653                                                                still hoping sana sold out last minute🥺 #BeTheSuninBULACAN #BeTSinBULACAN #SEVENTEEN https://t.co/ROg6Vc1mP9
## 654                     seventeen 2023 SEASON'S GREETINGS templates\n\ndrive: https://t.co/lnL8PyDQbv\n\n#seventeen #세븐틴 #hoshi #호시 #wonwoo #원우… https://t.co/M3g31B9GwV
## 655                                                 "Day seventeen of eatin' things that make me happy..."\n\nThere's a pause.\n\n"....uh...any ladies want somethin' special?"
## 656                                                                                                                                seventeen hands down https://t.co/BY8Rav3k25
## 657                              seventeen 2023 SEASON'S GREETINGS templates\n\ndrive: https://t.co/lnL8PyVrA5\n\n#seventeen #세븐틴 #scoups #에스쿱스… https://t.co/JswltZsnnV
## 658                                This time, SEVENTEEN year ago I was at the WTO Ministerials in Hong King doing research for my PhD. How was it that… https://t.co/qKm8Spsm9o
## 659                                                                                                                                                            @tanyarlfes Hard
## 660                                                                                                                                                                   seventeen
## 661                                       A little kiss, like a maddened spider,\n– You’re not serious, when you’re seventeen\nPricked by the ears of maize, trampling the dew:
## 662                                                                                                                                              oh, to see seventeen later 🥺✨
## 663                                                                                   I am hearing a voice in my head and it's wooyoung singing seventeen in that one ateez log
## 664                                               The errors of a wise man make your rule\nRather than the perfection of fool.\nWilliam blake\n#Pakistan #16December #SEVENTEEN
## 665                                                                             feel the rush of my blood, i’m seventeen again, i am not scared of death, i’ve got dreams again
## 666                             if you see this, you’re required to list your top 10 groups/artists. \n\n1. nct\n2. sf9 \n3. seventeen \n4. stray kids… https://t.co/T90BSQoBQU
## 667                                If you work at one of Elon’s companies try not to be around the offices during Christmas. Seeing his seventeen doze… https://t.co/ZrrTfrppeM
## 668                                 My first Seventeen album🤩  \ni pulled Dino, Hoshi and Scoups🥰 \nfirst time ordering from @iPurple_EU 😊\n@pledis_17… https://t.co/tzY2wtanRy
## 669                                In my funky robot opinion, Swan of Seventeen is these shapes because they are funny and creative. They are these co… https://t.co/33cit5qx55
## 670                                 @yupsheskitten I want to fulfill my promise last BetsMNL con na I'll see them next time, while they are performing… https://t.co/naXZHgZY5z
## 671                                                                                                                               Good morning 😭😭😭😭 seeing SEVENTEEN today 😭😭😭😭
## 672                           HELP RETWEET PLS 🙏\n\n(Foreign Used)Affordable 2012 Upgraded Lexus GX460\nPrice: 15Million Naira\n\nDM📩 for more info or… https://t.co/LLMNXoTDu0
## 673                                           WTT BETS BULACAN SEVENTEEN\n\nwho's up for trade mamaya sa bulacan? \n\nhave: ubb reg 407 \nwant: ubc prem \n\nrfs: i need budget
## 674                                                    [ WKDfm: DJ-DeepThought playing Winger - Seventeen \n https://t.co/nyfKmFiSXC \n Live, Legal and Loud - Internet Radio ]
## 675                                                                                                                                 @bluejayshop be the sun album by seventeen!
## 676                                                                                                                           😽 Seventeen would great for a homestuck animatic.
## 677                               @Jimmycrocket21 @KSPMcCormick @tidalsounds @piersmorgan excuse me?? 😭 \ni am seventeen, yes. im not autistic or on g… https://t.co/owsdtKnpJD
## 678                                 when i see mama and baba i believe in love in the most unique way, they’ve been through a lot together and they’ve… https://t.co/o5c9g3fm42
## 679                                                                                          Had I seen Hoshi during the tour, Jun wouldn’t have joined by Seventeen bias line.
## 680                                                                                   why is literally everyone except seventeen doing bright concepts😭 https://t.co/p2yPmqBkSh
## 681                                My sister so pissed because she keeps pointing at the ones she likes in seventeen and it’s always DK and Mingyu. On… https://t.co/L2HQ5zX61b
## 682                                Like humans, koalas 🐨 actually have unique individual fingerprints. If you place a koala and human finger print sid… https://t.co/CF4oLFIXsu
## 683                                                                       only seventeen can make me get out of bed at 4am on a saturday ~ it’s be the sun in bulacan d-day!! 🤍
## 684                                                                                                                           Go heavily towards the sun for seventeen minutes.
## 685                                Man, Squeenix has really been milking that Advent Children footage for SEVENTEEN YEARS now with no signs of stoppin… https://t.co/p9g2TcI2SK
## 686                                                                                           Going to Philippine arena 🥰 \n\n#BeTSinBULACAN #SEVENTEEN https://t.co/co1ut8z0H1
## 687                        Our granddaughters are 16, 17, 21, &amp; 26. I was the same age as our 2nd granddaughter when we got married &amp; about to… https://t.co/4TIsAVatld
## 688                                @SolaraSona Man, Squeenix has really been milking that Advent Children footage for SEVENTEEN YEARS now with no sign… https://t.co/zqt3vs2HjW
## 689                                SEVENTEEN's Vernon to release debut solo mixtape this month\n#Entertainment #Music\n#debut #mixtape #Month #release… https://t.co/7i5MqsdMDx
## 690                       1. dream catcher\n2. mamamoo\n3. loona\n4. twice\n5. red velvet\n6. purple kiss\n7. le sserafim\n8. itzy\n9. shinee\n10. eve… https://t.co/S2MoARsH5y
## 691                                                                                                                                       @vampwon YES! okay so he is seventeen
## 692                                                                                      rating seventeen's members instagram usernames\n\na thread 🧵\n! this is just for fun !
## 693                                                                                                             @AzelfDaBoi @EuphoriTori 4 seventeen sized large wads of cotton
## 694                           if you see this, ur required to list your top 10 groups\n1. bts\n2. ateez/seventeen\n3. the rose\n4. txt \n5. le sserafi… https://t.co/qI3sKTE43j
## 695                              artista: MARINA.\nálbum: the family jewels.\ngênero: indie pop/new wave/electropop/dance rock/art rock/chamber pop/sy… https://t.co/cFw2CQjd5v
## 696                                OMGGGG RIGHTTTT ITS CSD !!!! ang cute na nga nung mag-spend ng time with seventeen on the 17th of the month tapos a… https://t.co/Y9L9bpdPWO
## 697                                                                                                                                                       @ajooniceee seventeen
## 698                                  to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https://t.co/BAIDklCB7t
## 699                                                         WTB / LFS \n\nUBA ticket \nBudget - 6000 \nMeet up on d-day only. \n\n#BeTSinBULACAN #SEVENTEEN #SEVENTEENinBulacan
## 700                               @dwersy 27 grup saymaya cslism\nexo bp bts bigbang enhypen twice rv loona winner fromis_9 (dagildilar maalesef ama o… https://t.co/5FfXwjbmAV
## 701                                                                Jeonghan • Seventeen\n\nDirectors cut\n\n$12, stamped shipping included if in the US https://t.co/zfFgnQ4KeP
## 702                                                                                                                  seventeen and ateez are performers speak nicely about them
## 703                                                                   S.coups • Seventeen\n\nFace The Sun\n\n$6, stamped shipping included if in the US https://t.co/QARSfQodXc
## 704                                                                                                                                            SEE YOU CARATS SEE YOU SEVENTEEN
## 705                                        RETWEET PLEASE and Stream let's be Nice ..🙏🙏🙏 #16December #LISA #yonda #davido #SEVENTEEN #5city #idirepete… https://t.co/Rj1Xh4ZaCh
## 706                                   Janet Jackson for Seventeen Magazine (1987)\n\n“I wanted to do this on my own. I wanted to prove this to myself.” https://t.co/ZFYqrL4cpw
## 707                         @sadstrawberryy_ atm:\nnew jeans - attention\nle sserafim - sour grapes + anti fragile\ntwice - i can’t stop me &amp; when… https://t.co/NzOsJUa4IK
## 708                       [not in order] \n\n1. txt \n2. exo \n3. le sserafim \n4. stayc \n5. red velvet \n6. twice \n7. aespa \n8. nct \n9. seventeen… https://t.co/zcNSfZ9BjM
## 709                                   How dumb #pzgd #pzgdfam #dazedgaming #XboxSeriesX #PS4share #PS5 #gaming #streamer #win #SmallStreamersConnectRT… https://t.co/k9dzdWlcDQ
## 710                               1. snsd\n2. seventeen\n3. lesserafim\n4. shinee\n5. billlie\n6. nmixx\n7. stayc\n8. exo\n9. new jeans\n10. fromis (?) https://t.co/FWXHn5QJ4J
## 711                                                                                                                                          Seventeen deserves so much more...
## 712                                                                                                                                So I won’t be seeing you today #SEVENTEEN :(
## 713                                                                                                                                                     Seventeen - Sex Pistols
## 714                               LF FOR CARPOOL SM SAN LAZARO / SM GRAND CENTRAL / MONUMENTO PICK UP AND DROP OFF PO. DM ME PLS!! \n\n🏷 lf wts lfb be… https://t.co/bm0OH4Lpao
## 715                                                                                                  @vampwon look up “hoshi seventeen” and send me a pic and i’ll let you know
## 716                                                @eupfi 1. red velvet\n2. shinee\n3. twice\n4. le sserafim\n5. newjeans\n6. nct\n7. snsd\n8. aespa\n9. seventeen\n10. gfriend
## 717                                                                                                                                           @beomgyunizada wonwoo d seventeen
## 718                                     posting on here for now since tiktok is being stupid. don’t steal. (random tags)\n#16December #BLACKPINK #LISA… https://t.co/UQRFcLjU6l
## 719                                        WTS  SEVENTEEN OFFICIAL YOU MAKE MY DAY LENTICULAR \n\nPrice : Dm  / cek shopee\nWorldwide Yes\n\n#seventeen https://t.co/fgDsplNQbD
## 720                        up !\n\nwts lfb ph ; help rt\n\n˗ˏˋ svt be the sun: bulacan ˎˊ˗\n(1) lbb regular 216 (row 51)\n- can do long dop 😊\n\ntags.… https://t.co/uYK84vqZH6
## 721                   Twin brother to @DREAMSCAPESMSTR.\n\nAlias: \nAimant \n\nAge:\nSeventeen\n\nSex:\nMale\n\nPronouns:\nHe/they/we/it\n\nSexuality:… https://t.co/wu3QU09Ybe
## 722                               Slipknot - Nero Forte [OFFICIAL VIDEO] https://t.co/7PW941pa3Y via @YouTube @slipknot \n\n#FridayVibe #FridayFeeling… https://t.co/ewYtcPjaWU
## 723                                                     i remember being seventeen\ndrinking cheap wine\nsitting on suburban streets to the galaxy\nfeeling everything, we were
## 724                                I feel like the random aspect of weverse PCs are so un-random?? Like I've had two packs with the exact same members… https://t.co/OAYdUFPrJs
## 725                                                                       REALIZING THAT 2/3 OF MY SAVED TWITTER IMAGES ARE LITERALLY DK FROM SEVENTEEN https://t.co/COAVfLIobm
## 726                                              When I remember the breast 🤱 wey my eyes don see wey my hand no fit touch 💔💔💔.    \n @thatdammygirlie… https://t.co/8RZhxwMW4Z
## 727                                @RoseFocused @thenreport One thousand, five hundred and seventeen\n#NETIZENSREPORT #ROSÉ for Asian Celebrity of the… https://t.co/v5sIDxZXI6
## 728                                                                                    breaking my back just to know your name\nseventeen tracks and i've had it with this game
## 729                              Here is the official picture let’s celebrate!!!! #teacheroftheweek \n\n⬇️ your list\n📣 tell me what you’re happy about… https://t.co/aXTRYHUz9N
## 730                                                                                                                                       D-DAY!!!!! SEEYOU LATER #SEVENTEEN 🥹❤️
## 731                                                                                     THIS IS SOOOO REAALLLLL\n SEVENTEEN IS SEEING MEEEEEEE HAHAHAHAHAHA YEY\n#BeTSinBULACAN
## 732                                                                                                                                                 SEEING SEVENTEEN TODAY SLAY
## 733                                                                                                                                       Good morning carats and Seventeen!!!!
## 734                                   🥇 Bitcoin clear breakdown from trendline support 📉 #16December #BTC #anipoke #BLACKPINK #NCTDREAM #LISA #Pokemon… https://t.co/9yycsYX57e
## 735                                                                                                              SHINee, The Boyz, Seventeen, OnlyOneOf https://t.co/UWqmHfQEot
## 736                                                                                        heart boys❤️‍🔥\n\n#HANSE #한세 #HOSHI #호시 #VICTON #SEVENTEEN https://t.co/J7TZeuak7f
## 737                                It’s time you start making lots of profit from trades without loses. Learn how to trade Binance futures and get fre… https://t.co/lbHZwV2ABV
## 738                                  1. twice\n2. nct dream\n3. exo\n4. ive\n5. seventeen \n6. le sserafim \n7. new jeans\n8. shinee\n9. wjsn \n10. dia https://t.co/CQTY3FxLCr
## 739                                                                                                                                           Seventeen https://t.co/jbBDarp2wa
## 740                                                                                                                                           Seventeen https://t.co/uIRSZZB0RC
## 741                                                                  UConn's @paigebueckers1 Is Using Her Platform to Speak Out Against Discrimination\nhttps://t.co/YM72HlFFvn
## 742                                                     Missing Seventeen-Year-Old\n\nhttps://t.co/Z9mi8EAAjU\n\n#MCPD #MCPNews #Missing #MissingPerson https://t.co/jTd3yWM7i8
## 743                                                                                                                                           Seventeen https://t.co/9dIxCTUVUG
## 744                                                                                              #2137 [ 💌 ]\n\nseventeen, xdinary heroes, p1harmony, cravity, tnx, mirae, tfn♡
## 745                                   Ooh, I almost forgot! Mission Report, December 16, 1991.\n#longing #rusted #furnace #daybreak #seventeen #benign… https://t.co/OGs6fGTtft
## 746                                                                                                                                                i'll see seventeen tonight 🥹
## 747                          1 - twice \n2 - xdinary heroes \n3 - wayv\n4-txt\n5- ive \n6- nct (os outros)\n7- newjeans \n8- stray kids \n9- seventeen… https://t.co/poCdxlyKX3
## 748                                                                                                                     OMG D-DAY!!!!!! &lt;3 \n\n#SEVENTEEN #BeTheSuninBULACAN
## 749                                                                     d-day 🧡 i’m seeing seventeen omg hoping to meet my moots later!! #BeTSinBULACAN https://t.co/VfLJ9AIsf9
## 750                                                        @englishstrawbie Seventeen days inc weekends. I think that's the longest I have had off since I started 6 years ago!
## 751                                                       Be the love you always hoped for. \n\nRest In Peace RIP Legend Karen's Diner H.O.T #SEVENTEEN https://t.co/LvxwOoD48P
## 752                                                  S.coups &amp; Joshua • Seventeen\n\nGoing Seventeen\n\n$10, stamped shipping included if in the US https://t.co/xIlQV01ozg
## 753                                                                                   #NowPlaying Letter Seventeen - Tonight at https://t.co/JNfC3Ouky0 https://t.co/qfbQAB6dD4
## 754                                                                                                          four million five hundred sixty two thousand six hundred seventeen
## 755                         @starfess BTS: -\nBLACKPINK: Stay\nTWICE: -\nNEWJEANS: Hurt\nLESSERAFIM: Good Parts\nTXT: -\nTREASURE: Hello\nENHYPEN: Sho… https://t.co/WqvJqECSe8
## 756                                                     I don't wanna lose hope, but I already accept it. Seventeen, soon, the stars will align with us. I love you, boys. 🫶🏻🫶🏻
## 757                                                                                          ꔛ seventeen "be the sun" — bulacan 221217 moments 🎞️📸\n\n- a thread by @sugapremacy
## 758                               @Mickcliff "I learned the truth at Seventeen,\nthat love was meant for beauty queens and high school girls with clea… https://t.co/4wf5rnV9Es
## 759         『 ‘You’re drunk’ \n  ‘I’m not’\n  ‘You’re drunk’\n  ‘I’m not’\n  ‘You’re not’\n ‘I’m drunk- fuck u’  』\n   \n   ˚✧₊⁎⁺˳✧༚… https://t.co/4RMvbrPd8H
## 760                                      1. Stray kids \n2. Seventeen\n3. Bts\n4. P1harmony \n5. Shinee \n6. Txt\n7. Ateez\n8. Exo\n9. Got7\n10. Victon https://t.co/5iLPlgkG08
## 761                                                             GOOD MORNING! D-Day finally! omggggggghg. 🥰🥰🥰\n\n#BeTheSuninBULACAN #BeTSBulacan #SEVENTEEN #SEVENTEENinBulacan
## 762                                  mirror pics are the best, argue with the wall if you disagree\n\n#CaratSelcaDay #carat #SEUNGKWAN #SEVENTEEN #CSD… https://t.co/t6cMH11Wsc
## 763                                                           me and boyfie 💓💓💓\n\n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ #JOSHUA https://t.co/iIlmeKyFc3
## 764                                                                                                                           Crazy in love - Seventeen https://t.co/8O9S77yJoA
## 765                                Lovely 😍\n@laura_woodsy #ข่าวลือ\n#ข้ามฟ้าเคียงเธอมาแน่2023 #BLACKPINK #시즈니는_드림을_사랑해 #BLACKPINK #Pakistan #LISA… https://t.co/q8CNPxn5Xz
## 766                                1. NCT DREAM\n2. NCT 127\n3. EXO\n4. BTS\n5. SEVENTEEN\n6. TREASURE\n7. BLACKPINK\n8. ITZY\n9. TWICE\n10. STRAY KIDS https://t.co/3wdgilES3H
## 767                                                                I want him 😟\n\n#문준휘 #文俊辉 #준 #JUN #세븐틴⁠ ⁠ #SEVENTEEN⁠ #ジュン #セブチ #JUNHUI https://t.co/JStfDR8sZY
## 768                                                                                                                                             do you guys even like seventeen
## 769                                                                                                                                                        @hyunessvn Seventeen
## 770                                         Album Japanese SEVENTEEN «Dream» Version B (Cd + Photobook + Photocard Dino)😍😍😍😍\n@pledis_17 \n@pledis_17jp https://t.co/0gNLrydhAz
## 771                              Album Japanese SEVENTEEN «Dream» Version Regular (Cd + Lyrics Book + Photocard S.Coups)😍😍😍😍\n@pledis_17 \n@pledis_17jp https://t.co/tctSv8Hons
## 772  #후즈팬 #Whosfan x #한터뮤직어워즈 #HMAs\n#30주년한터뮤직어워즈2022\n#후즈팬덤상🏆#WhosFandomAward🏆\n\n🎈2조 (Group 2)🎈\nBLINK♥#BLACKPINK BLACKPINK… https://t.co/IBpDXPp3bO
## 773                                                                                                      you won't be seventeen forever, and we can get away with this tonight.
## 774                                i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시… https://t.co/YYAdy1rmbk
## 775                         If you see this, you're required to list your top 10 groups:\nStray Kids\nThe Boyz\nAstro\nOneus\nTreasure\nSeventeen \nCr… https://t.co/GKO8JHs79h
## 776                                                                                                                                   @tanyakanrl Happy sweet seventeen💕💕💕💕💕💕💕💕
## 777                         if you see this, you're required to list your top 10 groups\n\n1 DAY6\n2 ONF\n3 KINGDOM\n4 OH MY GIRL\n5 BOYFRIEND\n6 SEVE… https://t.co/nSZcMiUcWZ
## 778                        1. my stray kid \n2. blackpink \n3. red velvet \n4. dreamcatcher\n5. idle\n6. seventeen \n7. nmixx\n8. loona\n9. le sserafi… https://t.co/g0f9cuTvmC
## 779                       1. twice\n2. dreamcatcher\n3. seventeen\n4. weeekly\n5. le sserafim\n6. purple kiss\n7. loona\n8. nct dream\n9. gidle\n10. s… https://t.co/5wzQE5RfoR
## 780                                      It’s time for day sixteen, seventeen and eighteen of our Advent Calendar!\n(Busy weekend for Lesley)\n#Advent… https://t.co/Gbv67qYMSw
## 781                                 @wonhayi_ 26 broke but living her best life... Have fun at Seventeen concert and most importantly have a good time… https://t.co/IvoNefDn20
## 782                           @starfess BTS: Sea\nBLACKPINK: The happiest girl \nTWICE: one in a million \nNEWJEANS: hurt\nLESSERAFIM: good parts\nTXT… https://t.co/jiNM3IsZt1
## 783                                Seventeen states, along with cities and Native American tribes, had accused Walmart of dispensing the pain pills wi… https://t.co/IXbCcKjPD0
## 784                                @primordiaIist oh nooo!!! the MEN are upset that they're being fetishized? but theyre MEN they can't be fetishized!… https://t.co/OMojEyEpR0
## 785                               S.coups &amp; Woozi • Seventeen\n\nSector 17 stickers\n\n$3 each, $5 for both, stamped shipping included if in the US https://t.co/5at8GVyjjo
## 786                                                                                                       GOOD MORNING CARATS! ITS D-DAY!!!🥰🥰🥰\n\n#BeTheSuninBULACAN #SEVENTEEN
## 787                                                                                                                                  @_shinestars Ateez\nOneus/Onewe\nSeventeen
## 788                                                                                                                                                       @ajooniceee Seventeen
## 789                                be the sun in bulacan d-day! ingat sa mga bbyahe. stay hydrated and have fun, carats! make this a memorable experie… https://t.co/2ERKOlyKzZ
## 790                                                                                                                        @fruityjoohyun the edge of seventeen #SaveWarriorNun
## 791                                @yupsheskitten Seventeen will make history as the first K-Pop group to hold a solo concert at the Philippine Arena!… https://t.co/cJg5oIsSl4
## 792                                                                                          december is being 💫fancy💫 \n#CaratSelcaDay #CSD #seventeen https://t.co/rSJelY6EGM
## 793                                For seventeen years, I have been saying: "O decision-makers, their governments, and all their peoples, I am Imam Ma… https://t.co/IybUcGCKvz
## 794                                                   i haven’t taken cute pics of myself since summer oops 💚💚💚\n\n#CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/2pEHkKBhwF
## 795                                                                  Last December Concert I went to, before Pandemic was Day6 &amp; IU… NOW I’LL BE SEEING SEVENTEEN AND SUJU🥹
## 796                                                                                                                                           seventeen https://t.co/CpG9zuNNQV
## 797                                                        @agustdqueen well i’m a vocalist girlie. here’s one i last saved. it’s with joshua and dk.   https://t.co/1CuTCLbHA1
## 798                                                                                                                                        @24hopeubounce 3. To you - Seventeen
## 799                                                                                                                                  dar+ing by seventeen is a perfect pop song
## 800                                                                                                                                       Only the Dead stay seventeen forever.
## 801                                                                                                                                            D-DAY! #BeTSinBULACAN #SEVENTEEN
## 802                           Special Chart Flashback:\nTMN Top 100 of 1982 \n\nNo. 19\n\nStevie Nicks - Edge of Seventeen (Just Like The White Winged… https://t.co/MToFivDUnb
## 803                       1. stray kids \n2. le sserafim \n3. new jeans\n4. seventeen\n5. twice\n6. loona\n7. dreamcatcher\n8. izone\n9. red velvet\n1… https://t.co/AA5ClewV8m
## 804                                                you mean the world to me and I'm so glad we can call and lose our minds over seventeen together 🖤🖤🖤🖤 https://t.co/G7XJSesxcq
## 805                                       will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yXVgjTqg1h
## 806                                                                             SAD NA AKO EVERYDAY EVERY NIGHT LEGIT TOTOO HUHU SEVENTEEN 😭 lIoveyou, my 13.\n\n#BeTSinBULACAN
## 807                     If you see this you’re required to list your top 10 groups\n\n1. ateez\n2. seventeen\n3. &amp;team\n4. omega x\n5. elast\n6. t… https://t.co/C3BbOZug08
## 808                                                                                                        That dragons seventeen-year-old boy\n؟?\nنمشے\n\n🔹H20🔹\n🔹H20🔹\n🔹H20🔹
## 809                                       Today is the Day!! 💎 #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17\n\nnot my conceet outfit though... 😁 https://t.co/O2d2Btuq3F
## 810                        @starfess BTS:\nBLACKPINK:\nTWICE: feel special\nNEWJEANS: hype boy\nLESSERAFIM: impurities\nTXT:\nTREASURE:\nENHYPEN:\nSEV… https://t.co/T7CPoIpatD
## 811                               CANYOUSEEME? by DANNY RAN OUT ON ALL PLATS (prod.MANIIC) \nhttps://t.co/gPn89hSZ39\n\n#SEVENTEEN #rap #newmusic #g59… https://t.co/UvszvpHMYX
## 812                        We’re honored to be one of 17 credit unions &amp; three systems sponsoring The Lab at @fileneresearch &amp; look forward to… https://t.co/fqoqJ7DC6T
## 813                                Hello gen question will there be baggage counters in #BeTheSuninBULACAN tomorrow? Planning on brining my flask kasi… https://t.co/MQZv1YXmlC
## 814                                 @CGasparino @BlackRock @AlexEpstein 2/3… in recent decades in numerous countries, published in the British medical… https://t.co/fNxDsaKsyw
## 815                                                                                                                       Nct, Seventeen, SKZ I TheBoyz https://t.co/aOuo6LWeAb
## 816                                                           Never breathed living! Free your mind and for a seventeen-year-old boy went girl\n؟?\nنمشے\n\n🔹C44🔹\n🔹C44🔹\n🔹C44🔹
## 817                          If you see this you're required to list your top 10 groups\n1. skz\n2. lesserafim \n3. txt\n4. newjeans\n5. seventeen \n6… https://t.co/c7cjt9GE4k
## 818                                                 good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 819                                @EITC_Official 😆 🤣 😂 Doxxing Queen! Now I have that Abba song running through my head - 🎵 🎶 You are the doxxing que… https://t.co/UjgeuN36qR
## 820                      like / rt if you stan any of these groups! \n\nseventeen\nred velvet\nateez\ntwice\ntxt\nitzy\nnewjeans\nblackpink\nle sseraf… https://t.co/SUU6aQopvZ
## 821                                                                   Mark Tuan Reveals The CRINGIEST 'GOT7' Song And His SECRET Tattoo | Read Receipts https://t.co/JPy1hR3WEo
## 822                                                                                    i wanna match you to my heart \n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/Cl9PfLCkwE
## 823                                @kimwoosunnie @theseoulstory ignore MBC. MBC even tried to befriend them again by inviting seventeen but since Pled… https://t.co/Cyv7e8nUhu
## 824                                                             wayv but also seventeen.. they are a whole bunch of chaos. every GoSe episode is gold 😂 https://t.co/eOqfSBnoqe
## 825                                         SEVENTEEN Dances to ‘Left and Right’, Talks MAMA Awards &amp; Performing At LA3C Festival | Billboard News… https://t.co/uaWeJjoP8n
## 826                             #Media #Videos #bbnews #billboardnews SEVENTEEN Dances to ‘Left and Right’, Talks MAMA Awards &amp; Performing At LA3C… https://t.co/2VLRxiVYz4
## 827                                There's still seventeen people in; there's Caramel Cube, Globe, Treasure Chest, Pan, Game Boy Color, Flashlight, Pl… https://t.co/yCIo91buDq
## 828                                Dr. Arbuthnot states the Roman cubit at seventeen inches and four tenths; the cubit of the scriptures at a little l… https://t.co/eUXkO511Zo
## 829                                                More decluttering posts to come. please feel free to inquire about the availability of any older SEVENTEEN or NCT photocards
## 830                                                                                                              @daredvssy @sspiderpunk omg they’re seventeen? I hate minors 😔
## 831                              🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in b… https://t.co/wEP8MBPHKO
## 832                                                                                                                                            seventeen w black hair is so hot
## 833                          UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN An Ode\n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: Imile… https://t.co/xyPDpHxIlQ
## 834                                                SEVENTEEN Be The Sun Bulacan freebies!!\n\n #BeTheSuninBULACAN #BeTSinBULACAN\n\nSee you, Carats! 🫶🏻 https://t.co/sq2TaW3Pe5
## 835                          UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN Semicolon \n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: I… https://t.co/ViZy9myT2r
## 836                                                                                                                  breathing the same polluted pinas air again with seventeen
## 837                                and to those ph carats who are team bahay like me haha, don't lose hope we will all gonna see SEVENTEEN soon!fighti… https://t.co/oBeSCaK7He
## 838                          UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN Your Choice \n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options:… https://t.co/hJrIq0Q7Og
## 839                                          SEVENTEEN Dances to ‘Left and Right’, Talks MAMA Awards &amp; Performing At LA3C Festival | Billboard News https://t.co/dbc75I92Ly
## 840                           WTS / LFB\n\nBE THE SUN IN BULACAN \n\nUBC REG 409 Row 91\n\n1900.00 php only\n\nPayment upon meetup in Philippine Arena… https://t.co/qcX39KXsSP
## 841                                                                                    stole this, pls don’t comment bgs that aren’t seventeen or piwon https://t.co/MvhyTyll0J
## 842                          UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN Heng:garæ \n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: I… https://t.co/dDR0SkdFGj
## 843                           If you see this, you're required to list your top 10 groups:\n\n1- stray kids\n2- seventeen\n3- exo ve monsta x \ngerisi… https://t.co/ItB18MlxcR
## 844                                Meet Seventeen Voices of the Year honoree Aniya Butler! 🎙At just 16 years old, Aniya uses her voice to bring attent… https://t.co/ep9L7JswRy
## 845                                                                                                                         church first 🙏 see you later, carats and seventeen!
## 846                                                                                                         @sunshinehak_ That was my first ever seventeen pull pink hair kwan🥹
## 847                                 @JessLTwrites I know what I'm doing over Christmas break now. I'll correct all seventeen of the books I've written… https://t.co/9dDNConBJK
## 848                                                                                                                            @gvsbelle_ 1 - nct 127 \n2 - seventeen \n3 - exo
## 849                                                                                          Some seventeen songs like Chuck and Rock, what’s good are really under appreciated
## 850                                                        Yeah Seventeen rappin the P man Ha! Yeah Let me show you how It's post to be done right now. https://t.co/QjwWFTEtCq
## 851                                                                                                                                 seventeen\n#SaveWarriorNun #RenewWarriorNun
## 852                                                           •We keep this love in a photograph•\n\n#CaratSelcaDay #SEVENTEEN\n#JoshuaHong  @pledis_17 https://t.co/PJ208Q2vjw
## 853                            wtb lfs\n\nBe The Sun in Bulacan \n- 1 LBA prem/reg at a discounted price (preferably lower than 10k)\n- better if lowe… https://t.co/e8VXfH8V4U
## 854                                                           Seventeen, Purki, Ateez, idk if forestella counts but i am going to say it, Mamamoo, BTOB https://t.co/zVHWdvYVip
## 855                                      me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 856                                                                                                                                 Seventeen and ateez https://t.co/3bpB58I2tf
## 857                               [sisa sharing] Seventeen 2023 Season\nGreeting's 'The Story of Eros'\n\nPhoto Frame Sticker + Heart Massage Card 40k… https://t.co/qBTUbQgaEn
## 858                                @yupsheskitten seventeen. these 13 guys have given me so much comfort for the past months. i honestly don’t know th… https://t.co/PV5BTfDYCv
## 859                                                                 LFB / WTS\n\n1 SEVENTEEN Concert ticket\n\nLower box\n\nDM for more info.\n#SEVENTEEN \n#SEVENTEENinBulacan
## 860                                                                                                               she's a motherfucking killer queen, a psychopath at seventeen
## 861                                                                                                           #BeTheSuninBULACAN #BeTSinBULACAN D-DAY 🥹🧡  #SEVENTEEN @pledis_17
## 862                                                                                                             SEE YOU LATER SEVENTEEN AHHHHHHHHH🙉🥰😍😍😍 https://t.co/tgUkglmanj
## 863                          if you see this, you're required to list your top 10 groups\n\n1. red velvet\n2. seventeen\n3. exo\n4. snsd\n5. aespa\n6.… https://t.co/eXLD88c0Dp
## 864                                                                                                   LFB / WTS\n\n1 SEVENTEEN Concert ticket\n\nLower box\n\nDM for more info.
## 865                                                                                                       there’s so much more but seventeen is aesthetically pleasing ⌗ 🎧°. •♡
## 866                                                        We both love reading books💖\n\n#CaratSelcaDay #CARAT #VERNON #SEVENTEEN #selcaday @pledis_17 https://t.co/MQSbXRaaz5
## 867                                missing this one but i will be there in the next tour and the next caratland and the next japan dome tour SEE YOU S… https://t.co/tWe8fNv0uE
## 868                                                                                                                                       ✨SEVENTEEN✨ https://t.co/lCY6zlMnKD
## 869                                                                Me and ma baby 💋 \n\n#CaratSelcaDay #THE8 #csd #MINGHAO #SEVENTEEN #CARAT @pledis_17 https://t.co/bgpgzmoBQO
## 870                                chilli: seventeen album track list orders continue to baffle me but this was fun, the english lyrics are a bit unse… https://t.co/oRzZ1LxHVu
## 871                                @Mo0chie_ @soompi It's only a lot of the 2012-2013 groups that are inactive due to military service or whatever. Th… https://t.co/cUzxE78i7p
## 872                                                                                                                 seventeen pictures that are so pinterest coded ; a thread 💌
## 873                          @starryhun94 Seventeen Be The Sun in Bulacan\n\nUBB PREM \nSection 422, Row 73, Seat 455/456\nMeet up only\n\n🏷 seventeen… https://t.co/zt0wCH94V4
## 874                                                                                                                          d-day #SEVENTEEN #BeTheSuninBULACAN #BeTSinBULACAN
## 875                       1. fromis_9\n2. fromis_9\n3. fromis_9\n4. fromis_9\n5. fromis_9\n6. fromis_9\n7. fromis_9\n8. fromis_9\n9. fromis_9\n10. sev… https://t.co/Mlq0aB0r0X
## 876                        WTS LFB SEVENTEEN\n\n# attacca sealed albums - 600 each\n\n! onhand\n\ntags for sale svt photocard pc ph\n\ncan do meet ups… https://t.co/LnLQoXqtFT
## 877                          WTS/LFB  Seventeen Be The Sun in Bulacan\n\nUBB PREM \nSection 422, Row 73, Seat 455/456\nMeet up only\n\n🏷 seventeen bet… https://t.co/azDmAoc1ai
## 878                                   1. shinee \n2. got7\n3. monstax \n4. exo\n5. seventeen\n6. stray kids\n7. ateez\n8. victon\n9. the boyz\n10. tvxq https://t.co/BBWshRJ3IT
## 879                                                we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 880                                                                                                   good morning to seventeen &amp; carats only &lt;3 https://t.co/JmcqVld0ES
## 881                          el orden da igual les quiero mucho a todos\n1. the boyz\n2. dkb\n3. p1h\n4. oneus\n5. ateez\n6. seventeen\n7. nct (todas)… https://t.co/1hbNq3D5kr
## 882                                                                                                                                                   @felixbrowines Seventeen?
## 883                                                     me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 884                                                                                                       Ay mama told me not to sell work seventeen five same color t-shirt 🎶⏭️
## 885                             svt yzy rd 6 pc go\n\n— info on 2nd pic\n— reply to dm to claim\n\n🏷️ seventeen scoups jeonghan joshua jun hoshi wonwoo… https://t.co/fwkgIoWSJA
## 886                                you're telling me.....whatever (waves hand in the air confusingly) seventeen wears in the airport is curated by a s… https://t.co/Jyzq85pubK
## 887                                                                                                                                         @_shinestars seventeen\nateez \ntxt
## 888                                Hello Seventeen @pledis_17. Do we have this kind of Ill-fated relationship? Because for the nth time, I won't be ab… https://t.co/EL8iVX8E8J
## 889                                                                                                                                                SEE YOU LATER SEVENTEEN HUHU
## 890                                                  Addison Rae Doubles Down on the No-Pants Trend in an Oversized Vintage Tee https://t.co/Sb7PGmvS7M https://t.co/2qrDWEl9PB
## 891                                                 SEE YOU LATER 🥹🫶🫶🫶\n\n#SEVENTEEN #SEVENTEENinBulacan #BeTheSuninBULACAN #BeTSinBULACAN #BeTSBulacan https://t.co/Z4KEj34YIU
## 892                                                                    Otw to you my Boo~\n#BeTSinBULACAN #부승관 #세븐틴 #BeTheSuninBULACAN #SEVENTEEN https://t.co/H7P24PQ6Mx
## 893                                @nbcsnl Seventeen people, and only one or two (at best) really talented comedy performers. It's a long way from the… https://t.co/ooBOaanKYU
## 894                                celebrating 2 years as a carat by attending their concert on\ndec 17 (today) 🥹 seventeen, you truly are my healing 🫂 https://t.co/Ti8xYXy1GY
## 895                                this is so funny when u take into consideration back then stays would claim izone were getting rigged wins (sevente… https://t.co/NKh9cuhbKl
## 896                                                                                                                                                      My #SEVENTEEN opinions
## 897                                               When he sleeps that night, he's seventeen years old and nothing has changed. He wakes up with tears still drying on his face.
## 898                                                                                          Wonwoo is up for trade for Coups! As well as all seventeen pulls that was not him💕
## 899                              My pulls today💜💜\nI PULLED COUPS!!!!! And got an official pc from Seoul Nami of him as well 💕💕\nAlso my pc pulls from… https://t.co/9yrvijMXfz
## 900                                "We've also got a new segment that we're introducing for the first time called This is Instrumental." - THAO NGUYEN… https://t.co/XxiQP2REO8
## 901                                 @yupsheskitten Every carats deserve to see seventeen and that includes me. I want to see seventeen before the year… https://t.co/LdcPX3sxpC
## 902                                                                  @jeachypae yeahh 🥰 we’re in going seventeen drought rn but there’s A LOT already uploaded so have funn 😂🫶🏽
## 903                                                                                      Morning sa lahattttt, and a special morning to @pledis_17! SEE YOU LATER SEVENTEEN!!!!
## 904                                                            see you when i see you, seventeen 🥺 i'll just settle with watching you on device screens for now. love ko kayo 🥺
## 905                          If you see this, you're required to list your top 10 groups:\n1.BTS\n2.Monsta X\n3.Stray Kids\n4.Mamamoo\n5.Exid\n6.Twice… https://t.co/Joz8FIBDNa
## 906                                                                                  Find the nearest paving slab and wait there watching the world pass for seventeen minutes.
## 907                                       Bands you only know because you were hungover and off to see another band,  but enjoyed them more...\n\n#1 :… https://t.co/QZDLDsqxb0
## 908                                                                                              how are there not more seventeen reactions from aaa stages....pls i'm starving
## 909                                                    hanuena? my supposed to be outfit for seventeen’s concert pero na-stuck sya sa warehouse! hmp. 🙄 https://t.co/4PGnfLCroM
## 910                                                                                                                                                                   SEVENTEEN
## 911                                                                                                                                                                   SEVENTEEN
## 912                                                                                                                                         SEVENTEEN!! https://t.co/ZmRyWMcFzB
## 913                                                                                                   Please be safe. See you all, Caratdeul! SEE YOU SEVENTEEN, @pledis_17 💎🫶🏻
## 914                                                                                                              @httpsnyxdotcom @pledis_17 love how seventeen is in this convo
## 915                                                                WTB season greeting Seventeen 2023 please😭😭 terutama member set wonwoo, vernon, Jeonghan diary dan sticker!!
## 916                                                                                                                             see you later, Seventeen!!!\n\nsa panaginip 😭😭😭
## 917                   if you see this, you're required to list your top 10 groups:\n\n1. nct&amp;seventeen\n2. bts&amp;p1harmony\n3. enhypen\n4. twice… https://t.co/ZgCN38MkYm
## 918                                                                                                                                           Seventeen https://t.co/lRehOyAZpE
## 919                           @dwersy Bts Straykids \nBlackpink Twice \nItzy Txt Oneus \nSeventeen \nDreamcatcher \nLoona Oh my girl \nGirls day Girls… https://t.co/ro3hMJSGsI
## 920                                                                                          Nails inspired By Seventeen ♥️💅 Ready nako! See you Carats! https://t.co/u9Kw4zJRvw
## 921                            ‼️ URGENT 😭😭\n\nwts lfb seventeen be the sun bulacan lowerbox 105 row 16\n- meet up ph arena\n- rfs: emergency\n- you’ll… https://t.co/jpWGLIWbu2
## 922                                                      sweater + glasses gf and hoodie + glasses bf #csd #CaratSelcaDay #VERNON #Seventeen @pledis_17 https://t.co/fvGLOBFnOW
## 923                                Jenna's on the rise to superstardom. She stars as Wednesday Addams in the live-action series Wednesday, now the mos… https://t.co/DzjIhb76Fb
## 924                                                                                     you come to a girl’s apartment and she has a seventeen wall wyd https://t.co/LDBkDJGhJT
## 925                                        Watching “NCIS” Season Twelve Episode Seventeen: The Artful Dodger on Netflix via My IPAD Pro 10.5. {CL:045} https://t.co/y3LyJFSqUE
## 926                                         @45LVNancy @GuntherEagleman @DogRightGirl @dogspink3 @RealHickory @Braveheart_USA @Fishing_Huuker @DefSue3… https://t.co/VjLoSJcmLI
## 927                                You think I'm getting old? I've got the abs of a seventeen year old gymnast and the forehead of a toddler, baby. Br… https://t.co/186E1IEBjX
## 928                                                                                                 Seeing my father’s axe after seventeen winters… it stirred something in me.
## 929                                @miss_svtmafia @pledis_17 Idk why i should win… in my life I will never win something. Seventeen bring to me so muc… https://t.co/fv2C4ZU40o
## 930                                                                                                                                                   Janis Ian -  At Seventeen
## 931                                                                        𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 932                                                                                                          seventeen for what https://t.co/0dsoeaqiNC https://t.co/py7UcFZdUm
## 933                                                                                                                                                   Oh, good, he's seventeen.
## 934                                there’s a seventeen design i need to do for a tattoo and it’s always funny to think that my assignment from work (i… https://t.co/mqI7jZGvSl
## 935                               One lucky #teamlabas will be able to see Seventeen later! Good luck! 💗\n\nI’ll post my whereabouts later if you wish… https://t.co/0pNRdBJQid
## 936                                                 [D-DAY] #BeTheSuninBULACAN ☀️🧡✨ See you later @pledis_17 ! 🥹🤧💖\n#SEVENTEEN #세븐틴\n#BeTSinBulacan… https://t.co/E1PPg55ieF
## 937                                                                                                                                                      @mahoumoreno seventeen
## 938                                                 [D-DAY] #BeTheSuninBULACAN ☀️🧡✨ See you later @pledis_17 ! 🥹🤧💖\n#SEVENTEEN #세븐틴\n#BeTSinBulacan… https://t.co/G4ZATN8Ad6
## 939                               Local gossip says he is the killer, and rumors spread about his wife's death as well.\n\nSeventeen Days is available… https://t.co/5gYdofsamq
## 940                                                                                                                 @MOODYWOOZI also I hate seventeen you can unfollow me now 😍
## 941                             If you see this, you’re required to list your top 10 groups!\nBesides #1, 2-10 have no particular ranking 😅🤗\n\n1. Sev… https://t.co/WLx7dFjxz8
## 942                                                         The many colors and aesthetics of seventeen mvs \n\n#SEVENTEEN #SEVENTEENinBulacan\n#세븐틴 https://t.co/uV4nTk4bch
## 943                                             @Tteuink 1. Treasure\n2. Blackpink\n3. Seventeen\n4. NCT \n5. Newjeans\n6. Enhypen\n7. Got7\n8. P1harmony\n9. TNX\n10. (G)i-dle
## 944                                 @miss_svtmafia @pledis_17 I want to see the people who inspired me to do better every day. Also, I want to be part… https://t.co/9kh0y5KqR7
## 945                                Walking in the winter can be good for your health. No matter what weather you’re facing, this guide should help you… https://t.co/m8b1iIP777
## 946                                                                                            seventeen and super junior this weekend 🥲 wish i could attend either but oh well
## 947                         if you see this, you’re required to list your top 10 groups \n\n1. BTS\n2. MOMOLAND\n3. BOTOPASS\n4. SEVENTEEN\n5. TXT\n6.… https://t.co/hXjCJYqGou
## 948                                                                             See you later Carats 💙💕\n#BeTSinBULACAN \n\nFreebies\nSeventeen Concert https://t.co/bHXuPM9zxK
## 949                            @kpophappenings_ when they had free time Jeonghan &amp; DK [Dokyeom] from #SEVENTEEN went to visit Santa monica. They b… https://t.co/w708Ida0xO
## 950                                @miss_svtmafia @pledis_17 I only started stanning seventeen early this year (tho ik its never too late). Ever since… https://t.co/jzYjgaQxsK
## 951                                                                                                                                                     SEE U SEVENTEEN ! &lt;3
## 952                                                                                             lover boy 🥀 #CSD #CaratSelcaDay #DOKYEOM #DK #seventeen https://t.co/LT4lAY7cFl
## 953                                                           run bts &amp; going seventeen. brilliant reality show content no one’s doing it like them https://t.co/MPGYRoifAy
## 954                     (most of) Filo carats agenda for today\n\nFinish their chores  -&gt; Packing of freebies -&gt; Simbang gabi -&gt; Byahe to Bul… https://t.co/ZDBUeAsqWe
## 955                                                                   @The_Master_E @butleriano @FluffLingering What are the last 4 letters of the two numbers after seventeen?
## 956                             Wts Lfb Seventeen Assorted Pc\n\n🐸 Sold as Set Only\n🐸 6,500 (6k if PAYO) \n🐸 Can look for kahati and can ship to diff… https://t.co/hvomhKGEwT
## 957                                                               alexa, play 'crazy in love' by seventeen&lt;3\n\n#CaratSelcaDay #csd #Junhui #MINGHAO https://t.co/mk8uiUCRUj
## 958                                                                                     See you, Seventeen! See you carats! @pledis_17 let's goooo! 🤩🤩🤩 https://t.co/dahb8TfPhP
## 959                                                                                                                                                Seventeen \n#الروح_الحلوة_في
## 960                                                                    @r4in3_twt @hohohocheeks tysm po for the ga &lt;33 #BeTheSuninBULACAN #SEVENTEEN https://t.co/mBZlCsxJWT
## 961                                                           In Jeonghans defence ‘how tf should we know know???’ 🙄🙄🙄\n\n@pledis_17 #세븐틴 #SEVENTEEN https://t.co/60pgq3a194
## 962                                @miss_svtmafia @pledis_17 everyone deserves to see them! I've never been happier when I discover seventeen. They li… https://t.co/G65nDBmlrf
## 963                                                                                                                                  GOOD MORNING I'M SEEING SEVENTEEN LATER!!!
## 964                                                                                                                  biggest plot twist of my 2022 is that im seeing seventeen.
## 965                                @TantanBlu @blueislove39 @AboutMusicYT all idols praised taeyeon and her songs this year and u say she’s irrelevant… https://t.co/WuwIygRmLV
## 966                                            I have been writing a book for about a week now and I have gotten to chapter seventeen lmao \n#fypシ #writing #WritingCommnunity
## 967                                                                                                                                         seventeen:3 https://t.co/AW2X45mHRD
## 968                                  @bangtaniiboi - Song you ran over a squirrel to: AJU NICE by SEVENTEEN\n- Song you nearly got T-boned while listening to: HOT by SEVENTEEN
## 969                       1. seventeen\n2. fromis_9\n3. txt\n4. le sserafim\n5. dreamcatcher\n6. loona\n7. ive\n8. purple kiss\n9. woo!ah\n10. nct dre… https://t.co/MOCHHnCJEc
## 970                                                                                             “Like a cowboy”         cowboy like me\n- seventeen.        🤝    - taylor swift
## 971                   ‼️ UPDATE\n\nWTS // want to sell\nhelp rt please ♡\n\naab SEVENTEEN &amp; TREASURE photocard\n\n🖇️ price exc packing &amp; admin 🍊… https://t.co/BqQqvIwnz3
## 972                                                                                                                                     going seventeen https://t.co/6mZBPSydUf
## 973                                                                  Me gathering people’s books so I’ll have stuff to read on a seventeen-hour flight: https://t.co/3UGeZO1PIQ
## 974                              🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs late… https://t.co/lRVruDvWKE
## 975                                @JasonBWilliams1 @RayGunRichards Is Heir to the Empire really great? There's a lot of sneaking around buildings and… https://t.co/WHfMq0RaGC
## 976                                @KpopMulti06 THIS ALBUM WILL BREAK THE INTERNET, I NEED THEM TO GET ALL THE STREAMS THEY NEED!!! seventeen first, s… https://t.co/rSWhoCslFx
## 977                                                                                                                                     good morningggg!!!! see u seventeen 😭🥹❤️
## 978                               @RoseFocused @thenreport Seventeen vote for Rosé\n\n#NETIZENSREPORT #ROSÉ for Asian Celebrity of The Year #ACOTY2022… https://t.co/agM3pg7J6m
## 979                                                                                                                                                 im seeing seventeen today 🥺
## 980                                 They say it’s the most wonderful time of the year, but supporting you, seeing you evolve as the amazing, talented,… https://t.co/ZZnQLvswqx
## 981                                                                                    LOCO COMO K RUMORES D K SEVENTEEN VIENE A CHILE CTMMM DKSTELWYEOEYWOEH ME VOY A MATARRRR
## 982                            Met a boy at seventeen (15)\nThought he meant the world to me\nSo I gave him everything\nHe turned out to be a cheat\n/… https://t.co/yHZT2MqDfE
## 983                                Good morning everybodyyy! Here’s today’s weather for Santa Maria, Bulacan. There is a chance of rain at 2pm to 3pm,… https://t.co/NNeMYm343Y
## 984                                                                                                                                               I'LL FINALLY SEE SEVENTEEN 🥹🤍
## 985                                                                        omg i get to hear mansae live 😭😭😭 now pa lang nag ssync in na i get to go a seventeen concert huhuhu
## 986                        @D1CKTAETOR @ggukmms @dwersy Bts\nStray Kids\nSeventeen\nTxt\nAteez\nTwice\nDay6\nSf 9\nLe Serafim (inş yanloş yazmamışımdı… https://t.co/7jCAtoKAKz
## 987                                                                                              KINGDOM HEARTS 2 Final Mix Part Seventeen https://t.co/bD2eHGtU1L via @YouTube
## 988                                                                                                                        in just a few hours makikita na natin seventeen 😭😭😭😭
## 989                                  For today's selca day let me bring back whatever this was I did with Jeonghan \n\n#SEVENTEEN #CaratSelcaDay  #CSD… https://t.co/qJzlKTqZvD
## 990                                                                   👖🪣🎩🍊 | Jeans Bucket Hat with Kwan\n❣️\n#CaratSelcaDay #CARAT #SEUNGKWAN #SEVENTEEN https://t.co/pbQQXRtoVz
## 991                         WTB👀 #jmwbuys \nseventeen baby semicolon scoups, joshua, seungkwan\n\npreferably ready ina\nharga affordable\n\ntags🏷\nsev… https://t.co/9oqa6HxmCB
## 992                                                    trendz covering hit by seventeen 🤝🏻 kingdom covering thunderous by stray kids\nyeaaah go slay babies covering my ult 😭🫶🏻
## 993                                    HI!! Does anyone know how to get back from PH Arena to Meycauayan, Bulacan??? #BeTSinBULACAN #BeTheSuninBULACAN… https://t.co/7zH7wpuGOu
## 994                                       hopefully txt, ateez, seventeen pcs soon 😹💔!!! i have none oh em gee!! \n\ntags: @nayeonsboba @strawbrryygyu… https://t.co/Cm3WJOTTyM
## 995                                                                                                                      @addjukartph 💫Seventeen Album💫 https://t.co/3wKhCRnnmy
## 996                                                                     @MiddiMidori Longing. Rusted. Furnace. Daybreak. Seventeen. Benign. Nine. Homecoming. One. Freight car.
## 997                                                                                             ⠀⠀ \n⠀⠀ \n⠀⠀ sixteen or seventeen. . .I think.\n⠀⠀ \n⠀⠀ https://t.co/L0tqkYj6rj
## 998                                @carriehudson @CandiceRenee New ones. I'm not the seventeen year-old who bought these anymore, and I want something… https://t.co/IROqIdGdHj
## 999                                                                    What Their Astrological Sign Reveals About How They Kiss https://t.co/LXURJVqZkz https://t.co/ZaXIgTOG8O
## 1000                          if you see this, you’re required to list your top 10 groups \n\n1. Momoland \n2. Lucy \n3. CLC / Billie \n4. Brave girls… https://t.co/zBRK19WqAN
## 1001                              bawi nalang me sa svt next con.\n:( @pledis_17  congratulations agad! im so proud of you! this is history! Seventeen… https://t.co/61cx6kQMqk
## 1002                                  Wtb The8 Shopee and Beatroad pcs! Please DM if you're willing to sell. Help me bring these home 🙇🏻‍♀️🙇🏻‍♀️\nHave mul… https://t.co/rNQ4IjTUsO
## 1003                                                                                                                             See yaaaah seventeen 🤍 https://t.co/nZYNfCxkGX
## 1004                            If you see this, you're required to list your top 10 groups\n1. Nct \n2. Aespa\n3. Iz*one (incluyendo las solistas, iv… https://t.co/Arhec6vURA
## 1005                                                                                                                   It’s a lie idols are busy lol not when you’re seventeen.
## 1006                                                                                                                     Manifesting seeing the boyz and Seventeen this year😍😍😍
## 1007                               seeing people from bets bulacan posting giveaways and donations to help carats see seventeen and to make the sold o… https://t.co/4i1OorkZuo
## 1008                               @peoplesvaccine @maxlawsontin @ashleighfurlong "As many as seventeen million people are estimated to have died in t… https://t.co/BJqyhl8ZF0
## 1009                                                                                                                     congratulayion you are give birth to SEVENTEEN FERRETS
## 1010                                                                                                                 @ColorsTV @ShivThakare9 Seventeen #BBKingShiv #ShivThakare
## 1011                               Nostalgic record ritual and cleaning house.  Time to shut off the world for a bit and travel back to that angst-fil… https://t.co/HJ0DRAq6uP
## 1012                                                                                What Your Period Blood Says About Your Body https://t.co/EwpLdPvvhI https://t.co/NROuwmWTtg
## 1013                               6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Block… https://t.co/8iczkQ0ILr
## 1014                         If you see this you're required to list your top 10 groups\n1. EVERGLOW\n2. ATEEZ\n3. EXO\n4. ENHYPEN\n5. (G)I-DLE\n6. TW… https://t.co/8pJ3AkUki6
## 1015                               ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] rea… https://t.co/0L8V0ppyQP
## 1016                           WTB👀 #jmwbuys \nseventeen dicon my choice is... teddy double sided yang belum ada tandanya\n\npreferably ready ina\nhar… https://t.co/4nvxbFgUNH
## 1017                                                                                                            One hundred and seventy-two thousand six hundred and seventeen.
## 1018                        if you see this, you're required to list your top 10 groups\n\n1. onf\n2. kingdom\n3. seventeen\n4. txt\n5. twice\n6. oh m… https://t.co/fM6UXftrrt
## 1019                            If you see this, you're required to list your top groups: (I'll do of all time, no order)\n1. Big Bang\n2. Bts\n3. Vix… https://t.co/aswZvWvK0W
## 1020                                                                                                        I’m not mentally prepared for Seventeen’s concert videos tomorrow 🙂
## 1021                                                                                car selcas with gyu ( ´▽`)\n#CaratSelcaDay #CSD #MINGYU #SEVENTEEN https://t.co/dRLXRp5v1y
## 1022                               @yunjeanpink i recommend watching their variety content to get to know them! they have a weekly variety show (Going… https://t.co/WJjRxB7HM0
## 1023                                                                                              @r4in3_twt gooodlucck!! #BeTheSuninBULACAN #SEVENTEEN https://t.co/TJbIVD5FxP
## 1024                                                                                                                                          Seventeen https://t.co/gnqhuKvVju
## 1025                                                                                                                              T map going seventeen https://t.co/96TV5pGRyk
## 1026                                                                          me and my date. 💋\n~@pledis_17 \n\n#CSD #CaratSelcaDay #Mingyu #SEVENTEEN https://t.co/rhWKVH4krk
## 1027                                Saving this picture for today. Same place and not sooooo different world☺️ Seventeen😍 Welcome back to the Philippin… https://t.co/7EZ6yh29GS
## 1028                                                                                                                               SEVENTEEN RIGHT HERE https://t.co/KCFo6ibJXI
## 1029                                                                                       Compro ingresso show seventeen highlight by performance unit https://t.co/lKaxrshZrB
## 1030                                                                                   seungcheol cheol scoups clap chorus eyebrow stage svt seventeen\nhttps://t.co/PTyIE7pEOK
## 1031                                                                                                        four million five hundred sixty two thousand five hundred seventeen
## 1032                               @miss_svtmafia @pledis_17 I've been a fan of seventeen since adore you. they gave me comfort and a sense of belongi… https://t.co/tbfvRZ39yi
## 1033                                                                               I'm only seventeen, i dont know anything; but i know i miss you. -veronica and j.d. probably
## 1034                                                                      Have fun tomorrow FILO CARATS 🤍🤍\nIm pretty jealous... 🥺\nI hope Europe can see Seventeen soon too...
## 1035                                                            wonwoo doing a thumbs up to scoups telling him the food is good woncheol svt seventeen\nhttps://t.co/by441xt3ci
## 1036                                                                                                            BRUH I FXKIN LOVE SEVENTEEN SO MUCH 😭😭😭 https://t.co/qqSxNRA4C7
## 1037                                                                                                                              You got old and wrinkled...I stayed seventeen
## 1038                      1. Astro\n2. Bts\n3. Stray kids\n4. Ateez\n5.  The rose\n6.Seventeen\n7. Txt \n8. P1harmony\n9. Monsta x\n10. Treasure or on… https://t.co/J5UhNjFeV8
## 1039                                                                                                    Finally 29, seventeen would never cross my mind https://t.co/lBhJslgTcA
## 1040                                                                                                                                         @theraneynight SEVENTEEN ?!?!?!!!?
## 1041                              — wts lfb | #densells_\n\n🏷️ wts lfb svt fts scoups jeonghan joshua jun hoshi wonwoo woozi the8 minghao mingyu dk seu… https://t.co/BssY5MrLzY
## 1042                                                                                                                           que lindo se ve seventeen en el killing voice 😭😭
## 1043                                                                                                                    SEVENTEEN YEARS THE ACTUAL FUCK https://t.co/kTFR4EcSNd
## 1044                           Wts lfb seventeen pc set\n\n🐸 Strictly Sold as Set only !\n🐸 700 set + pf + sf\n🐸 Can look for kahati and can ship to d… https://t.co/SgZ2MYFv4Y
## 1045                               Wahhh its the concert day today enjoy seventeen and carats i hope soon i will part of the concert hoping and prayin… https://t.co/ZYy4sgde0D
## 1046                             wts lfb ph seventeen svt be the sun in bulacan\n\n#BeTSinBULACAN #BeTheSuninBulacan #SVTinMNL\n\nSelling for a friend… https://t.co/qqgEkJp7Re
## 1047                                                                                                              Seventeen new jeans lee sefraim stayc https://t.co/u8esL0bmNR
## 1048                                                                                                          i hope seventeen has a fun time with filipino carats tomorrow 🥺🫶🏽
## 1049                                                                                                                                                    Seventeen and Forgotten
## 1050                                 « 𝐚𝐥𝐥 𝐨𝐟 𝐦𝐞 𝐜𝐡𝐚𝐧𝐠𝐞𝐝 𝐥𝐢𝐤𝐞 𝐦𝐢𝐝𝐧𝐢𝐠𝐡𝐭 𝐫𝐚𝐢𝐧 »\n    ❛ ⌗ ꒷꒦    ꒦꒷   ꒷꒦\n\n#Hoshi #SEVENTEEN \n#CaratSelcaDay #carat https://t.co/RdnxuoGoOi
## 1051                                @miss_svtmafia @pledis_17 all carats deserves to see #Seventeen in #BeTSinBULACAN i deserve to see them because it… https://t.co/HxY4VF1612
## 1052                                                                                                                    @shuasmwah @pichulinology u mean that goofy talk?? 🚶🏻🚶🏻
## 1053                                 @yupsheskitten I deserve to see them after a long tiring hell week 🥹 I need to see my comfort aaaaa\n\n#SEVENTEEN… https://t.co/FfuTR6ELvf
## 1054                        ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before… https://t.co/9lfHeDyTvx
## 1055                            Goodluck CARATs enjoy and don't forget to follow the etiquette okay??? Sending love from the Team Bahay Visayas \n\n#BeTSinBULACAN \n#SEVENTEEN
## 1056                                                               @joealwyns9inch @cleverlycardi2 @PopCrave your fav literally dated seventeen year olds i don’t wanna hear it
## 1057                               @RoseFocused @thenreport One thousand, four hundred and seventeen\n#NETIZENSREPORT #ROSÉ for Asian Celebrity of the… https://t.co/R2wmq6weVn
## 1058                                                                                   Breaking my back just to know your name\nSeventeen tracks and I've had it with this game
## 1059                                                               at this point i’m mostly just a tbz twitter account lmao- all my oneus and seventeen stuff is in my cirlce 🥲
## 1060                                                                                                                @dre_seventeen @pichulinology Even i see that she does WDYM
## 1061                               @miss_svtmafia @pledis_17 I want to see seventeen, to hear them sing live, to have fun with them, to dance and sing… https://t.co/CSk7W9sNPn
## 1062                                wts lfb #BeTheSuninBULACAN LBB PREM 213 8,500 ONLY FROM 11600. PAYMENT TOMORROW UPON MEET UP. CAN PROVIDE RECEIPTS… https://t.co/ODOG1xDpWj
## 1063                                @miss_svtmafia @pledis_17 I want to see SEVENTEEN live because I'm a huge fan of them and their music. They're one… https://t.co/xMP0qYOaaV
## 1064                                                                                                                             @TeenVogue SAY THE NAME SEVENTEEN!💎 @pledis_17
## 1065                                I just want to thank ate @miss_svtmafia and ate @yupsheskitten for the giveaways!! Thank you very muchhh po,, even… https://t.co/KN2k1BOnl0
## 1066                                   Don’t forget to vote for SEVENTEEN on Seoul Music Awards in Fancast.\n\n#SEVENTEEN @pledis_17 #세븐틴 #Svt_Dream https://t.co/blZT6e9wEL
## 1067                      Let's do this 🫡\n1. Ateez\n2. KQ Fellaz 2 (predebut)\n3. W24\n4. TXT\n5. Astro\n6. VIXX\n7. Day6\n8. Seventeen\n9. Xdinary H… https://t.co/33nCrYwukz
## 1068                                         ❕D-DAY\nBE THE SUN BULACAN \nSEE YOU @pledis_17 🤍\n#BeTSinBULACAN #BeTheSuninBULACAN\n#세븐틴 #SEVENTEEN… https://t.co/nYV5bMAJOR
## 1069                                                                                                                                          seventeen https://t.co/YuB3NI8R7Y
## 1070                                @miss_svtmafia @pledis_17 Would like to win this GA for my daughter who’s an ult seventeen fan. This will serve as… https://t.co/ROc6YYa4Zc
## 1071                                      @yupsheskitten Every Carats deserve to see SEVENTEEN. I want to hear them live im stanning them for years now https://t.co/oQyu0WJ6pq
## 1072                               @miss_svtmafia @pledis_17 'Coz I've been exhausted since the beginning of November and I don't know how to cope wit… https://t.co/r1ZXmyQxjB
## 1073                                @miss_svtmafia @pledis_17 seventeen has been my comfort ever since i discover them, so seeing them or hearing them… https://t.co/Y9Fy78PMbF
## 1074                               @miss_svtmafia @pledis_17 I don't know if I'm really the deserving one to win the ticket but one thing i know is th… https://t.co/y6ABg4oB5T
## 1075                                                                                                  @pichulinology if u talking abt flirting and stuff side yes im not 🚶🏻🚶🏻🚶🏻
## 1076                                @miss_svtmafia @pledis_17 Would like to win this GA for my daughter who’s an ult seventeen fan. This will serve as… https://t.co/5TaiQyyWkO
## 1077                                  1_EXO\n2_CBX\n3_X-EXO\n4_SC\n5_treasure\n6_seventeen \n7_red velvet \n8_theboyz\n9_txt\n10_exo future sub unit 🌚☠️ https://t.co/1JsgXBkdCc
## 1078                                                                               @AbsoluteChelsea @geglobo Spending that kind of money on a seventeen year old will be stupid
## 1079                               @miss_svtmafia @pledis_17 I deserve to see #SEVENTEEN 'cause I'm a super duper fan, i watch their contents and stre… https://t.co/IXt4nHFyxZ
## 1080                                                             Slip into the diamond life ೄྀ࿐ ˊˎ-\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/VGsv1Hw9z1
## 1081                                @miss_svtmafia @pledis_17 i want to see how the boys enjoy performing for the first time 🥹🥹 i na through this ga i… https://t.co/c7ixQZjV0j
## 1082                               @miss_svtmafia @pledis_17 Please this is my friend @/tisca_johnson 1st seventeen concert.. he has been through a lo… https://t.co/fz3uFZT2Po
## 1083                               @yupsheskitten i've been a fan of seventeen since jhs and now im already in college, my love for them just grows bi… https://t.co/KFH4v2Ld2E
## 1084                                                                                                                                   @BTXTLOV3S 👏👏 *play clap by seventeen* 👀
## 1085                               @miss_svtmafia @pledis_17 i want to see them performing in the  biggest arena in the world, i want to be part of th… https://t.co/IK6RMYoj2N
## 1086                               @miss_svtmafia @pledis_17 To be honest I met seventeen when I'm having my anxiety, and they are the person who help… https://t.co/GjdBlVNn8H
## 1087                               @miss_svtmafia @pledis_17 I don't know why I should win... Eme. But honestly, I do believe that I deserve to be par… https://t.co/03pwr1mBTk
## 1088                               @miss_svtmafia @pledis_17 @bobgyul I deserve to see #SEVENTEEN 'cause I'm a super duper fan, i watch their contents… https://t.co/k0b36tj1wg
## 1089                               @yupsheskitten i've been a fan of seventeen since jhs and now im already in college, my love for them just grows bi… https://t.co/Df1B2Y8A1o
## 1090                               @miss_svtmafia @pledis_17 Witnessing a SEVENTEEN concert is every carats dream as their concerts are packed with in… https://t.co/ppYmAsA2k3
## 1091                               @miss_svtmafia @pledis_17 I deserve this because seventeen always help me when I'm sad, their music always comforts… https://t.co/QrYowXD4Xg
## 1092                                                                                    Three hundred twelve million, three hundred twenty-six thousand, one hundred seventeen.
## 1093                       WTS LFB\n\nSeventeen Be the Sun in Bulacan\n\nTwo (2) LBB regular 203 row 54 - ₱15k both\n\nComes with freebies. \n\nPhysic… https://t.co/HvfhIxLByT
## 1094                                                                                                                                                     i miss going seventeen
## 1095                                                      “ mm.. it’s truly nice. Leaving Kabukicho was the best choice I’ve made in seventeen years. “ https://t.co/uYyG6Sh1yv
## 1096                                So early in the airport coz I don’t wanna miss my flight. @pledis_17 ang hirap nyong mahalin! 🥹 #BeTheSuninBULACAN… https://t.co/pe4WFfo7zI
## 1097                               @miss_svtmafia @pledis_17 Seventeen is my light. They helped me and they were the reason why I'm still standing rn.… https://t.co/SP3fukNEJt
## 1098                                @miss_svtmafia @pledis_17 Seventeen is always been my safe place, I want to see the people who make it easy for me… https://t.co/3bvH38XKjP
## 1099                               @miss_svtmafia @pledis_17 WANT TO SEE SEVENTEEN AND IWANT TO HEAR THEM SING LIVE THEY'RE THE REASON WHY IM FIGHTING… https://t.co/dUvU1OaXNt
## 1100                                @miss_svtmafia @pledis_17 Everyone deserve to see seventeen and that includes me. I deserve this because no matter… https://t.co/Zwh9SCsHSB
## 1101                               @yupsheskitten I deserve to see #SEVENTEEN cause I'm a super duper fan, I watch their contents and stream everyday.… https://t.co/rDYOwJ96zl
## 1102                                                                                          see you later my sebongs 💗 #SEVENTEEN #SEVENTEENinBulacan https://t.co/9yJjGp3HtV
## 1103                               @miss_svtmafia @pledis_17 deserve ko kc na survive ko ang stressful sem 😭🙏  i wanna see them perform live, sing alo… https://t.co/JcWZNhNeac
## 1104                                                                                                    flowers &lt;3\n\n#CaratSelcaDay #CSD #SEVENTEEN https://t.co/9vBllaM2sZ
## 1105                                                                             @stillgoIden seventeen going under live from finsbury park 😏 also fthc and faith in the future
## 1106                                @miss_svtmafia @pledis_17 I want Seventeen to my first concert experience ❤️. And also this will act as my gift bec… https://t.co/OGfxv8DZAK
## 1107                                Woiii!😭 I can't keep up with SVT's update because of work but I hope my fellow carats will enjoy the con later! Pa… https://t.co/Bqp1w9XvDr
## 1108                               @miss_svtmafia @pledis_17 @bobgyul i've been a fan of seventeen since jhs and now im already in college, my love fo… https://t.co/iG33tvIYI4
## 1109                                @miss_svtmafia @pledis_17 @bobgyul To be part of this fandom is a blessed thing already and to know seventeen is a… https://t.co/6W6WKbmfAA
## 1110                                @miss_svtmafia @pledis_17 @bobgyul To be part of this fandom is a blessed thing already and to know seventeen is a… https://t.co/brZdFDlxB9
## 1111                                                                                                                          txt, seventeen, p1harmony https://t.co/09p3PcFcgU
## 1112                               @oliverdarcy @PuckNews @JonKelly2 You’re a weasel! “Senior media reporter”???? You’re just a weasel! Just look at y… https://t.co/MVyPEK1ekz
## 1113                        @anne_carole14 1- kai (exo)\n2- ateez \n3- bts\n4- junghwan (treasure)\n5- jeonghan (seventeen)\n6- ?? jsp\n7- jimin\n8- n… https://t.co/xNPCxUdajC
## 1114                                 1. Super junior\n2. Exo \n3. Seventeen\n4.xeed\n5. Txt\n6. Stray kids\n7. Ateez\n8  big bang \n9 treasure \n10 NCT https://t.co/pCsZ6L7sxn
## 1115                                                                                                                                             seventeen are so dear to me 🫂🫶
## 1116                                                                                                                                             @starfess seventeen sama day6🥲
## 1117                                                                                                                 @ColorsTV @ShivThakare9 Seventeen #BBKingShiv #ShivThakare
## 1118                          #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and L… https://t.co/Jni6g7LskG
## 1119                                                                                                       @Spotify SEVENTEEN Be The Sun World Tour 💎☀️🔥 https://t.co/UOuqQLV532
## 1120                                                                                                                      they   only   want   you   when   you're   seventeen.
## 1121                                                                                               1. EXO\n2. (G)I-dle \n3. Seventeen \n\nFin du tweet. https://t.co/QlS3G8qVxd
## 1122                                       1. Block B\n2. Seventeen\n3. EXO\n4. Winner\n5. DPR\n6. Mamamoo\n7. Twice\n8. Blackpink\n9. BTS\n10. Enhypen https://t.co/EUw1gliKHx
## 1123                                               🖇·˚ ༘ ┊͙[Love you to the moon and to Saturn.] !  ˊˎ\n#CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 https://t.co/2am2T8E2IJ
## 1124                                @yupsheskitten I believe that everyone deserves to see Seventeen, but I believe that I should win this not because… https://t.co/MlO4dkzALe
## 1125                            Kpop Boy Groups Ranking in Youtube Music South Korea Top Artists Chart\n(15th December 2022)\n\n#6 #BTS\n#12 #Jungkook… https://t.co/FKFQYVcFpg
## 1126                               @miss_svtmafia @pledis_17 @bobgyul Everyone deserve to see seventeen and that includes me. I deserve this because n… https://t.co/Bt9Ur7NnGz
## 1127                               PosterMyWall | 161222 Seventeen magazine cover\nFully customizable template\nUncropped template in the link bellow:… https://t.co/R1PVpP7JCb
## 1128                           wts lfb bets bulacan lbb reg tickets\n\ncan give the tickets for 9k pero negotiable \n- arena meet up\n- can give freeb… https://t.co/Fucj3DaRC0
## 1129                               @yupsheskitten I know every carat deserves to see seventeen. And I know i'm one of those deserving people that real… https://t.co/9R6L95wSzF
## 1130                                                                                                     @ENHYPENSJAY Samuel the one that was gonna debut with seventeen right?
## 1131                                                                                                           @TheAthletic Seventeen years later.  How inspiring. Next please.
## 1132                                                                                                                               @writingcap He waited seventeen years 🥹💕💕💕💕💕
## 1133                                                                                                                                       SEVENTEEN!!! https://t.co/rxOEnYv9iF
## 1134                               @miss_svtmafia @pledis_17 @bobgyul Manifesting mapili kasi deserve ko to. Seventeen always taught me to fight for m… https://t.co/TuDlPeCZq8
## 1135                                                                                                       SEVENTEEN IN PHH TODAY ! happy fun everyone thats going stay safe !!
## 1136                                                                                                                                          seventeen https://t.co/8xvfsrkXaC
## 1137                               Now now, Hasumi Keito-kun is rather cold, is he not...☆ Fufufu. Hasumi Keito-kun, aren't you seventeen? It is as if… https://t.co/GwLRYFRgut
## 1138                                                        DISCOUNTED NA MGA CHINGUS! \n\nDM IS THE KEY PO\n\n🏷️ seventeen svt be the sun in bulacan wts lfb wtb lfs wtt carats
## 1139                            @starscryatnight 1. blue from blues clues\n2. magenta from blues clues\n3. muffin from bluey \n4. ladybird from ladybi… https://t.co/TKbVkKQwSM
## 1140                  wts lfb ph\n\nSALE SALE SALE\n\nASSORTED NCT SEVENTEEN PHOTOCARDS\n₱100 - ₱150\n\n- w/ freebies\n- pf included\n- onhand &amp; r… https://t.co/oPqsVnuj5Q
## 1141                               @yupsheskitten I deserve to see #SEVENTEEN 'cause I'm a super duper fan, i watch their contents and stream everyday… https://t.co/nG71Zi8sob
## 1142                                                                                      the way they all look at him ☹️\n\n#JOSHUA #조슈아 #SEVENTEEN\nhttps://t.co/ZN0618b7C4
## 1143                                @NapkinsJimmy @HumorandShit @hodgetwins You can't be older than sixteen or seventeen. I'm not here to argue with a… https://t.co/RcgrOIKkIq
## 1144                                                                                                                                       @RubiDilaik Seventeen\n#RubinaDilaik
## 1145                  update:\n\nseventeen seasons greetings 2023 tingi\n\n✅ photobook set\n❌ desk calendar set\n❌ diary set\n✅ wall calendar\n\nm… https://t.co/kQMw9iygqC
## 1146                               @miss_svtmafia @pledis_17 @bobgyul I deserve this because seventeen help me from sadness, their music always comfor… https://t.co/BT036uQxaz
## 1147                               @yupsheskitten I don't know if I'm really the deserving one to win the ticket but one thing i know is that i deserv… https://t.co/XzfFG477ID
## 1148                                                                  we was in our parking lot phase, we were seventeen\nall your energy was set to me and i gave you the same
## 1149                               @yupsheskitten Everyone deserve to see seventeen and that includes me. I deserve this because no matter how low the… https://t.co/LS2vzXPIlj
## 1150                               At seventeen, Lane Daniels joins the Air Force to direct his life away from conflicts, including those with police,… https://t.co/BKda7lLbA6
## 1151                                                                                 i want to sleep but i cant sleep bc i kept thinking na makikita ko na seventeen mamaya 😭😭😭
## 1152                                                                                                                                              @jiims any seventeen album po
## 1153                                           STREAMING PROOF APPLE MUSIC 🔥💎\n\n[03:23 KST, 17 DEC 2022]\n\n@pledis_17 @pledis_17jp #SEVENTEEN #DREAM… https://t.co/TaSekms75g
## 1154                               @SimonDavisBarry AHHHHHH I promise I will promote the show and make people sign the petition to the concert I’m att… https://t.co/4idMIH6ITh
## 1155                                                                                                                    wtb sharing season greeting seventeen 2023 jeonghan set
## 1156                           @alicelostinkpop 1. Ateez\n2. The Boyz\n3. Tomorrow x Together\n4. E'Last\n5. Enhypen\n6. Cravity\n7. BTS\n8. Oneus\n9. Seventeen\n10. P1Harmony
## 1157                                          I also want to add this moment, wherein Minghao became Junhui's photographer in Limbo behind the scenes.… https://t.co/RVQC8oSImL
## 1158                                                                                                                              Circles  -SEVENTEEN \nhttps://t.co/9HVOuEQSHU
## 1159                                                                                                                                    HOT -SEVENTEEN\nhttps://t.co/OUweKF4EcO
## 1160                                                                                                                       Don't Wanna Cry  -SEVENTEEN\nhttps://t.co/tzMlgs8GKo
## 1161                                                                                                                                   Fear -SEVENTEEN\nhttps://t.co/26cqTDHe7i
## 1162                                                                                                                                Anyone  -SEVENTEEN\nhttps://t.co/D3MRAHguSM
## 1163                                                                                                                                   Clap -SEVENTEEN\nhttps://t.co/2dOxFUKNEo
## 1164                                                                                                      wonwoo oh my! intro stage cute svt seventeen\nhttps://t.co/fGYsdvC5ax
## 1165                           As promised 🥹\nFrom 50pcs to 132pcs freebies\n\nSee you later, Carats!!\n\n#BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN… https://t.co/ebNQKv2FLj
## 1166                                                                                                                                 _WORLD -SEVENTEEN\nhttps://t.co/Cor7V7ZBYs
## 1167                                                                                                                                Shadow  -SEVENTEEN\nhttps://t.co/A7i3kkHTYw
## 1168                                                                                                               i need seventeen tickets immediately https://t.co/mTKCxrWIjk
## 1169                               @yupsheskitten Hello! I'm been stanning Seventeen since the start of pandemic and their music keeps me from being a… https://t.co/PZnccL4H67
## 1170                               Y'all. I got to reject my PE/Health teacher's as a Friend on Facebook after she made my life a nightmare in high sc… https://t.co/GZGfMGIfwi
## 1171                                                                                                                   exo, p1harmony, seventeen, oneus https://t.co/hwqtENmAd4
## 1172                       1. seventeen\n2. gwsn\n3. kara\n4. brave girls\n5. mamamoo\n6. shinee\n7. the boyz\n8. rolling quartz\n9. dreamcatcher\n10.… https://t.co/RIwrMHGwWw
## 1173                          [Thread] WTS LFB SVT PC\n\nSeventeen Photocards\n-see pics for prices\n-meetup tom only (BeTS Bul)\n-official freebies w… https://t.co/oL6xZK5afH
## 1174                   In Limbo behind the scenes, Junhui and Minghao took a selca in front of the mirror.\n\n#SEVENTEEN #세븐틴 #セブチ\n#JUN #文俊辉… https://t.co/c78tLVZPMm
## 1175                                        Thinking of                            Missing my\nmy Beauty...                             Beast...\n#CSD… https://t.co/BnvpH3zg0d
## 1176                                       Hailey Bieber Gives Her Viral Glazed Donut Nails a Holiday, Candy Cane-Themed Update https://t.co/3jtPpMEp0B https://t.co/ahDhdmAiFR
## 1177                                                                                                                       @Scoupscherry7 U and SEVENTEEN at the same line haha
## 1178                               @miss_svtmafia @pledis_17 @bobgyul everyone deserves to win this ticket and i should win this ticket because i have… https://t.co/3UVKrIhog7
## 1179                                                             ...Kahk-kahk-kahk. My laptop won't turn on. Never thought my life would end so soon. A mere seventeen years...
## 1180                               @yupsheskitten again for the nth time, we carats deserve to win and see seventeen and i am claiming to be one of th… https://t.co/CA4gTD8FIU
## 1181                                                The translator vining while doing his job. WELL DONE!! \n\n#SEVENTEEN @pledis_17 #세븐틴 #SVT_Dream https://t.co/ik1lsLacco
## 1182                               @miss_svtmafia @pledis_17 @bobgyul I believe that everyone deserves to see Seventeen, but I believe that I should w… https://t.co/1zg0waM20v
## 1183                       1. Block B\n2. BTS\n3. Block B-BASTARZ\n4. Monsta X \n5. Stray Kids \n6. Super Junior\n7. Epik High \n8. Seventeen \n9. ONF… https://t.co/RAwG67Wuk4
## 1184                               Fast forward seventeen years.  I was bored at work and realized it had been 25 years since I graduated high school.… https://t.co/gpPFnFxg9o
## 1185                       if u see this, ur required to list ur top 10 groups\n\n1. seventeen\n2. twice\n3. exo \n4. bts\n5. apink\n6. red velvet\n7.… https://t.co/STutJALfSe
## 1186                          If you see this, you're required to list your top 10 groups:\n1- monsta x\n2- p1harmony\n3- stray kids\n4- astro\n5- nfl… https://t.co/AwUsLK3iH4
## 1187                         first time revealing my boyfriend to the public.🤫\n\n[#CSD #CaratSelcaDay #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17] https://t.co/fRosZuMBnN
## 1188                               The singer released her debut album over a decade ago! From “Speak Now” to “Folklore,” here’s how Taylor became one… https://t.co/8lxbcg5yIN
## 1189                             hi, our shop is closed the whole day!\n\ni'll be attending seventeen's concert today at ph arena so i won't be able t… https://t.co/7s1BW9FXF5
## 1190                                @miss_svtmafia @pledis_17 @bobgyul claiming all of the positivity! i deserve to win and see seventeen since i an a… https://t.co/xAAgGJvvAl
## 1191                                                       Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits https://t.co/Jp2ueNgtg2
## 1192                                                                         our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 1193                               @miss_svtmafia @pledis_17 I wish every carats can see them but I wish to win this GA not for me solely but for my d… https://t.co/3tPZgsDEBx
## 1194                           “Hey Oni how did you get good and drawing people”\n\nOh boy. Oho boy. Ohohohoh /oh boy/.\n\nReal talk, this bitch could… https://t.co/JQmozwqiWR
## 1195                          WTS LFB PH \nSEVENTEEN BE THE SUN IN BULACAN \nLBB REG 217 (2 seats) \n\ndiscounted at 10,000 php ea\nmeetup (still nego… https://t.co/DtGofTqLiI
## 1196                               SEVENTEEN IS SO SERIOUS ABOUT BEING THE MOST UNSERIOUS GROUP LIKE WE REALLY OUT HERE PAYING TO DO CARDIO FOR AN HOU… https://t.co/4chGJlg1k1
## 1197                                                                           9 and seventeen doubtful readings, with only that innat                  https://t.co/b9P8xGaErg
## 1198                                           STREAMING PROOF APPLE MUSIC 🔥💎\n\n[03:14 KST, 17 DEC 2022]\n\n@pledis_17 @pledis_17jp #SEVENTEEN #DREAM… https://t.co/rZJv6fd2ma
## 1199                          WTS / LFB \n\nUNSEALED SEVENTEEN ALBUMS\nPrice on pic 𝗟𝗘𝗦𝗦 ₱𝟱𝟬.𝟬𝟬 each\n\nYOUR CHOICE Beside, One Side, Other Side Album… https://t.co/vIfX6zH3Vj
## 1200                               @yupsheskitten Because this girl with the user name of @S4INTSNHN deserve to see seventeen kase tagal na niyang fan… https://t.co/ZdSqEwV8im
## 1201                               @miss_svtmafia @pledis_17 i hope to relive live the comfort seventeen have gave me the first time i heard them on s… https://t.co/tO8rFlPnlv
## 1202                           WTS / LFB \n\nUNSEALED SEVENTEEN ALBUMS\nPrice on pic 𝗟𝗘𝗦𝗦 ₱𝟱𝟬.𝟬𝟬 each\n\nYOUR CHOICE M2U Lucky Draw Vernon / Seungkwan… https://t.co/lOrrPqhG2U
## 1203                                    WTS / LFB \n\nUNSEALED SEVENTEEN ALBUMS\nPrice on pic 𝗟𝗘𝗦𝗦 ₱𝟱𝟬.𝟬𝟬 each\n\nSEMICOLON  HOSHI Cover + Weaving Kit… https://t.co/pEiKR5WXxe
## 1204                                                                                                                              @dre_seventeen @shuasmwah I don't remember 🚶🚶
## 1205                                  Crowdsourcing 🌻\nCalling all #TeamLabas at #BeTSinBULACAN like and Retweet this tweet. I'll dm u 😊\n\n#SEVENTEEN… https://t.co/TUQ0uWIRfL
## 1206                               WTS / LFB \n\nUNSEALED SEVENTEEN ALBUMS / PC\nPrice on pic 𝗟𝗘𝗦𝗦 ₱𝟱𝟬.𝟬𝟬\n\n24H The8 Dino Moshi\n\n#BeTheSuninBULACAN… https://t.co/j9KEBRa41h
## 1207                                                                                              @derireo_galge Yes, the second is a song Title of Seventeen or Jk&amp;Charlie
## 1208                               i know this is seventeen but boy, why do i see red lights here? i must be stopped, red lights by hyunchan is so add… https://t.co/NlJEdjuDnQ
## 1209                               i almost forgot! i am also selling seventeen photocards from face the sun, sector 17, and dream. i am allowing barg… https://t.co/Nr8GtEvoEX
## 1210                                                                                                                                                          Kidult #seventeen
## 1211                           not me seeing available tickts for BeTS in Bulacan until now, 1 hr ride going there &amp; i have money atm i can buy if… https://t.co/fLHjVxfJ4v
## 1212                                                                     whoa man\nStevie Nicks - Edge of Seventeen (Official Music Video) https://t.co/hXpbZvqiTT via @YouTube
## 1213                         This is my freebies guys I’m done packing haha \n\nWristband + random unofficial &amp; official photocards candys and sev… https://t.co/IVm2earrWK
## 1214                                                                                                         i like seventeen bts txt p1h and all girl groups that ever existed
## 1215                       WTS / LFB \n\nUNSEALED SEVENTEEN ALBUMS\nPrice on pic 𝗟𝗘𝗦𝗦 ₱𝟱𝟬.𝟬𝟬 each\n\n24H and HMV Entry Cards\nLimited A (❌WW), B (❌T… https://t.co/YRcBycsW8d
## 1216                                                                                                                                    2023: Seventeen https://t.co/Eq6Hs9bXch
## 1217                              55PCS seventeen DARLING lomo cards seventeen DARLING photocards SEVENTEEN postcard JE9ESL6\n\nhttps://t.co/BQDgH18K1d https://t.co/nUUoAf6G8F
## 1218                               @miss_svtmafia @pledis_17 @bobgyul I already have my ticket but I really want to experience this concert with the p… https://t.co/MTsBU2arlE
## 1219                                                                                    Seventeen: Last Man Standing 3HKC23F\n\nhttps://t.co/WEiKZ0eC3o https://t.co/Pr8RuCS27K
## 1220                                                                                                                           Clears throat 😤SEVENTEEN https://t.co/ruJsw94Xns
## 1221                               @yupsheskitten deserve ko kc na survive ko ang stressful sem 😭🙏  i wanna see them perform live, sing along with oth… https://t.co/w7WwFkMzlt
## 1222                               @yupsheskitten Every Carats deserve to see seventeen. Para sakin deserve ko sila makita kasi seventeen gives me com… https://t.co/O66WxWwkP4
## 1223                                @yupsheskitten Seventeen is always been my safe place, I want to see the people who make it easy for me to survive… https://t.co/SpHS6WFjhY
## 1224                                                                                              @pichulinology @shuasmwah i literally saw few min ago u flirt 🚶🏻🚶🏻🚶🏻 then nvm
## 1225                                                                                           @SkyeonTheDragon Happy birthday, Sky!!! ✨✨\nEnjoy the spectacular seventeen 💕🥳
## 1226                             Done packing the freebies\nJust want to show u guys the inclusions.\n3 set of freebies on the pics\nSee u carat later… https://t.co/0LH9a1B1hl
## 1227                     WTS / LFB \n\nUNSEALED SEVENTEEN ALBUMS\nPrice on pic 𝗟𝗘𝗦𝗦 ₱𝟱𝟬.𝟬𝟬 each\n\nHENGGARAE \nHana - ❌ Perf PB\nSet - ❌OT13 PB\nNet… https://t.co/2hyjIb9Iln
## 1228                                                                                                             not my mama crying over seventeen 😂 grabe na kayo @pledis_17 😩
## 1229                               The 17 credit unions and three system organizations that currently make up The Lab at Filene begin testing four con… https://t.co/KfJzrmBuk7
## 1230                                                                                                           @pichulinology we are literally fighting. she dont flirt with me
## 1231                                                                                            #ILLsProofs\n\nlightstick battery holder btob seventeen https://t.co/7g2O53o7x4
## 1232                                                                              really watching the rock with you mv at work and crying because i’m down so bad for seventeen
## 1233                                                                           144p lq low quality dino lee chan going to sleep bed cute svt seventeen\nhttps://t.co/Ck7rIHhzny
## 1234                               I took this photo on 19•04•2022 and after 7 months Dk publishes this photo (on 03•12•2022). We really are soulmates… https://t.co/pk2NrJ05JI
## 1235                                   WTS / LFB \n₱𝟲𝟬𝟬.𝟬𝟬\n- WONWOO JDT SVT Moshi\n₱𝟳𝟬𝟬.𝟬𝟬\n- WONWOO Pink / Blue\n\n#BeTheSuninBULACAN #BeTSinBulacan… https://t.co/0LreJgM0yH
## 1236                                  Seventeen (done voting) app voting is important 💙🖤🙏 plz vote on the app \n\nI vote @Buildbuilddd #NETIZENSREPORT… https://t.co/n3hPi8uHP3
## 1237                                @yupsheskitten I deserved to see seventeen to express my gratefulness to https://t.co/fdY9ulylal breath and escape… https://t.co/s8u63eP2WH
## 1238                         [PRE ORDER]\nRILIS : 29 Desember 2022\n.\n⭐SEVENTEEN - 2023 SEASON'S GREETINGS⭐️\n.\n▶️ DETAIL :\nhttps://t.co/octg5TfBHy… https://t.co/dNZWiHkKPu
## 1239                                  WTS / LFB \n₱𝟰𝟬𝟬.𝟬𝟬\n\n- 6th Anniversary Mingyu Necklace PC only\n\n#BeTheSuninBULACAN #BeTSinBulacan #SEVENTEEN… https://t.co/k8n1yviMBN
## 1240                                                                                                                seventeen be the sun ticket cutie🤞🍀 https://t.co/mwSrMnVgSY
## 1241                                                                                               seventeen is having their encore concert here and my day is already ruined 😔
## 1242                                                                                                    november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 1243                                         WTS / LFB \n₱𝟯𝟬𝟬.𝟬𝟬 each\n\n- HENGGARAE Grid PC\nThe8 Jun\n\n#BeTheSuninBULACAN #BeTSinBulacan #SEVENTEEN… https://t.co/4NFIOXnIMh
## 1244                                                                                                                   STEVIE NICKS - EDGE OF SEVENTEEN https://t.co/9D7nDzUzKu
## 1245                         WTS / LFB \n₱𝟮𝟱𝟬.𝟬𝟬 each\n\n- AN ODE Real Version Mingyu PC\n- HMV POB 24H\nJun Hoshi Woozi Mingyu Seungkwan Vernon\nexce… https://t.co/RG9sO973Ff
## 1246                               @yupsheskitten I deserve to see seventeen in BeTS in Bulacan because they became my home. Idc if it's far, I just r… https://t.co/tfhe1J2nrg
## 1247                               @yupsheskitten 🙏🤞 I deserve to win because I believe it's my time to see seventeen today. I'm claiming it to hear t… https://t.co/uDlffkGy3x
## 1248                         Be the Sun in Bulacan freebies\n\nHi! We’re giving away lots of cute fanmade stuff today! In rose quartz &amp; serenity b… https://t.co/qHPnr45nTJ
## 1249                                                                                                                                                  TANGINA SEE YOU SEVENTEEN
## 1250                                                                                                                                                              SEVENTEEN!!!!
## 1251                             One of my fave svt fan tt accounts posted this… it made me cry🥺https://t.co/pREV6mUMl9\n\nSeventeen, thank you for ev… https://t.co/NWuQfdrW5w
## 1252                                    WTS / LFB \n₱𝟮𝟮𝟬.𝟬𝟬 each\n\n- OTY Japan DK Solo\n- YOUR CHOICE Dino PC Other Side\n\n(dont mind prices on pic)… https://t.co/E1EP2cDZsO
## 1253              Got7 \nBTOB\nAteez\nStray Kids\nMonstaX\nExo\nItzy\nDreamcatcher\nBp\nBts\nTwice \nShinee\nTxt\nDay6 \nNCT\nSeventeen\nBigbang \nRed… https://t.co/F2HmkhP1zK
## 1254                                                                                          WTB Green A Carmem (1tix)\n\n#seventeen #BETHESUNinJKT #wtb #wts #konserseventeen
## 1255                                                                                              me and my carat shoes are gonna see seventeen today 🤩 https://t.co/QzrSkvTxVj
## 1256                                @miss_svtmafia @pledis_17 @bobgyul all carats deserves to see seventeen pero i also deserve to see them because it… https://t.co/31eTxhu35f
## 1257                         WTS / LFB \n₱𝟮𝟮𝟬.𝟬𝟬 each\n\n- HMV POB - FALLIN' FLOWER\nSCoups Jun Dino\n- ATTACCA Weverse POB PC The8\n- MINGYU YMMD Bef… https://t.co/6SmM4Mjv3x
## 1258                                                                         UK Albums Chart, 16.12.2022\n#13 (+30) ‘Seventeen Going Under’ @samfendermusic [62 weeks] *peak #1
## 1259                                @yupsheskitten I really deserve this ticket as a reward for working hard for my acads. I want to see and hear them… https://t.co/EpGBNIhyKC
## 1260                                                                             plz be nice to me \n\n#CSD #cartaselcaday #SEVENTEEN #HOSHI @pledis_17 https://t.co/0ZNN3jneWf
## 1261                           WTB👀 #jmwbuys \nseventeen dicon my choice is... teddy yang belum ada tandanya\n\npreferably ready ina\nharga affordable… https://t.co/s6uCFpkCcI
## 1262                                               Goodluck to all the carats that will meet seventeen later 💗 enjoyyyy~~ (i wanna go too 😭😭) hoping for a succesful concert ^^
## 1263                               @yupsheskitten i will say i deserve to see them because they're everything to me, they help me get through every st… https://t.co/vvgdzhKH25
## 1264                                                                                                    December 17 is for Seventeen &amp; PH Carats. See u later @pledis_17 🫶🏻
## 1265                                @yupsheskitten Seeing your moots in twitter in real lifeee shouting with other carats Ofc laughing and enjoing the… https://t.co/iClgE9J4Al
## 1266                                                              Different places in 1 goal 💖\n\n#CSD #CaratSelcaDay #HOSHI #SVT #SEVENTEEN @pledis_17 https://t.co/oWti15IPu4
## 1267                                WTS / LFB \n₱𝟮𝟬𝟬.𝟬𝟬 each\n\n- YOUR CHOICE Album PC\nSeungkwan Dino\n\n#BeTheSuninBULACAN #BeTSinBulacan #SEVENTEEN… https://t.co/dm4hrztrVN
## 1268                                                                                                                        my boys seventeen of course https://t.co/4bds3cl7ax
## 1269                              I’m seventeen years old. \n I don’t know then that one day I won’t be seventeen. I don’t know that youth doesn’t las… https://t.co/Dib3AuUlMV
## 1270                          wtt lft\n\nHave: UBA 307 row 66 (2nd row)\nWant: LBB REG right side (mababang row)\n\ntickets upper box a philippine are… https://t.co/VFS4UhqcJ1
## 1271                                @yupsheskitten I deserve to see Seventeen po because I've been their fan since I was in Grade 8 and they become my… https://t.co/Vm839M4vSf
## 1272                         WTS / LFB \n₱𝟮𝟬𝟬.𝟬𝟬 each\n\n- ATTACCA Weverse POB PC + Pouch\nexcept The8\n- ATTACCA Album PC\nJoshua Woozi Vernon\n- POL… https://t.co/nOnYsgjoV3
## 1273                               @yupsheskitten I deserve this because I want to them happy and enjoying the vibe with our filo carats and I want to… https://t.co/kZrkn09hel
## 1274                               @miss_svtmafia @pledis_17 @bobgyul I've been a fan of seventeen since adore you. they gave me comfort and a sense o… https://t.co/e2mNUqVp4Y
## 1275                                                                                                                                                 see you later seventeen :)
## 1276                        If you see this, you're required to list your top 10 groups:\n\n1. seventeen\n2. svt\n3. 7teen \n4. 17 \n5. on yedi \n6. s… https://t.co/HpNnox50vV
## 1277                           Hello baka po may interested\n\n(1) LBB PREMIUM Section 209\nBe The Sun in Bulacan Concert Ticket\n10k po or pwede pa p… https://t.co/BLVuzI3WwZ
## 1278                               At seventeen I started to starve myself. I thought that love was a kind of emptiness. And at least I understood the… https://t.co/y3MdrW9FFC
## 1279                                crying because i won't be seeing seventeen tomorrow 💔 goodluck sa lahat ng carats na makakapunta. make their first… https://t.co/ZMEaS4nxZ8
## 1280                               @yupsheskitten I deserve to see #SEVENTEEN in #BeTSinBULACAN bc I really want to support them live and makadagdag t… https://t.co/YenDZz35bz
## 1281               1. nct127 &amp; ateez\n2. stray kids\n3. bts\n4. seventeen \n5. nct dream \n6. wayv\n7. p1harmony \n8. enhypen\n9. txt &amp; the bo… https://t.co/GrLczBf3Vd
## 1282                               @yupsheskitten I deserve to feel that peace and joy by spending a wonderful experience and milestone with one of th… https://t.co/rhjwYj9hiU
## 1283                               @yupsheskitten Seventeen has always been my home, my comfort and my happy pill, they saved me in more ways than I c… https://t.co/mkcNqkxhMu
## 1284                                                                                                              Seventeen-year-old boy beliefs. It could take time to\ngoolak
## 1285                                 sorry if ur living and ur seventeen\n      im\n\nsorry if ur living and ur seventeen\n                   im sorry… https://t.co/5rSM6FRuAA
## 1286                                                                                                                                                   @siriusnamjoon Seventeen
## 1287                                                                                                          This hour's ancient makes two used Cattles every seventeen weeks.
## 1288                             Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wa… https://t.co/WOHn2bw68D
## 1289                               Meet Seventeen Voices of the Year honoree Cameron Samuels! 🎙Cameron led a powerful movement against censorship in t… https://t.co/pECD1AuknV
## 1290                                                                                                                              i just love seventeen so much i have no words
## 1291                         @hseokmine olha eu\ntxt: soobin\nbts: nao tneho\nenhypen: jungwon 😡\nstray kids: jisung e bangchan\nseventeen: vernon\nne… https://t.co/q4gPtxdIPq
## 1292                          Today's SigTor Spotlight: Tekamah, NE\n\n• Date: May 1, 1930\n• Rated: (Estimated) F4\n  — Windspeed: 207-260 mph\n• Pat… https://t.co/FoaHjncQlW
## 1293                               @yupsheskitten I've been a fan of seventeen since adore you. they gave me comfort and a sense of belonging. it's th… https://t.co/ZEnR8fGXYw
## 1294                     - ateez\n- seventeen\n- nct dream\n- shinee\n- exid\n- vixx\n- a.c.e\n- block b\n- kard\n- exo\nin no particular order becaus… https://t.co/HUg8ZVOkMa
## 1295                                    WTS / LFB \n₱𝟭𝟮𝟬.𝟬𝟬 each\n\n- 2021 Seasons Greetings Seventeen\n\n#BeTheSuninBULACAN #BeTSinBulacan #SEVENTEEN… https://t.co/6v8S0BhbLD
## 1296                                @yupsheskitten I want Seventeen to my first concert experience ❤️. And also this will act as my gift because I just… https://t.co/tFOBH7qndN
## 1297                               @yupsheskitten I deserve to see SEVENTEEN because I've been a fan for 7 years and I haven't met them. Also SEVENTEE… https://t.co/ohlPLOerjX
## 1298                               @yupsheskitten i deserve to see svt since i supported through any means and the way i can. i want to see them perfo… https://t.co/8LZMGJ7TA6
## 1299                         WTS / LFB \n₱𝟭𝟬𝟬.𝟬𝟬 each\n\n- Vernon HENGGARAE PC\n- Mingyu Dicon Magazine 2018 PC\n- HOSPITAL PLAYLIST\nWoozi DK Seungkw… https://t.co/aKnG9WZ8Wv
## 1300                                @yupsheskitten lahat po kami deserve makita svt huhu pero this would be the best birthday gift if i ever won po, i… https://t.co/d1xkchBWI6
## 1301                               @yupsheskitten seventeen has been my comfort ever since i discover them, so seeing them or hearing them live perfor… https://t.co/AKwqgNBdNx
## 1302                                @yupsheskitten Seventeen is my light. They helped me and they were the reason why I'm still standing rn. I want to… https://t.co/pQ4D4N54h3
## 1303                        WTS / LFB \n₱𝟴𝟬.𝟬𝟬 each\n\n- ATTACCA Carat Ver\nJoshua Jun Vernon Dino\n- OTY Polacard\nJun Vernon\n\n(dont mind prices on… https://t.co/shXjcwkG2j
## 1304                               @yupsheskitten I want to see the people who inspired me to do better every day. Also, I want to be part of the most… https://t.co/dT90BJKdOD
## 1305                                                         Honorable Mentions Pt. 2:\n\n1._WORLD by SEVENTEEN\n2. Ring Ding Dong by SHINee\n3. Dear My Winter by Chuu, george
## 1306                               @miss_svtmafia @pledis_17 @bobgyul this is actually for my friend. She introduced me to seventeen and we promised t… https://t.co/y1vOIez53f
## 1307                               @miss_svtmafia @pledis_17 Everyday, my sister locks herself up inside her room to study while Seventeen’s song is o… https://t.co/nRU4Ssw0mf
## 1308                               @yupsheskitten I wish every carats can see them but I wish to win this GA not for me solely but for my daughter. Sh… https://t.co/FDotFhRPmJ
## 1309                                              anyone who wants their names written for tomorrow? i still can have more :) #BeTSinBULACAN #SEVENTEEN https://t.co/WcMnM1HTzi
## 1310                               @yupsheskitten i really want to see seventeen. im so sad that there’s a low chance left of me being able to see the… https://t.co/th8stJGsK3
## 1311                               @miss_svtmafia @pledis_17 @bobgyul WANT TO SEE SEVENTEEN AND IWANT TO HEAR THEM SING LIVE THEY'RE THE REASON WHY IM… https://t.co/I2BY3RLHPJ
## 1312                                                                                                                              @dre_seventeen @shuasmwah I don't flirt wth😭😭
## 1313                                                                                                           @tanyakanrl HAPPY SWEET SEVENTEEN SENDER https://t.co/CEW9E6AnJp
## 1314                         ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see… https://t.co/t8nSd3VAHz
## 1315                               @miss_svtmafia @pledis_17 @bobgyul As a 5-year carat, an OG kpop stan, a graduating engineering working student, an… https://t.co/vYuLhOXQT5
## 1316                               petition for kpop groups to come to south africa 🙏🏾 the most streamed groups in south africa are bts, blackpink, tw… https://t.co/PSuKbZaz3t
## 1317                       WTS / LFB \n₱𝟱𝟬.𝟬𝟬 each\n\n- FACE THE SUN Postcards\nWoozi The8 Dino\n- 6th Caratland TC\n- Mingyu 3RD GEN PC\n\n(dont mind… https://t.co/7svS4zCgcc
## 1318                                                                                                                                      SEVENTEEN!!!! https://t.co/JxQI4OUNEq
## 1319                                                 just two besties looking at each others 🍓💌\n#CaratSelcaDay #CSD #DK #seokmin #seventeen @pledis_17 https://t.co/NbmKXvlMZd
## 1320                                                                                                                                                   I miss seventeen so much
## 1321                               @miss_svtmafia @pledis_17 @bobgyul Joining a GA for the nth time, no matter what time na HAHAHAHA hindi susukuan. P… https://t.co/mWFX5XHBo8
## 1322                                                                                               i’m trying to help my irl stan seventeen but i don’t even know the members 😭
## 1323              @dwersy Bts\nAteez\nSkz\nTwice\nItzy\nMamamoo\nAespa\nGidle\nExo\nNct\nRed Velvet\nTxt\nEnhypen\nEverglow\nKard\nAstro\nGot7\nLee Se… https://t.co/3jXQ51XQMS
## 1324                   wts lfb ph \n\nhanabi instant photo \n\noption: \n1st pic - ₱1,750 (5 pola)\n2nd &amp; 3rd pic - ₱1,050 (3 pola)\n\n— can tingi… https://t.co/0x8S86cOvn
## 1325                                                       Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits https://t.co/GVGhydnzcS
## 1326                              For whoever is going to the seventeen concert tomorrow:\nHAVE FUN AND ENJOY YOURSELF!! TC OF THE BOYS AS WELL PLS DO… https://t.co/JTaXbsGa41
## 1327                     wts lfb Be The Sun Bulacan ph\n\nSoundcheck A ⦅qn:3××⦆\n\n💡meet up & cash only \n\nLet's meet at the venue on the day. \np… https://t.co/wdB0Uexhkx
## 1328                           @starfess BTS: just one day, \nBLACKPINK: lovesick girls\nTWICE: feel special\nNEWJEANS: hype boy, hurt\nLESSERAFIM: go… https://t.co/D4Em1YXrnR
## 1329                                @miss_svtmafia @pledis_17 @bobgyul I don't know why I should win... Eme. But honestly, I do believe that I deserve… https://t.co/HimYNdZAIt
## 1330                                                                                                                                    @marinalyrical Seventeen. Oh seventeen.
## 1331                         wts lfb ph \n\nbets in bul ubc prem ticket 417 row 121 \n- 2.9k meet up sa ph arena\n\ndm \n\n#BeTheSuninBULACAN\n#BeTSinBULACAN seventeen svt tix
## 1332                               @miss_svtmafia @pledis_17 @bobgyul I wish every carats can see them but I wish to win this GA not for me solely but… https://t.co/Tv0vdzacEW
## 1333                               Later on, I learned that seventeen volcanoes erupted simultaneously that day, taking an untold number of lives. I o… https://t.co/ZBjqpSMLtc
## 1334                                                                                                                            wts lfb seventeen pc ph https://t.co/elLmZfxVON
## 1335                                @miss_svtmafia @pledis_17 I want to see SEVENTEEN live. I'm a huge fan of them and their music. They're one of the… https://t.co/EqjXh2LAtC
## 1336                         wts lfb vernon ph \n\npob pc - ₱300 ea\nattacca op3 - ₱100\n\n— free scc pc if getting all (₱1.6k) \n— can meet later (ar… https://t.co/uK8FL3dC3a
## 1337                               @miss_svtmafia @pledis_17 @bobgyul I should win po because I really want to attend the concert of Seventeen and I r… https://t.co/0RgUMNF6io
## 1338                         wts lfb ph\n\njun pc set - ₱500\n\n— can meet up sa bets bulacan (around afternoon pa dating namin)\n— mod: sco/jnt\n\n##… https://t.co/ActYl73dnw
## 1339                                                                                                  DDAYYY!!!!!\n#12172022\n#BeTSinBULACAN \n#SEVENTEEN \n#AngSebongAySumapit
## 1340                                                                                                                           @putadejeongyeon the8 seventeen heeseung enhypen
## 1341                           wts lfb ph \n\nattacca op3 - ₱100 ea\ncaratland memory book - ₱90 ea\n\n— can meet up sa bets bulacan (around afternoon… https://t.co/Dv7IMxPtFw
## 1342                                   Hi, I will be giving away paper goods, printed salonpas patches, snacks, and official SVT merch as freebies for… https://t.co/wFS3c1rXQj
## 1343                               @miss_svtmafia @pledis_17 @bobgyul bcs this will serve as a reward for myself for not giving up bcs svt said "there… https://t.co/5bA0bJtSio
## 1344                                                       9 and seventeen doubtful readings, with only that innat  SH9b #推特粉丝 #刷粉平台 #推特买粉  https://t.co/lRlou7Jsgg
## 1345                                      WONWOO SEVENTEEN DREAM JAPAN 1ST EP Lucky Draw Tower Records Official Photo card https://t.co/WX19uk1tq4 eBay https://t.co/vFIe7Gn80o
## 1346                                                                                                                                          seventeen https://t.co/YJ4794qnMs
## 1347                           wts lfb ph\n\nface the sun shopee fs pob pc - ₱300 ea \n\n— can meet up sa bets bulacan (around afternoon pa dating nam… https://t.co/3sXEXgrH8H
## 1348                      wts lfb ph\n\ncarat ver heart - ₱80\nattacca op3 - ₱100\ncaratland memory book - ₱90 \nin the soop &amp; gose - ₱200 (2 pcs)… https://t.co/R4py7Eynst
## 1349                                            1-Bts\n2-Seventeen\n3-Twice\n4-G-idle\n5-P1harmony (yeni🥺)\n6-Ateez\n7-Aespa\n8-Txt\n9-Mamamoo \n10-Idk https://t.co/d9jmfqiH9a
## 1350                           wts lfb ph \n\nsector17 compact version unsealed album complete inclusions set - ₱600 \n\n— can meet up sa bets bulacan… https://t.co/X4Jw6KNw1o
## 1351                                                             @tanyakanrl haiii helloo, happy sweet seventeen yaa nder, may God always bless uuu, bahagia terus yaaa kamu 😻💐
## 1352                                                                                                                           @tanyakanrl HAPPY SWEET SEVENTEEN SENDERR!!!!❤️❤️❤️
## 1353                          wts lfb ph \n\nassorted pc and tc - ₱50 ea\n\n— can meet up sa bets bulacan (around afternoon pa dating namin)\n— mod: s… https://t.co/iactmOg4wi
## 1354                               @jeffreysomers Yep. Had a similar experience with a melted ham and cheese sandwich when I was seventeen. To this da… https://t.co/rXPGQStsLp
## 1355                                @miss_svtmafia @pledis_17 @bobgyul I want Seventeen to my first concert experience ❤️. And also this will act as my… https://t.co/WKQe5XIyTG
## 1356                           wts lfb ph \n\nsector17 new heights unsealed album complete inclusions set - ₱600 \n\n— can meet up sa bets bulacan (ar… https://t.co/v0Mjlo9B6J
## 1357                                         i stand by shinee's marry you feeling soooo much like a seventeen song... specifically an ode because it would fit perfectly there
## 1358                                                                                                                           Like father like son huh https://t.co/GYfG8i7Tmw
## 1359                                                Supper Excited for to tomorrow’s magnet event \n\n#SEVENTEENinBulacan #BeTheSuninBULACAN #SEVENTEEN https://t.co/oGUebrCnOK
## 1360                        @dwersy Herkes denemiş bende denicem bi dakka sjxnfkslxmdmöx\nBts\nBlackpink\nRed Velvet\nStray kids\nMamamoo\nGidle\nAesp… https://t.co/wt3GgiH0uJ
## 1361                               @miss_svtmafia @pledis_17 Everyone deserve to see seventeen and that includes me. I should win because no matter ho… https://t.co/FLFSJmKXSk
## 1362                         wts lfb ph\n\nwonwoo trading card \n\nvernon wonwoo - ₱60\n\n— can meet up sa bets bulacan (around afternoon pa dating na… https://t.co/JiVFWLPGCE
## 1363                          Bestie indeed.\n\nI wonder if Vernon commented anything on Kino’s solo Pose?\n\n#SEVENTEEN @pledis_17 #세븐틴 #SVT_Dream… https://t.co/NJl3Zvdfaz
## 1364                           wts lfb ph \n\nseventeen caratland id card set tingi - ₱70 ea, get all for ₱250\n\n— can meet up sa bets bul (around af… https://t.co/wmt3qaqbFS
## 1365                               @miss_svtmafia @pledis_17 @bobgyul Seventeen has always been my home, my comfort and my happy pill, they saved me i… https://t.co/B7fC7q8I9S
## 1366                               @miss_svtmafia @pledis_17 @bobgyul I want to see them happy that together with us  CARAT and I want to see them enj… https://t.co/FgfbYAfKyi
## 1367                                 Prolly the same amount of research I do for work ‘Top svt ships’ and just went with the top answer \n\n@pledis_17… https://t.co/ccH1cNa9bg
## 1368                                                                        My babies 😭😭😭 💜💜💜 #JUN #THE8 #준 #디에잇 #SEVENTEEN https://t.co/JjYgI0GNnK https://t.co/ccISyDrHHe
## 1369                          wts lfb ph \n\npolaroid instax printing services - ₱50 php per film | ₱47 if 10+\n\n— real instax pola\n— can use for fr… https://t.co/A2xBJuUNzd
## 1370                                            @tanyakanrl happy sweet seventeen nder🥳\ni hope you are always healthy, live long, happy, and surrounded by good people, wyatb💐
## 1371                               @isocrime this is SO PAINFULLY ACCURATE . “you know they leave me there to die, but it’s okay. i’m just think about… https://t.co/iHVGnp0LNN
## 1372                                @miss_svtmafia @pledis_17 @bobgyul i hope to relive live the comfort seventeen have gave me the first time i heard… https://t.co/0K5YKDDJPW
## 1373                                                                                                                                             spending dec 17 with seventeen
## 1374                                                              See you when I see you ✨\n\n#CaratSelcaDay #CSD #WONWOO #HOSHI #SEVENTEEN @pledis_17 https://t.co/969f8ZGk5o
##                  created isRetweet    Created_At_Round
## 1    2022-12-16 23:59:39     FALSE 2022-12-17 00:00:00
## 2    2022-12-16 23:59:19     FALSE 2022-12-17 00:00:00
## 3    2022-12-16 23:59:09     FALSE 2022-12-17 00:00:00
## 4    2022-12-16 23:58:32     FALSE 2022-12-17 00:00:00
## 5    2022-12-16 23:58:16     FALSE 2022-12-17 00:00:00
## 6    2022-12-16 23:58:03     FALSE 2022-12-17 00:00:00
## 7    2022-12-16 23:57:49     FALSE 2022-12-17 00:00:00
## 8    2022-12-16 23:57:01     FALSE 2022-12-17 00:00:00
## 9    2022-12-16 23:56:06     FALSE 2022-12-17 00:00:00
## 10   2022-12-16 23:56:01     FALSE 2022-12-17 00:00:00
## 11   2022-12-16 23:55:49     FALSE 2022-12-17 00:00:00
## 12   2022-12-16 23:55:33     FALSE 2022-12-17 00:00:00
## 13   2022-12-16 23:55:30     FALSE 2022-12-17 00:00:00
## 14   2022-12-16 23:55:23     FALSE 2022-12-17 00:00:00
## 15   2022-12-16 23:55:12     FALSE 2022-12-17 00:00:00
## 16   2022-12-16 23:55:06     FALSE 2022-12-17 00:00:00
## 17   2022-12-16 23:55:03     FALSE 2022-12-17 00:00:00
## 18   2022-12-16 23:55:03     FALSE 2022-12-17 00:00:00
## 19   2022-12-16 23:54:54     FALSE 2022-12-17 00:00:00
## 20   2022-12-16 23:54:42     FALSE 2022-12-17 00:00:00
## 21   2022-12-16 23:54:13     FALSE 2022-12-17 00:00:00
## 22   2022-12-16 23:53:47     FALSE 2022-12-17 00:00:00
## 23   2022-12-16 23:53:39     FALSE 2022-12-17 00:00:00
## 24   2022-12-16 23:53:24     FALSE 2022-12-17 00:00:00
## 25   2022-12-16 23:53:15     FALSE 2022-12-17 00:00:00
## 26   2022-12-16 23:53:10     FALSE 2022-12-17 00:00:00
## 27   2022-12-16 23:53:09     FALSE 2022-12-17 00:00:00
## 28   2022-12-16 23:53:09     FALSE 2022-12-17 00:00:00
## 29   2022-12-16 23:53:07     FALSE 2022-12-17 00:00:00
## 30   2022-12-16 23:52:57     FALSE 2022-12-17 00:00:00
## 31   2022-12-16 23:52:56     FALSE 2022-12-17 00:00:00
## 32   2022-12-16 23:52:54     FALSE 2022-12-17 00:00:00
## 33   2022-12-16 23:52:43     FALSE 2022-12-17 00:00:00
## 34   2022-12-16 23:52:41     FALSE 2022-12-17 00:00:00
## 35   2022-12-16 23:52:31     FALSE 2022-12-17 00:00:00
## 36   2022-12-16 23:52:05     FALSE 2022-12-17 00:00:00
## 37   2022-12-16 23:51:47     FALSE 2022-12-17 00:00:00
## 38   2022-12-16 23:51:29     FALSE 2022-12-17 00:00:00
## 39   2022-12-16 23:51:05     FALSE 2022-12-17 00:00:00
## 40   2022-12-16 23:51:03     FALSE 2022-12-17 00:00:00
## 41   2022-12-16 23:51:00     FALSE 2022-12-17 00:00:00
## 42   2022-12-16 23:50:50     FALSE 2022-12-17 00:00:00
## 43   2022-12-16 23:50:47     FALSE 2022-12-17 00:00:00
## 44   2022-12-16 23:50:38     FALSE 2022-12-17 00:00:00
## 45   2022-12-16 23:50:28     FALSE 2022-12-17 00:00:00
## 46   2022-12-16 23:50:22     FALSE 2022-12-17 00:00:00
## 47   2022-12-16 23:50:21     FALSE 2022-12-17 00:00:00
## 48   2022-12-16 23:50:17     FALSE 2022-12-17 00:00:00
## 49   2022-12-16 23:49:53     FALSE 2022-12-17 00:00:00
## 50   2022-12-16 23:49:50     FALSE 2022-12-17 00:00:00
## 51   2022-12-16 23:49:31     FALSE 2022-12-17 00:00:00
## 52   2022-12-16 23:49:30     FALSE 2022-12-17 00:00:00
## 53   2022-12-16 23:49:29     FALSE 2022-12-17 00:00:00
## 54   2022-12-16 23:49:22     FALSE 2022-12-17 00:00:00
## 55   2022-12-16 23:49:16     FALSE 2022-12-17 00:00:00
## 56   2022-12-16 23:49:04     FALSE 2022-12-17 00:00:00
## 57   2022-12-16 23:48:57     FALSE 2022-12-17 00:00:00
## 58   2022-12-16 23:48:24     FALSE 2022-12-17 00:00:00
## 59   2022-12-16 23:48:23     FALSE 2022-12-17 00:00:00
## 60   2022-12-16 23:48:13     FALSE 2022-12-17 00:00:00
## 61   2022-12-16 23:48:11     FALSE 2022-12-17 00:00:00
## 62   2022-12-16 23:47:01     FALSE 2022-12-17 00:00:00
## 63   2022-12-16 23:46:56     FALSE 2022-12-17 00:00:00
## 64   2022-12-16 23:46:53     FALSE 2022-12-17 00:00:00
## 65   2022-12-16 23:46:25     FALSE 2022-12-17 00:00:00
## 66   2022-12-16 23:46:19     FALSE 2022-12-17 00:00:00
## 67   2022-12-16 23:45:57     FALSE 2022-12-17 00:00:00
## 68   2022-12-16 23:45:45     FALSE 2022-12-17 00:00:00
## 69   2022-12-16 23:45:39     FALSE 2022-12-17 00:00:00
## 70   2022-12-16 23:45:29     FALSE 2022-12-17 00:00:00
## 71   2022-12-16 23:44:36     FALSE 2022-12-17 00:00:00
## 72   2022-12-16 23:44:19     FALSE 2022-12-17 00:00:00
## 73   2022-12-16 23:42:57     FALSE 2022-12-17 00:00:00
## 74   2022-12-16 23:42:52     FALSE 2022-12-17 00:00:00
## 75   2022-12-16 23:42:48     FALSE 2022-12-17 00:00:00
## 76   2022-12-16 23:42:25     FALSE 2022-12-17 00:00:00
## 77   2022-12-16 23:42:06     FALSE 2022-12-17 00:00:00
## 78   2022-12-16 23:41:37     FALSE 2022-12-17 00:00:00
## 79   2022-12-16 23:41:37     FALSE 2022-12-17 00:00:00
## 80   2022-12-16 23:41:31     FALSE 2022-12-17 00:00:00
## 81   2022-12-16 23:41:19     FALSE 2022-12-17 00:00:00
## 82   2022-12-16 23:41:10     FALSE 2022-12-17 00:00:00
## 83   2022-12-16 23:41:05     FALSE 2022-12-17 00:00:00
## 84   2022-12-16 23:41:04     FALSE 2022-12-17 00:00:00
## 85   2022-12-16 23:39:52     FALSE 2022-12-17 00:00:00
## 86   2022-12-16 23:39:42     FALSE 2022-12-17 00:00:00
## 87   2022-12-16 23:39:34     FALSE 2022-12-17 00:00:00
## 88   2022-12-16 23:39:14     FALSE 2022-12-17 00:00:00
## 89   2022-12-16 23:39:11     FALSE 2022-12-17 00:00:00
## 90   2022-12-16 23:39:07     FALSE 2022-12-17 00:00:00
## 91   2022-12-16 23:39:01     FALSE 2022-12-17 00:00:00
## 92   2022-12-16 23:38:55     FALSE 2022-12-17 00:00:00
## 93   2022-12-16 23:38:52     FALSE 2022-12-17 00:00:00
## 94   2022-12-16 23:38:38     FALSE 2022-12-17 00:00:00
## 95   2022-12-16 23:37:06     FALSE 2022-12-17 00:00:00
## 96   2022-12-16 23:37:05     FALSE 2022-12-17 00:00:00
## 97   2022-12-16 23:37:00     FALSE 2022-12-17 00:00:00
## 98   2022-12-16 23:36:53     FALSE 2022-12-17 00:00:00
## 99   2022-12-16 23:36:34     FALSE 2022-12-17 00:00:00
## 100  2022-12-16 23:36:32     FALSE 2022-12-17 00:00:00
## 101  2022-12-16 23:36:21     FALSE 2022-12-17 00:00:00
## 102  2022-12-16 23:35:39     FALSE 2022-12-17 00:00:00
## 103  2022-12-16 23:34:43     FALSE 2022-12-17 00:00:00
## 104  2022-12-16 23:34:26     FALSE 2022-12-17 00:00:00
## 105  2022-12-16 23:34:07     FALSE 2022-12-17 00:00:00
## 106  2022-12-16 23:34:05     FALSE 2022-12-17 00:00:00
## 107  2022-12-16 23:34:04     FALSE 2022-12-17 00:00:00
## 108  2022-12-16 23:33:47     FALSE 2022-12-17 00:00:00
## 109  2022-12-16 23:33:01     FALSE 2022-12-17 00:00:00
## 110  2022-12-16 23:33:01     FALSE 2022-12-17 00:00:00
## 111  2022-12-16 23:32:37     FALSE 2022-12-17 00:00:00
## 112  2022-12-16 23:32:33     FALSE 2022-12-17 00:00:00
## 113  2022-12-16 23:32:20     FALSE 2022-12-17 00:00:00
## 114  2022-12-16 23:32:04     FALSE 2022-12-17 00:00:00
## 115  2022-12-16 23:31:24     FALSE 2022-12-17 00:00:00
## 116  2022-12-16 23:31:17     FALSE 2022-12-17 00:00:00
## 117  2022-12-16 23:31:02     FALSE 2022-12-17 00:00:00
## 118  2022-12-16 23:30:53     FALSE 2022-12-17 00:00:00
## 119  2022-12-16 23:30:40     FALSE 2022-12-17 00:00:00
## 120  2022-12-16 23:30:18     FALSE 2022-12-17 00:00:00
## 121  2022-12-16 23:29:52     FALSE 2022-12-16 23:00:00
## 122  2022-12-16 23:29:28     FALSE 2022-12-16 23:00:00
## 123  2022-12-16 23:29:17     FALSE 2022-12-16 23:00:00
## 124  2022-12-16 23:29:00     FALSE 2022-12-16 23:00:00
## 125  2022-12-16 23:28:54     FALSE 2022-12-16 23:00:00
## 126  2022-12-16 23:28:39     FALSE 2022-12-16 23:00:00
## 127  2022-12-16 23:28:34     FALSE 2022-12-16 23:00:00
## 128  2022-12-16 23:28:28     FALSE 2022-12-16 23:00:00
## 129  2022-12-16 23:27:59     FALSE 2022-12-16 23:00:00
## 130  2022-12-16 23:27:35     FALSE 2022-12-16 23:00:00
## 131  2022-12-16 23:27:33     FALSE 2022-12-16 23:00:00
## 132  2022-12-16 23:27:30     FALSE 2022-12-16 23:00:00
## 133  2022-12-16 23:27:11     FALSE 2022-12-16 23:00:00
## 134  2022-12-16 23:27:09     FALSE 2022-12-16 23:00:00
## 135  2022-12-16 23:26:18     FALSE 2022-12-16 23:00:00
## 136  2022-12-16 23:25:48     FALSE 2022-12-16 23:00:00
## 137  2022-12-16 23:24:33     FALSE 2022-12-16 23:00:00
## 138  2022-12-16 23:24:30     FALSE 2022-12-16 23:00:00
## 139  2022-12-16 23:24:17     FALSE 2022-12-16 23:00:00
## 140  2022-12-16 23:23:58     FALSE 2022-12-16 23:00:00
## 141  2022-12-16 23:23:54     FALSE 2022-12-16 23:00:00
## 142  2022-12-16 23:23:53     FALSE 2022-12-16 23:00:00
## 143  2022-12-16 23:23:32     FALSE 2022-12-16 23:00:00
## 144  2022-12-16 23:23:24     FALSE 2022-12-16 23:00:00
## 145  2022-12-16 23:22:38     FALSE 2022-12-16 23:00:00
## 146  2022-12-16 23:22:24     FALSE 2022-12-16 23:00:00
## 147  2022-12-16 23:22:20     FALSE 2022-12-16 23:00:00
## 148  2022-12-16 23:22:19     FALSE 2022-12-16 23:00:00
## 149  2022-12-16 23:22:17     FALSE 2022-12-16 23:00:00
## 150  2022-12-16 23:22:04     FALSE 2022-12-16 23:00:00
## 151  2022-12-16 23:22:04     FALSE 2022-12-16 23:00:00
## 152  2022-12-16 23:22:03     FALSE 2022-12-16 23:00:00
## 153  2022-12-16 23:21:25     FALSE 2022-12-16 23:00:00
## 154  2022-12-16 23:21:11     FALSE 2022-12-16 23:00:00
## 155  2022-12-16 23:20:41     FALSE 2022-12-16 23:00:00
## 156  2022-12-16 23:20:40     FALSE 2022-12-16 23:00:00
## 157  2022-12-16 23:20:40     FALSE 2022-12-16 23:00:00
## 158  2022-12-16 23:20:29     FALSE 2022-12-16 23:00:00
## 159  2022-12-16 23:20:27     FALSE 2022-12-16 23:00:00
## 160  2022-12-16 23:20:14     FALSE 2022-12-16 23:00:00
## 161  2022-12-16 23:20:02     FALSE 2022-12-16 23:00:00
## 162  2022-12-16 23:19:59     FALSE 2022-12-16 23:00:00
## 163  2022-12-16 23:19:48     FALSE 2022-12-16 23:00:00
## 164  2022-12-16 23:19:39     FALSE 2022-12-16 23:00:00
## 165  2022-12-16 23:19:26     FALSE 2022-12-16 23:00:00
## 166  2022-12-16 23:19:16     FALSE 2022-12-16 23:00:00
## 167  2022-12-16 23:19:00     FALSE 2022-12-16 23:00:00
## 168  2022-12-16 23:18:52     FALSE 2022-12-16 23:00:00
## 169  2022-12-16 23:18:48     FALSE 2022-12-16 23:00:00
## 170  2022-12-16 23:18:39     FALSE 2022-12-16 23:00:00
## 171  2022-12-16 23:18:31     FALSE 2022-12-16 23:00:00
## 172  2022-12-16 23:18:27     FALSE 2022-12-16 23:00:00
## 173  2022-12-16 23:18:22     FALSE 2022-12-16 23:00:00
## 174  2022-12-16 23:18:05     FALSE 2022-12-16 23:00:00
## 175  2022-12-16 23:17:23     FALSE 2022-12-16 23:00:00
## 176  2022-12-16 23:17:16     FALSE 2022-12-16 23:00:00
## 177  2022-12-16 23:17:16     FALSE 2022-12-16 23:00:00
## 178  2022-12-16 23:17:02     FALSE 2022-12-16 23:00:00
## 179  2022-12-16 23:16:21     FALSE 2022-12-16 23:00:00
## 180  2022-12-16 23:16:20     FALSE 2022-12-16 23:00:00
## 181  2022-12-16 23:15:59     FALSE 2022-12-16 23:00:00
## 182  2022-12-16 23:15:33     FALSE 2022-12-16 23:00:00
## 183  2022-12-16 23:14:34     FALSE 2022-12-16 23:00:00
## 184  2022-12-16 23:14:18     FALSE 2022-12-16 23:00:00
## 185  2022-12-16 23:13:48     FALSE 2022-12-16 23:00:00
## 186  2022-12-16 23:13:48     FALSE 2022-12-16 23:00:00
## 187  2022-12-16 23:13:43     FALSE 2022-12-16 23:00:00
## 188  2022-12-16 23:13:37     FALSE 2022-12-16 23:00:00
## 189  2022-12-16 23:12:59     FALSE 2022-12-16 23:00:00
## 190  2022-12-16 23:12:58     FALSE 2022-12-16 23:00:00
## 191  2022-12-16 23:12:52     FALSE 2022-12-16 23:00:00
## 192  2022-12-16 23:12:36     FALSE 2022-12-16 23:00:00
## 193  2022-12-16 23:10:14     FALSE 2022-12-16 23:00:00
## 194  2022-12-16 23:10:04     FALSE 2022-12-16 23:00:00
## 195  2022-12-16 23:10:00     FALSE 2022-12-16 23:00:00
## 196  2022-12-16 23:09:42     FALSE 2022-12-16 23:00:00
## 197  2022-12-16 23:09:36     FALSE 2022-12-16 23:00:00
## 198  2022-12-16 23:09:31     FALSE 2022-12-16 23:00:00
## 199  2022-12-16 23:09:06     FALSE 2022-12-16 23:00:00
## 200  2022-12-16 23:08:55     FALSE 2022-12-16 23:00:00
## 201  2022-12-16 23:07:12     FALSE 2022-12-16 23:00:00
## 202  2022-12-16 23:07:08     FALSE 2022-12-16 23:00:00
## 203  2022-12-16 23:06:58     FALSE 2022-12-16 23:00:00
## 204  2022-12-16 23:06:38     FALSE 2022-12-16 23:00:00
## 205  2022-12-16 23:06:06     FALSE 2022-12-16 23:00:00
## 206  2022-12-16 23:05:52     FALSE 2022-12-16 23:00:00
## 207  2022-12-16 23:05:29     FALSE 2022-12-16 23:00:00
## 208  2022-12-16 23:05:26     FALSE 2022-12-16 23:00:00
## 209  2022-12-16 23:05:00     FALSE 2022-12-16 23:00:00
## 210  2022-12-16 23:04:32     FALSE 2022-12-16 23:00:00
## 211  2022-12-16 23:04:08     FALSE 2022-12-16 23:00:00
## 212  2022-12-16 23:04:08     FALSE 2022-12-16 23:00:00
## 213  2022-12-16 23:03:55     FALSE 2022-12-16 23:00:00
## 214  2022-12-16 23:03:31     FALSE 2022-12-16 23:00:00
## 215  2022-12-16 23:01:36     FALSE 2022-12-16 23:00:00
## 216  2022-12-16 23:01:08     FALSE 2022-12-16 23:00:00
## 217  2022-12-16 23:01:07     FALSE 2022-12-16 23:00:00
## 218  2022-12-16 23:01:05     FALSE 2022-12-16 23:00:00
## 219  2022-12-16 23:00:53     FALSE 2022-12-16 23:00:00
## 220  2022-12-16 23:00:49     FALSE 2022-12-16 23:00:00
## 221  2022-12-16 23:00:32     FALSE 2022-12-16 23:00:00
## 222  2022-12-16 23:00:05     FALSE 2022-12-16 23:00:00
## 223  2022-12-16 23:00:04     FALSE 2022-12-16 23:00:00
## 224  2022-12-16 23:00:02     FALSE 2022-12-16 23:00:00
## 225  2022-12-16 23:00:01     FALSE 2022-12-16 23:00:00
## 226  2022-12-16 23:00:01     FALSE 2022-12-16 23:00:00
## 227  2022-12-16 23:00:00     FALSE 2022-12-16 23:00:00
## 228  2022-12-16 22:59:51     FALSE 2022-12-16 23:00:00
## 229  2022-12-16 22:59:44     FALSE 2022-12-16 23:00:00
## 230  2022-12-16 22:59:37     FALSE 2022-12-16 23:00:00
## 231  2022-12-16 22:59:28     FALSE 2022-12-16 23:00:00
## 232  2022-12-16 22:59:24     FALSE 2022-12-16 23:00:00
## 233  2022-12-16 22:59:03     FALSE 2022-12-16 23:00:00
## 234  2022-12-16 22:58:59     FALSE 2022-12-16 23:00:00
## 235  2022-12-16 22:58:46     FALSE 2022-12-16 23:00:00
## 236  2022-12-16 22:58:33     FALSE 2022-12-16 23:00:00
## 237  2022-12-16 22:58:24     FALSE 2022-12-16 23:00:00
## 238  2022-12-16 22:58:11     FALSE 2022-12-16 23:00:00
## 239  2022-12-16 22:58:10     FALSE 2022-12-16 23:00:00
## 240  2022-12-16 22:57:33     FALSE 2022-12-16 23:00:00
## 241  2022-12-16 22:57:15     FALSE 2022-12-16 23:00:00
## 242  2022-12-16 22:57:02     FALSE 2022-12-16 23:00:00
## 243  2022-12-16 22:56:51     FALSE 2022-12-16 23:00:00
## 244  2022-12-16 22:56:41     FALSE 2022-12-16 23:00:00
## 245  2022-12-16 22:56:11     FALSE 2022-12-16 23:00:00
## 246  2022-12-16 22:56:00     FALSE 2022-12-16 23:00:00
## 247  2022-12-16 22:55:30     FALSE 2022-12-16 23:00:00
## 248  2022-12-16 22:55:16     FALSE 2022-12-16 23:00:00
## 249  2022-12-16 22:54:44     FALSE 2022-12-16 23:00:00
## 250  2022-12-16 22:54:37     FALSE 2022-12-16 23:00:00
## 251  2022-12-16 22:54:27     FALSE 2022-12-16 23:00:00
## 252  2022-12-16 22:54:09     FALSE 2022-12-16 23:00:00
## 253  2022-12-16 22:54:07     FALSE 2022-12-16 23:00:00
## 254  2022-12-16 22:53:57     FALSE 2022-12-16 23:00:00
## 255  2022-12-16 22:53:52     FALSE 2022-12-16 23:00:00
## 256  2022-12-16 22:53:45     FALSE 2022-12-16 23:00:00
## 257  2022-12-16 22:53:24     FALSE 2022-12-16 23:00:00
## 258  2022-12-16 22:53:15     FALSE 2022-12-16 23:00:00
## 259  2022-12-16 22:53:02     FALSE 2022-12-16 23:00:00
## 260  2022-12-16 22:52:55     FALSE 2022-12-16 23:00:00
## 261  2022-12-16 22:52:47     FALSE 2022-12-16 23:00:00
## 262  2022-12-16 22:52:41     FALSE 2022-12-16 23:00:00
## 263  2022-12-16 22:52:35     FALSE 2022-12-16 23:00:00
## 264  2022-12-16 22:52:33     FALSE 2022-12-16 23:00:00
## 265  2022-12-16 22:52:30     FALSE 2022-12-16 23:00:00
## 266  2022-12-16 22:52:04     FALSE 2022-12-16 23:00:00
## 267  2022-12-16 22:51:59     FALSE 2022-12-16 23:00:00
## 268  2022-12-16 22:51:58     FALSE 2022-12-16 23:00:00
## 269  2022-12-16 22:51:39     FALSE 2022-12-16 23:00:00
## 270  2022-12-16 22:51:38     FALSE 2022-12-16 23:00:00
## 271  2022-12-16 22:51:18     FALSE 2022-12-16 23:00:00
## 272  2022-12-16 22:51:00     FALSE 2022-12-16 23:00:00
## 273  2022-12-16 22:50:23     FALSE 2022-12-16 23:00:00
## 274  2022-12-16 22:50:22     FALSE 2022-12-16 23:00:00
## 275  2022-12-16 22:50:22     FALSE 2022-12-16 23:00:00
## 276  2022-12-16 22:50:21     FALSE 2022-12-16 23:00:00
## 277  2022-12-16 22:50:21     FALSE 2022-12-16 23:00:00
## 278  2022-12-16 22:50:12     FALSE 2022-12-16 23:00:00
## 279  2022-12-16 22:50:01     FALSE 2022-12-16 23:00:00
## 280  2022-12-16 22:49:28     FALSE 2022-12-16 23:00:00
## 281  2022-12-16 22:49:12     FALSE 2022-12-16 23:00:00
## 282  2022-12-16 22:49:10     FALSE 2022-12-16 23:00:00
## 283  2022-12-16 22:49:06     FALSE 2022-12-16 23:00:00
## 284  2022-12-16 22:49:04     FALSE 2022-12-16 23:00:00
## 285  2022-12-16 22:49:03     FALSE 2022-12-16 23:00:00
## 286  2022-12-16 22:48:26     FALSE 2022-12-16 23:00:00
## 287  2022-12-16 22:48:24     FALSE 2022-12-16 23:00:00
## 288  2022-12-16 22:48:22     FALSE 2022-12-16 23:00:00
## 289  2022-12-16 22:48:21     FALSE 2022-12-16 23:00:00
## 290  2022-12-16 22:48:20     FALSE 2022-12-16 23:00:00
## 291  2022-12-16 22:48:05     FALSE 2022-12-16 23:00:00
## 292  2022-12-16 22:48:04     FALSE 2022-12-16 23:00:00
## 293  2022-12-16 22:48:03     FALSE 2022-12-16 23:00:00
## 294  2022-12-16 22:47:38     FALSE 2022-12-16 23:00:00
## 295  2022-12-16 22:47:13     FALSE 2022-12-16 23:00:00
## 296  2022-12-16 22:46:48     FALSE 2022-12-16 23:00:00
## 297  2022-12-16 22:46:47     FALSE 2022-12-16 23:00:00
## 298  2022-12-16 22:46:44     FALSE 2022-12-16 23:00:00
## 299  2022-12-16 22:46:38     FALSE 2022-12-16 23:00:00
## 300  2022-12-16 22:46:37     FALSE 2022-12-16 23:00:00
## 301  2022-12-16 22:45:46     FALSE 2022-12-16 23:00:00
## 302  2022-12-16 22:45:17     FALSE 2022-12-16 23:00:00
## 303  2022-12-16 22:45:13     FALSE 2022-12-16 23:00:00
## 304  2022-12-16 22:45:03     FALSE 2022-12-16 23:00:00
## 305  2022-12-16 22:44:54     FALSE 2022-12-16 23:00:00
## 306  2022-12-16 22:44:32     FALSE 2022-12-16 23:00:00
## 307  2022-12-16 22:44:28     FALSE 2022-12-16 23:00:00
## 308  2022-12-16 22:44:28     FALSE 2022-12-16 23:00:00
## 309  2022-12-16 22:44:26     FALSE 2022-12-16 23:00:00
## 310  2022-12-16 22:44:11     FALSE 2022-12-16 23:00:00
## 311  2022-12-16 22:44:10     FALSE 2022-12-16 23:00:00
## 312  2022-12-16 22:44:05     FALSE 2022-12-16 23:00:00
## 313  2022-12-16 22:43:59     FALSE 2022-12-16 23:00:00
## 314  2022-12-16 22:43:55     FALSE 2022-12-16 23:00:00
## 315  2022-12-16 22:43:47     FALSE 2022-12-16 23:00:00
## 316  2022-12-16 22:43:42     FALSE 2022-12-16 23:00:00
## 317  2022-12-16 22:43:38     FALSE 2022-12-16 23:00:00
## 318  2022-12-16 22:43:21     FALSE 2022-12-16 23:00:00
## 319  2022-12-16 22:42:40     FALSE 2022-12-16 23:00:00
## 320  2022-12-16 22:42:34     FALSE 2022-12-16 23:00:00
## 321  2022-12-16 22:42:25     FALSE 2022-12-16 23:00:00
## 322  2022-12-16 22:42:08     FALSE 2022-12-16 23:00:00
## 323  2022-12-16 22:41:48     FALSE 2022-12-16 23:00:00
## 324  2022-12-16 22:41:43     FALSE 2022-12-16 23:00:00
## 325  2022-12-16 22:41:31     FALSE 2022-12-16 23:00:00
## 326  2022-12-16 22:41:09     FALSE 2022-12-16 23:00:00
## 327  2022-12-16 22:41:04     FALSE 2022-12-16 23:00:00
## 328  2022-12-16 22:40:57     FALSE 2022-12-16 23:00:00
## 329  2022-12-16 22:40:45     FALSE 2022-12-16 23:00:00
## 330  2022-12-16 22:40:44     FALSE 2022-12-16 23:00:00
## 331  2022-12-16 22:40:37     FALSE 2022-12-16 23:00:00
## 332  2022-12-16 22:40:14     FALSE 2022-12-16 23:00:00
## 333  2022-12-16 22:39:52     FALSE 2022-12-16 23:00:00
## 334  2022-12-16 22:39:50     FALSE 2022-12-16 23:00:00
## 335  2022-12-16 22:39:42     FALSE 2022-12-16 23:00:00
## 336  2022-12-16 22:39:29     FALSE 2022-12-16 23:00:00
## 337  2022-12-16 22:39:13     FALSE 2022-12-16 23:00:00
## 338  2022-12-16 22:39:05     FALSE 2022-12-16 23:00:00
## 339  2022-12-16 22:39:05     FALSE 2022-12-16 23:00:00
## 340  2022-12-16 22:39:03     FALSE 2022-12-16 23:00:00
## 341  2022-12-16 22:38:59     FALSE 2022-12-16 23:00:00
## 342  2022-12-16 22:38:25     FALSE 2022-12-16 23:00:00
## 343  2022-12-16 22:37:52     FALSE 2022-12-16 23:00:00
## 344  2022-12-16 22:37:17     FALSE 2022-12-16 23:00:00
## 345  2022-12-16 22:37:00     FALSE 2022-12-16 23:00:00
## 346  2022-12-16 22:36:54     FALSE 2022-12-16 23:00:00
## 347  2022-12-16 22:36:45     FALSE 2022-12-16 23:00:00
## 348  2022-12-16 22:36:34     FALSE 2022-12-16 23:00:00
## 349  2022-12-16 22:36:34     FALSE 2022-12-16 23:00:00
## 350  2022-12-16 22:36:18     FALSE 2022-12-16 23:00:00
## 351  2022-12-16 22:35:58     FALSE 2022-12-16 23:00:00
## 352  2022-12-16 22:35:36     FALSE 2022-12-16 23:00:00
## 353  2022-12-16 22:35:21     FALSE 2022-12-16 23:00:00
## 354  2022-12-16 22:34:50     FALSE 2022-12-16 23:00:00
## 355  2022-12-16 22:34:43     FALSE 2022-12-16 23:00:00
## 356  2022-12-16 22:34:30     FALSE 2022-12-16 23:00:00
## 357  2022-12-16 22:34:09     FALSE 2022-12-16 23:00:00
## 358  2022-12-16 22:32:26     FALSE 2022-12-16 23:00:00
## 359  2022-12-16 22:32:19     FALSE 2022-12-16 23:00:00
## 360  2022-12-16 22:32:11     FALSE 2022-12-16 23:00:00
## 361  2022-12-16 22:32:01     FALSE 2022-12-16 23:00:00
## 362  2022-12-16 22:31:13     FALSE 2022-12-16 23:00:00
## 363  2022-12-16 22:30:59     FALSE 2022-12-16 23:00:00
## 364  2022-12-16 22:30:50     FALSE 2022-12-16 23:00:00
## 365  2022-12-16 22:30:36     FALSE 2022-12-16 23:00:00
## 366  2022-12-16 22:30:36     FALSE 2022-12-16 23:00:00
## 367  2022-12-16 22:30:20     FALSE 2022-12-16 23:00:00
## 368  2022-12-16 22:30:18     FALSE 2022-12-16 23:00:00
## 369  2022-12-16 22:30:03     FALSE 2022-12-16 23:00:00
## 370  2022-12-16 22:30:00     FALSE 2022-12-16 23:00:00
## 371  2022-12-16 22:28:56     FALSE 2022-12-16 22:00:00
## 372  2022-12-16 22:28:44     FALSE 2022-12-16 22:00:00
## 373  2022-12-16 22:28:39     FALSE 2022-12-16 22:00:00
## 374  2022-12-16 22:28:24     FALSE 2022-12-16 22:00:00
## 375  2022-12-16 22:27:45     FALSE 2022-12-16 22:00:00
## 376  2022-12-16 22:26:45     FALSE 2022-12-16 22:00:00
## 377  2022-12-16 22:26:36     FALSE 2022-12-16 22:00:00
## 378  2022-12-16 22:26:31     FALSE 2022-12-16 22:00:00
## 379  2022-12-16 22:26:30     FALSE 2022-12-16 22:00:00
## 380  2022-12-16 22:26:02     FALSE 2022-12-16 22:00:00
## 381  2022-12-16 22:25:24     FALSE 2022-12-16 22:00:00
## 382  2022-12-16 22:25:15     FALSE 2022-12-16 22:00:00
## 383  2022-12-16 22:24:55     FALSE 2022-12-16 22:00:00
## 384  2022-12-16 22:24:55     FALSE 2022-12-16 22:00:00
## 385  2022-12-16 22:24:02     FALSE 2022-12-16 22:00:00
## 386  2022-12-16 22:23:46     FALSE 2022-12-16 22:00:00
## 387  2022-12-16 22:23:28     FALSE 2022-12-16 22:00:00
## 388  2022-12-16 22:23:23     FALSE 2022-12-16 22:00:00
## 389  2022-12-16 22:23:03     FALSE 2022-12-16 22:00:00
## 390  2022-12-16 22:22:59     FALSE 2022-12-16 22:00:00
## 391  2022-12-16 22:22:43     FALSE 2022-12-16 22:00:00
## 392  2022-12-16 22:22:36     FALSE 2022-12-16 22:00:00
## 393  2022-12-16 22:22:02     FALSE 2022-12-16 22:00:00
## 394  2022-12-16 22:21:54     FALSE 2022-12-16 22:00:00
## 395  2022-12-16 22:21:38     FALSE 2022-12-16 22:00:00
## 396  2022-12-16 22:21:12     FALSE 2022-12-16 22:00:00
## 397  2022-12-16 22:21:01     FALSE 2022-12-16 22:00:00
## 398  2022-12-16 22:20:54     FALSE 2022-12-16 22:00:00
## 399  2022-12-16 22:20:27     FALSE 2022-12-16 22:00:00
## 400  2022-12-16 22:20:22     FALSE 2022-12-16 22:00:00
## 401  2022-12-16 22:19:42     FALSE 2022-12-16 22:00:00
## 402  2022-12-16 22:19:06     FALSE 2022-12-16 22:00:00
## 403  2022-12-16 22:18:35     FALSE 2022-12-16 22:00:00
## 404  2022-12-16 22:18:34     FALSE 2022-12-16 22:00:00
## 405  2022-12-16 22:18:24     FALSE 2022-12-16 22:00:00
## 406  2022-12-16 22:18:05     FALSE 2022-12-16 22:00:00
## 407  2022-12-16 22:17:49     FALSE 2022-12-16 22:00:00
## 408  2022-12-16 22:17:39     FALSE 2022-12-16 22:00:00
## 409  2022-12-16 22:17:04     FALSE 2022-12-16 22:00:00
## 410  2022-12-16 22:17:00     FALSE 2022-12-16 22:00:00
## 411  2022-12-16 22:16:45     FALSE 2022-12-16 22:00:00
## 412  2022-12-16 22:16:44     FALSE 2022-12-16 22:00:00
## 413  2022-12-16 22:16:39     FALSE 2022-12-16 22:00:00
## 414  2022-12-16 22:16:17     FALSE 2022-12-16 22:00:00
## 415  2022-12-16 22:16:08     FALSE 2022-12-16 22:00:00
## 416  2022-12-16 22:16:06     FALSE 2022-12-16 22:00:00
## 417  2022-12-16 22:16:05     FALSE 2022-12-16 22:00:00
## 418  2022-12-16 22:15:57     FALSE 2022-12-16 22:00:00
## 419  2022-12-16 22:15:56     FALSE 2022-12-16 22:00:00
## 420  2022-12-16 22:15:31     FALSE 2022-12-16 22:00:00
## 421  2022-12-16 22:15:11     FALSE 2022-12-16 22:00:00
## 422  2022-12-16 22:15:03     FALSE 2022-12-16 22:00:00
## 423  2022-12-16 22:15:00     FALSE 2022-12-16 22:00:00
## 424  2022-12-16 22:14:44     FALSE 2022-12-16 22:00:00
## 425  2022-12-16 22:14:33     FALSE 2022-12-16 22:00:00
## 426  2022-12-16 22:14:33     FALSE 2022-12-16 22:00:00
## 427  2022-12-16 22:14:24     FALSE 2022-12-16 22:00:00
## 428  2022-12-16 22:14:11     FALSE 2022-12-16 22:00:00
## 429  2022-12-16 22:14:04     FALSE 2022-12-16 22:00:00
## 430  2022-12-16 22:14:03     FALSE 2022-12-16 22:00:00
## 431  2022-12-16 22:14:00     FALSE 2022-12-16 22:00:00
## 432  2022-12-16 22:12:13     FALSE 2022-12-16 22:00:00
## 433  2022-12-16 22:11:55     FALSE 2022-12-16 22:00:00
## 434  2022-12-16 22:11:48     FALSE 2022-12-16 22:00:00
## 435  2022-12-16 22:11:03     FALSE 2022-12-16 22:00:00
## 436  2022-12-16 22:10:37     FALSE 2022-12-16 22:00:00
## 437  2022-12-16 22:10:31     FALSE 2022-12-16 22:00:00
## 438  2022-12-16 22:10:12     FALSE 2022-12-16 22:00:00
## 439  2022-12-16 22:10:11     FALSE 2022-12-16 22:00:00
## 440  2022-12-16 22:10:10     FALSE 2022-12-16 22:00:00
## 441  2022-12-16 22:10:07     FALSE 2022-12-16 22:00:00
## 442  2022-12-16 22:10:05     FALSE 2022-12-16 22:00:00
## 443  2022-12-16 22:10:05     FALSE 2022-12-16 22:00:00
## 444  2022-12-16 22:10:04     FALSE 2022-12-16 22:00:00
## 445  2022-12-16 22:09:44     FALSE 2022-12-16 22:00:00
## 446  2022-12-16 22:09:41     FALSE 2022-12-16 22:00:00
## 447  2022-12-16 22:09:32     FALSE 2022-12-16 22:00:00
## 448  2022-12-16 22:09:22     FALSE 2022-12-16 22:00:00
## 449  2022-12-16 22:09:03     FALSE 2022-12-16 22:00:00
## 450  2022-12-16 22:08:58     FALSE 2022-12-16 22:00:00
## 451  2022-12-16 22:08:44     FALSE 2022-12-16 22:00:00
## 452  2022-12-16 22:08:25     FALSE 2022-12-16 22:00:00
## 453  2022-12-16 22:08:04     FALSE 2022-12-16 22:00:00
## 454  2022-12-16 22:07:46     FALSE 2022-12-16 22:00:00
## 455  2022-12-16 22:07:41     FALSE 2022-12-16 22:00:00
## 456  2022-12-16 22:07:38     FALSE 2022-12-16 22:00:00
## 457  2022-12-16 22:07:11     FALSE 2022-12-16 22:00:00
## 458  2022-12-16 22:06:42     FALSE 2022-12-16 22:00:00
## 459  2022-12-16 22:06:04     FALSE 2022-12-16 22:00:00
## 460  2022-12-16 22:05:52     FALSE 2022-12-16 22:00:00
## 461  2022-12-16 22:05:38     FALSE 2022-12-16 22:00:00
## 462  2022-12-16 22:05:30     FALSE 2022-12-16 22:00:00
## 463  2022-12-16 22:05:17     FALSE 2022-12-16 22:00:00
## 464  2022-12-16 22:05:02     FALSE 2022-12-16 22:00:00
## 465  2022-12-16 22:04:37     FALSE 2022-12-16 22:00:00
## 466  2022-12-16 22:04:32     FALSE 2022-12-16 22:00:00
## 467  2022-12-16 22:04:30     FALSE 2022-12-16 22:00:00
## 468  2022-12-16 22:03:13     FALSE 2022-12-16 22:00:00
## 469  2022-12-16 22:03:02     FALSE 2022-12-16 22:00:00
## 470  2022-12-16 22:02:44     FALSE 2022-12-16 22:00:00
## 471  2022-12-16 22:02:34     FALSE 2022-12-16 22:00:00
## 472  2022-12-16 22:02:26     FALSE 2022-12-16 22:00:00
## 473  2022-12-16 22:01:47     FALSE 2022-12-16 22:00:00
## 474  2022-12-16 22:01:47     FALSE 2022-12-16 22:00:00
## 475  2022-12-16 22:01:41     FALSE 2022-12-16 22:00:00
## 476  2022-12-16 22:01:33     FALSE 2022-12-16 22:00:00
## 477  2022-12-16 22:01:13     FALSE 2022-12-16 22:00:00
## 478  2022-12-16 22:01:04     FALSE 2022-12-16 22:00:00
## 479  2022-12-16 22:00:54     FALSE 2022-12-16 22:00:00
## 480  2022-12-16 22:00:20     FALSE 2022-12-16 22:00:00
## 481  2022-12-16 22:00:11     FALSE 2022-12-16 22:00:00
## 482  2022-12-16 21:59:53     FALSE 2022-12-16 22:00:00
## 483  2022-12-16 21:59:24     FALSE 2022-12-16 22:00:00
## 484  2022-12-16 21:59:19     FALSE 2022-12-16 22:00:00
## 485  2022-12-16 21:59:08     FALSE 2022-12-16 22:00:00
## 486  2022-12-16 21:59:08     FALSE 2022-12-16 22:00:00
## 487  2022-12-16 21:58:55     FALSE 2022-12-16 22:00:00
## 488  2022-12-16 21:58:43     FALSE 2022-12-16 22:00:00
## 489  2022-12-16 21:58:31     FALSE 2022-12-16 22:00:00
## 490  2022-12-16 21:58:09     FALSE 2022-12-16 22:00:00
## 491  2022-12-16 21:58:08     FALSE 2022-12-16 22:00:00
## 492  2022-12-16 21:57:52     FALSE 2022-12-16 22:00:00
## 493  2022-12-16 21:57:37     FALSE 2022-12-16 22:00:00
## 494  2022-12-16 21:57:35     FALSE 2022-12-16 22:00:00
## 495  2022-12-16 21:57:08     FALSE 2022-12-16 22:00:00
## 496  2022-12-16 21:56:51     FALSE 2022-12-16 22:00:00
## 497  2022-12-16 21:56:48     FALSE 2022-12-16 22:00:00
## 498  2022-12-16 21:56:07     FALSE 2022-12-16 22:00:00
## 499  2022-12-16 21:55:27     FALSE 2022-12-16 22:00:00
## 500  2022-12-16 21:55:16     FALSE 2022-12-16 22:00:00
## 501  2022-12-16 21:54:55     FALSE 2022-12-16 22:00:00
## 502  2022-12-16 21:54:02     FALSE 2022-12-16 22:00:00
## 503  2022-12-16 21:53:10     FALSE 2022-12-16 22:00:00
## 504  2022-12-16 21:52:52     FALSE 2022-12-16 22:00:00
## 505  2022-12-16 21:52:49     FALSE 2022-12-16 22:00:00
## 506  2022-12-16 21:52:32     FALSE 2022-12-16 22:00:00
## 507  2022-12-16 21:52:13     FALSE 2022-12-16 22:00:00
## 508  2022-12-16 21:52:09     FALSE 2022-12-16 22:00:00
## 509  2022-12-16 21:51:49     FALSE 2022-12-16 22:00:00
## 510  2022-12-16 21:51:35     FALSE 2022-12-16 22:00:00
## 511  2022-12-16 21:51:32     FALSE 2022-12-16 22:00:00
## 512  2022-12-16 21:51:28     FALSE 2022-12-16 22:00:00
## 513  2022-12-16 21:51:14     FALSE 2022-12-16 22:00:00
## 514  2022-12-16 21:51:05     FALSE 2022-12-16 22:00:00
## 515  2022-12-16 21:51:02     FALSE 2022-12-16 22:00:00
## 516  2022-12-16 21:50:34     FALSE 2022-12-16 22:00:00
## 517  2022-12-16 21:49:43     FALSE 2022-12-16 22:00:00
## 518  2022-12-16 21:49:41     FALSE 2022-12-16 22:00:00
## 519  2022-12-16 21:49:29     FALSE 2022-12-16 22:00:00
## 520  2022-12-16 21:48:59     FALSE 2022-12-16 22:00:00
## 521  2022-12-16 21:48:53     FALSE 2022-12-16 22:00:00
## 522  2022-12-16 21:48:15     FALSE 2022-12-16 22:00:00
## 523  2022-12-16 21:48:13     FALSE 2022-12-16 22:00:00
## 524  2022-12-16 21:47:48     FALSE 2022-12-16 22:00:00
## 525  2022-12-16 21:47:10     FALSE 2022-12-16 22:00:00
## 526  2022-12-16 21:47:07     FALSE 2022-12-16 22:00:00
## 527  2022-12-16 21:47:03     FALSE 2022-12-16 22:00:00
## 528  2022-12-16 21:47:02     FALSE 2022-12-16 22:00:00
## 529  2022-12-16 21:47:00     FALSE 2022-12-16 22:00:00
## 530  2022-12-16 21:45:09     FALSE 2022-12-16 22:00:00
## 531  2022-12-16 21:45:03     FALSE 2022-12-16 22:00:00
## 532  2022-12-16 21:44:57     FALSE 2022-12-16 22:00:00
## 533  2022-12-16 21:44:32     FALSE 2022-12-16 22:00:00
## 534  2022-12-16 21:44:24     FALSE 2022-12-16 22:00:00
## 535  2022-12-16 21:44:07     FALSE 2022-12-16 22:00:00
## 536  2022-12-16 21:44:03     FALSE 2022-12-16 22:00:00
## 537  2022-12-16 21:43:38     FALSE 2022-12-16 22:00:00
## 538  2022-12-16 21:43:24     FALSE 2022-12-16 22:00:00
## 539  2022-12-16 21:42:56     FALSE 2022-12-16 22:00:00
## 540  2022-12-16 21:42:43     FALSE 2022-12-16 22:00:00
## 541  2022-12-16 21:42:37     FALSE 2022-12-16 22:00:00
## 542  2022-12-16 21:42:30     FALSE 2022-12-16 22:00:00
## 543  2022-12-16 21:42:27     FALSE 2022-12-16 22:00:00
## 544  2022-12-16 21:42:01     FALSE 2022-12-16 22:00:00
## 545  2022-12-16 21:41:01     FALSE 2022-12-16 22:00:00
## 546  2022-12-16 21:40:59     FALSE 2022-12-16 22:00:00
## 547  2022-12-16 21:40:52     FALSE 2022-12-16 22:00:00
## 548  2022-12-16 21:40:21     FALSE 2022-12-16 22:00:00
## 549  2022-12-16 21:40:04     FALSE 2022-12-16 22:00:00
## 550  2022-12-16 21:39:52     FALSE 2022-12-16 22:00:00
## 551  2022-12-16 21:38:45     FALSE 2022-12-16 22:00:00
## 552  2022-12-16 21:38:36     FALSE 2022-12-16 22:00:00
## 553  2022-12-16 21:38:27     FALSE 2022-12-16 22:00:00
## 554  2022-12-16 21:38:01     FALSE 2022-12-16 22:00:00
## 555  2022-12-16 21:37:50     FALSE 2022-12-16 22:00:00
## 556  2022-12-16 21:37:50     FALSE 2022-12-16 22:00:00
## 557  2022-12-16 21:37:49     FALSE 2022-12-16 22:00:00
## 558  2022-12-16 21:37:45     FALSE 2022-12-16 22:00:00
## 559  2022-12-16 21:37:43     FALSE 2022-12-16 22:00:00
## 560  2022-12-16 21:37:32     FALSE 2022-12-16 22:00:00
## 561  2022-12-16 21:37:04     FALSE 2022-12-16 22:00:00
## 562  2022-12-16 21:37:02     FALSE 2022-12-16 22:00:00
## 563  2022-12-16 21:36:31     FALSE 2022-12-16 22:00:00
## 564  2022-12-16 21:36:01     FALSE 2022-12-16 22:00:00
## 565  2022-12-16 21:35:50     FALSE 2022-12-16 22:00:00
## 566  2022-12-16 21:35:32     FALSE 2022-12-16 22:00:00
## 567  2022-12-16 21:34:38     FALSE 2022-12-16 22:00:00
## 568  2022-12-16 21:33:42     FALSE 2022-12-16 22:00:00
## 569  2022-12-16 21:33:36     FALSE 2022-12-16 22:00:00
## 570  2022-12-16 21:33:04     FALSE 2022-12-16 22:00:00
## 571  2022-12-16 21:32:58     FALSE 2022-12-16 22:00:00
## 572  2022-12-16 21:32:51     FALSE 2022-12-16 22:00:00
## 573  2022-12-16 21:32:49     FALSE 2022-12-16 22:00:00
## 574  2022-12-16 21:32:21     FALSE 2022-12-16 22:00:00
## 575  2022-12-16 21:32:12     FALSE 2022-12-16 22:00:00
## 576  2022-12-16 21:31:51     FALSE 2022-12-16 22:00:00
## 577  2022-12-16 21:31:49     FALSE 2022-12-16 22:00:00
## 578  2022-12-16 21:31:35     FALSE 2022-12-16 22:00:00
## 579  2022-12-16 21:31:35     FALSE 2022-12-16 22:00:00
## 580  2022-12-16 21:31:30     FALSE 2022-12-16 22:00:00
## 581  2022-12-16 21:31:22     FALSE 2022-12-16 22:00:00
## 582  2022-12-16 21:31:01     FALSE 2022-12-16 22:00:00
## 583  2022-12-16 21:30:56     FALSE 2022-12-16 22:00:00
## 584  2022-12-16 21:30:48     FALSE 2022-12-16 22:00:00
## 585  2022-12-16 21:30:44     FALSE 2022-12-16 22:00:00
## 586  2022-12-16 21:30:20     FALSE 2022-12-16 22:00:00
## 587  2022-12-16 21:30:09     FALSE 2022-12-16 22:00:00
## 588  2022-12-16 21:30:06     FALSE 2022-12-16 22:00:00
## 589  2022-12-16 21:29:58     FALSE 2022-12-16 21:00:00
## 590  2022-12-16 21:29:32     FALSE 2022-12-16 21:00:00
## 591  2022-12-16 21:29:31     FALSE 2022-12-16 21:00:00
## 592  2022-12-16 21:28:27     FALSE 2022-12-16 21:00:00
## 593  2022-12-16 21:27:55     FALSE 2022-12-16 21:00:00
## 594  2022-12-16 21:27:49     FALSE 2022-12-16 21:00:00
## 595  2022-12-16 21:27:38     FALSE 2022-12-16 21:00:00
## 596  2022-12-16 21:27:35     FALSE 2022-12-16 21:00:00
## 597  2022-12-16 21:27:27     FALSE 2022-12-16 21:00:00
## 598  2022-12-16 21:27:00     FALSE 2022-12-16 21:00:00
## 599  2022-12-16 21:26:50     FALSE 2022-12-16 21:00:00
## 600  2022-12-16 21:26:47     FALSE 2022-12-16 21:00:00
## 601  2022-12-16 21:26:39     FALSE 2022-12-16 21:00:00
## 602  2022-12-16 21:26:16     FALSE 2022-12-16 21:00:00
## 603  2022-12-16 21:25:35     FALSE 2022-12-16 21:00:00
## 604  2022-12-16 21:25:23     FALSE 2022-12-16 21:00:00
## 605  2022-12-16 21:25:21     FALSE 2022-12-16 21:00:00
## 606  2022-12-16 21:25:10     FALSE 2022-12-16 21:00:00
## 607  2022-12-16 21:24:57     FALSE 2022-12-16 21:00:00
## 608  2022-12-16 21:24:23     FALSE 2022-12-16 21:00:00
## 609  2022-12-16 21:24:07     FALSE 2022-12-16 21:00:00
## 610  2022-12-16 21:23:51     FALSE 2022-12-16 21:00:00
## 611  2022-12-16 21:23:42     FALSE 2022-12-16 21:00:00
## 612  2022-12-16 21:23:37     FALSE 2022-12-16 21:00:00
## 613  2022-12-16 21:23:33     FALSE 2022-12-16 21:00:00
## 614  2022-12-16 21:23:03     FALSE 2022-12-16 21:00:00
## 615  2022-12-16 21:22:58     FALSE 2022-12-16 21:00:00
## 616  2022-12-16 21:22:35     FALSE 2022-12-16 21:00:00
## 617  2022-12-16 21:22:07     FALSE 2022-12-16 21:00:00
## 618  2022-12-16 21:20:05     FALSE 2022-12-16 21:00:00
## 619  2022-12-16 21:19:57     FALSE 2022-12-16 21:00:00
## 620  2022-12-16 21:19:28     FALSE 2022-12-16 21:00:00
## 621  2022-12-16 21:19:24     FALSE 2022-12-16 21:00:00
## 622  2022-12-16 21:19:05     FALSE 2022-12-16 21:00:00
## 623  2022-12-16 21:18:45     FALSE 2022-12-16 21:00:00
## 624  2022-12-16 21:18:00     FALSE 2022-12-16 21:00:00
## 625  2022-12-16 21:17:43     FALSE 2022-12-16 21:00:00
## 626  2022-12-16 21:17:09     FALSE 2022-12-16 21:00:00
## 627  2022-12-16 21:17:06     FALSE 2022-12-16 21:00:00
## 628  2022-12-16 21:16:51     FALSE 2022-12-16 21:00:00
## 629  2022-12-16 21:16:36     FALSE 2022-12-16 21:00:00
## 630  2022-12-16 21:16:11     FALSE 2022-12-16 21:00:00
## 631  2022-12-16 21:16:07     FALSE 2022-12-16 21:00:00
## 632  2022-12-16 21:15:50     FALSE 2022-12-16 21:00:00
## 633  2022-12-16 21:15:21     FALSE 2022-12-16 21:00:00
## 634  2022-12-16 21:14:54     FALSE 2022-12-16 21:00:00
## 635  2022-12-16 21:14:53     FALSE 2022-12-16 21:00:00
## 636  2022-12-16 21:14:46     FALSE 2022-12-16 21:00:00
## 637  2022-12-16 21:14:38     FALSE 2022-12-16 21:00:00
## 638  2022-12-16 21:14:35     FALSE 2022-12-16 21:00:00
## 639  2022-12-16 21:13:49     FALSE 2022-12-16 21:00:00
## 640  2022-12-16 21:13:43     FALSE 2022-12-16 21:00:00
## 641  2022-12-16 21:12:45     FALSE 2022-12-16 21:00:00
## 642  2022-12-16 21:12:43     FALSE 2022-12-16 21:00:00
## 643  2022-12-16 21:12:19     FALSE 2022-12-16 21:00:00
## 644  2022-12-16 21:11:48     FALSE 2022-12-16 21:00:00
## 645  2022-12-16 21:11:43     FALSE 2022-12-16 21:00:00
## 646  2022-12-16 21:11:10     FALSE 2022-12-16 21:00:00
## 647  2022-12-16 21:11:02     FALSE 2022-12-16 21:00:00
## 648  2022-12-16 21:11:00     FALSE 2022-12-16 21:00:00
## 649  2022-12-16 21:10:34     FALSE 2022-12-16 21:00:00
## 650  2022-12-16 21:10:30     FALSE 2022-12-16 21:00:00
## 651  2022-12-16 21:10:17     FALSE 2022-12-16 21:00:00
## 652  2022-12-16 21:09:58     FALSE 2022-12-16 21:00:00
## 653  2022-12-16 21:09:26     FALSE 2022-12-16 21:00:00
## 654  2022-12-16 21:08:06     FALSE 2022-12-16 21:00:00
## 655  2022-12-16 21:07:18     FALSE 2022-12-16 21:00:00
## 656  2022-12-16 21:07:05     FALSE 2022-12-16 21:00:00
## 657  2022-12-16 21:06:41     FALSE 2022-12-16 21:00:00
## 658  2022-12-16 21:06:11     FALSE 2022-12-16 21:00:00
## 659  2022-12-16 21:05:59     FALSE 2022-12-16 21:00:00
## 660  2022-12-16 21:05:51     FALSE 2022-12-16 21:00:00
## 661  2022-12-16 21:05:38     FALSE 2022-12-16 21:00:00
## 662  2022-12-16 21:04:51     FALSE 2022-12-16 21:00:00
## 663  2022-12-16 21:04:51     FALSE 2022-12-16 21:00:00
## 664  2022-12-16 21:04:35     FALSE 2022-12-16 21:00:00
## 665  2022-12-16 21:03:46     FALSE 2022-12-16 21:00:00
## 666  2022-12-16 21:03:35     FALSE 2022-12-16 21:00:00
## 667  2022-12-16 21:03:13     FALSE 2022-12-16 21:00:00
## 668  2022-12-16 21:02:43     FALSE 2022-12-16 21:00:00
## 669  2022-12-16 21:02:40     FALSE 2022-12-16 21:00:00
## 670  2022-12-16 21:02:19     FALSE 2022-12-16 21:00:00
## 671  2022-12-16 21:01:20     FALSE 2022-12-16 21:00:00
## 672  2022-12-16 21:00:47     FALSE 2022-12-16 21:00:00
## 673  2022-12-16 21:00:43     FALSE 2022-12-16 21:00:00
## 674  2022-12-16 21:00:34     FALSE 2022-12-16 21:00:00
## 675  2022-12-16 20:59:48     FALSE 2022-12-16 21:00:00
## 676  2022-12-16 20:59:47     FALSE 2022-12-16 21:00:00
## 677  2022-12-16 20:59:16     FALSE 2022-12-16 21:00:00
## 678  2022-12-16 20:59:10     FALSE 2022-12-16 21:00:00
## 679  2022-12-16 20:58:41     FALSE 2022-12-16 21:00:00
## 680  2022-12-16 20:58:41     FALSE 2022-12-16 21:00:00
## 681  2022-12-16 20:58:37     FALSE 2022-12-16 21:00:00
## 682  2022-12-16 20:58:34     FALSE 2022-12-16 21:00:00
## 683  2022-12-16 20:58:00     FALSE 2022-12-16 21:00:00
## 684  2022-12-16 20:57:41     FALSE 2022-12-16 21:00:00
## 685  2022-12-16 20:57:38     FALSE 2022-12-16 21:00:00
## 686  2022-12-16 20:57:27     FALSE 2022-12-16 21:00:00
## 687  2022-12-16 20:57:26     FALSE 2022-12-16 21:00:00
## 688  2022-12-16 20:57:16     FALSE 2022-12-16 21:00:00
## 689  2022-12-16 20:57:03     FALSE 2022-12-16 21:00:00
## 690  2022-12-16 20:56:43     FALSE 2022-12-16 21:00:00
## 691  2022-12-16 20:56:32     FALSE 2022-12-16 21:00:00
## 692  2022-12-16 20:56:17     FALSE 2022-12-16 21:00:00
## 693  2022-12-16 20:56:12     FALSE 2022-12-16 21:00:00
## 694  2022-12-16 20:55:35     FALSE 2022-12-16 21:00:00
## 695  2022-12-16 20:55:32     FALSE 2022-12-16 21:00:00
## 696  2022-12-16 20:55:29     FALSE 2022-12-16 21:00:00
## 697  2022-12-16 20:55:11     FALSE 2022-12-16 21:00:00
## 698  2022-12-16 20:54:58     FALSE 2022-12-16 21:00:00
## 699  2022-12-16 20:54:27     FALSE 2022-12-16 21:00:00
## 700  2022-12-16 20:53:23     FALSE 2022-12-16 21:00:00
## 701  2022-12-16 20:52:57     FALSE 2022-12-16 21:00:00
## 702  2022-12-16 20:52:25     FALSE 2022-12-16 21:00:00
## 703  2022-12-16 20:52:23     FALSE 2022-12-16 21:00:00
## 704  2022-12-16 20:52:15     FALSE 2022-12-16 21:00:00
## 705  2022-12-16 20:52:11     FALSE 2022-12-16 21:00:00
## 706  2022-12-16 20:52:02     FALSE 2022-12-16 21:00:00
## 707  2022-12-16 20:51:54     FALSE 2022-12-16 21:00:00
## 708  2022-12-16 20:51:42     FALSE 2022-12-16 21:00:00
## 709  2022-12-16 20:51:31     FALSE 2022-12-16 21:00:00
## 710  2022-12-16 20:51:28     FALSE 2022-12-16 21:00:00
## 711  2022-12-16 20:51:19     FALSE 2022-12-16 21:00:00
## 712  2022-12-16 20:50:58     FALSE 2022-12-16 21:00:00
## 713  2022-12-16 20:50:39     FALSE 2022-12-16 21:00:00
## 714  2022-12-16 20:50:32     FALSE 2022-12-16 21:00:00
## 715  2022-12-16 20:50:17     FALSE 2022-12-16 21:00:00
## 716  2022-12-16 20:50:01     FALSE 2022-12-16 21:00:00
## 717  2022-12-16 20:49:46     FALSE 2022-12-16 21:00:00
## 718  2022-12-16 20:49:36     FALSE 2022-12-16 21:00:00
## 719  2022-12-16 20:49:30     FALSE 2022-12-16 21:00:00
## 720  2022-12-16 20:48:39     FALSE 2022-12-16 21:00:00
## 721  2022-12-16 20:48:20     FALSE 2022-12-16 21:00:00
## 722  2022-12-16 20:47:14     FALSE 2022-12-16 21:00:00
## 723  2022-12-16 20:46:58     FALSE 2022-12-16 21:00:00
## 724  2022-12-16 20:46:54     FALSE 2022-12-16 21:00:00
## 725  2022-12-16 20:46:42     FALSE 2022-12-16 21:00:00
## 726  2022-12-16 20:45:51     FALSE 2022-12-16 21:00:00
## 727  2022-12-16 20:44:44     FALSE 2022-12-16 21:00:00
## 728  2022-12-16 20:44:43     FALSE 2022-12-16 21:00:00
## 729  2022-12-16 20:44:22     FALSE 2022-12-16 21:00:00
## 730  2022-12-16 20:44:19     FALSE 2022-12-16 21:00:00
## 731  2022-12-16 20:43:54     FALSE 2022-12-16 21:00:00
## 732  2022-12-16 20:43:47     FALSE 2022-12-16 21:00:00
## 733  2022-12-16 20:43:02     FALSE 2022-12-16 21:00:00
## 734  2022-12-16 20:42:48     FALSE 2022-12-16 21:00:00
## 735  2022-12-16 20:42:38     FALSE 2022-12-16 21:00:00
## 736  2022-12-16 20:42:25     FALSE 2022-12-16 21:00:00
## 737  2022-12-16 20:42:20     FALSE 2022-12-16 21:00:00
## 738  2022-12-16 20:41:45     FALSE 2022-12-16 21:00:00
## 739  2022-12-16 20:41:19     FALSE 2022-12-16 21:00:00
## 740  2022-12-16 20:41:00     FALSE 2022-12-16 21:00:00
## 741  2022-12-16 20:40:52     FALSE 2022-12-16 21:00:00
## 742  2022-12-16 20:40:34     FALSE 2022-12-16 21:00:00
## 743  2022-12-16 20:40:19     FALSE 2022-12-16 21:00:00
## 744  2022-12-16 20:37:13     FALSE 2022-12-16 21:00:00
## 745  2022-12-16 20:37:08     FALSE 2022-12-16 21:00:00
## 746  2022-12-16 20:37:06     FALSE 2022-12-16 21:00:00
## 747  2022-12-16 20:36:55     FALSE 2022-12-16 21:00:00
## 748  2022-12-16 20:36:44     FALSE 2022-12-16 21:00:00
## 749  2022-12-16 20:36:15     FALSE 2022-12-16 21:00:00
## 750  2022-12-16 20:35:44     FALSE 2022-12-16 21:00:00
## 751  2022-12-16 20:35:42     FALSE 2022-12-16 21:00:00
## 752  2022-12-16 20:35:12     FALSE 2022-12-16 21:00:00
## 753  2022-12-16 20:35:07     FALSE 2022-12-16 21:00:00
## 754  2022-12-16 20:35:02     FALSE 2022-12-16 21:00:00
## 755  2022-12-16 20:34:09     FALSE 2022-12-16 21:00:00
## 756  2022-12-16 20:34:03     FALSE 2022-12-16 21:00:00
## 757  2022-12-16 20:33:46     FALSE 2022-12-16 21:00:00
## 758  2022-12-16 20:33:06     FALSE 2022-12-16 21:00:00
## 759  2022-12-16 20:33:01     FALSE 2022-12-16 21:00:00
## 760  2022-12-16 20:32:42     FALSE 2022-12-16 21:00:00
## 761  2022-12-16 20:32:33     FALSE 2022-12-16 21:00:00
## 762  2022-12-16 20:32:32     FALSE 2022-12-16 21:00:00
## 763  2022-12-16 20:32:28     FALSE 2022-12-16 21:00:00
## 764  2022-12-16 20:32:06     FALSE 2022-12-16 21:00:00
## 765  2022-12-16 20:31:40     FALSE 2022-12-16 21:00:00
## 766  2022-12-16 20:30:03     FALSE 2022-12-16 21:00:00
## 767  2022-12-16 20:29:40     FALSE 2022-12-16 20:00:00
## 768  2022-12-16 20:29:37     FALSE 2022-12-16 20:00:00
## 769  2022-12-16 20:27:49     FALSE 2022-12-16 20:00:00
## 770  2022-12-16 20:27:19     FALSE 2022-12-16 20:00:00
## 771  2022-12-16 20:26:49     FALSE 2022-12-16 20:00:00
## 772  2022-12-16 20:26:45     FALSE 2022-12-16 20:00:00
## 773  2022-12-16 20:26:44     FALSE 2022-12-16 20:00:00
## 774  2022-12-16 20:26:43     FALSE 2022-12-16 20:00:00
## 775  2022-12-16 20:26:28     FALSE 2022-12-16 20:00:00
## 776  2022-12-16 20:26:19     FALSE 2022-12-16 20:00:00
## 777  2022-12-16 20:26:02     FALSE 2022-12-16 20:00:00
## 778  2022-12-16 20:26:01     FALSE 2022-12-16 20:00:00
## 779  2022-12-16 20:25:55     FALSE 2022-12-16 20:00:00
## 780  2022-12-16 20:25:29     FALSE 2022-12-16 20:00:00
## 781  2022-12-16 20:25:17     FALSE 2022-12-16 20:00:00
## 782  2022-12-16 20:24:54     FALSE 2022-12-16 20:00:00
## 783  2022-12-16 20:24:39     FALSE 2022-12-16 20:00:00
## 784  2022-12-16 20:24:29     FALSE 2022-12-16 20:00:00
## 785  2022-12-16 20:24:25     FALSE 2022-12-16 20:00:00
## 786  2022-12-16 20:23:44     FALSE 2022-12-16 20:00:00
## 787  2022-12-16 20:22:39     FALSE 2022-12-16 20:00:00
## 788  2022-12-16 20:21:21     FALSE 2022-12-16 20:00:00
## 789  2022-12-16 20:20:08     FALSE 2022-12-16 20:00:00
## 790  2022-12-16 20:20:06     FALSE 2022-12-16 20:00:00
## 791  2022-12-16 20:20:03     FALSE 2022-12-16 20:00:00
## 792  2022-12-16 20:19:50     FALSE 2022-12-16 20:00:00
## 793  2022-12-16 20:19:09     FALSE 2022-12-16 20:00:00
## 794  2022-12-16 20:17:20     FALSE 2022-12-16 20:00:00
## 795  2022-12-16 20:16:05     FALSE 2022-12-16 20:00:00
## 796  2022-12-16 20:14:50     FALSE 2022-12-16 20:00:00
## 797  2022-12-16 20:14:43     FALSE 2022-12-16 20:00:00
## 798  2022-12-16 20:14:16     FALSE 2022-12-16 20:00:00
## 799  2022-12-16 20:14:05     FALSE 2022-12-16 20:00:00
## 800  2022-12-16 20:13:19     FALSE 2022-12-16 20:00:00
## 801  2022-12-16 20:12:41     FALSE 2022-12-16 20:00:00
## 802  2022-12-16 20:12:16     FALSE 2022-12-16 20:00:00
## 803  2022-12-16 20:11:33     FALSE 2022-12-16 20:00:00
## 804  2022-12-16 20:10:54     FALSE 2022-12-16 20:00:00
## 805  2022-12-16 20:10:42     FALSE 2022-12-16 20:00:00
## 806  2022-12-16 20:10:10     FALSE 2022-12-16 20:00:00
## 807  2022-12-16 20:09:51     FALSE 2022-12-16 20:00:00
## 808  2022-12-16 20:09:37     FALSE 2022-12-16 20:00:00
## 809  2022-12-16 20:09:29     FALSE 2022-12-16 20:00:00
## 810  2022-12-16 20:09:29     FALSE 2022-12-16 20:00:00
## 811  2022-12-16 20:08:45     FALSE 2022-12-16 20:00:00
## 812  2022-12-16 20:07:48     FALSE 2022-12-16 20:00:00
## 813  2022-12-16 20:07:48     FALSE 2022-12-16 20:00:00
## 814  2022-12-16 20:07:34     FALSE 2022-12-16 20:00:00
## 815  2022-12-16 20:07:21     FALSE 2022-12-16 20:00:00
## 816  2022-12-16 20:06:52     FALSE 2022-12-16 20:00:00
## 817  2022-12-16 20:06:47     FALSE 2022-12-16 20:00:00
## 818  2022-12-16 20:06:00     FALSE 2022-12-16 20:00:00
## 819  2022-12-16 20:05:52     FALSE 2022-12-16 20:00:00
## 820  2022-12-16 20:05:28     FALSE 2022-12-16 20:00:00
## 821  2022-12-16 20:05:00     FALSE 2022-12-16 20:00:00
## 822  2022-12-16 20:04:43     FALSE 2022-12-16 20:00:00
## 823  2022-12-16 20:04:13     FALSE 2022-12-16 20:00:00
## 824  2022-12-16 20:04:10     FALSE 2022-12-16 20:00:00
## 825  2022-12-16 20:04:03     FALSE 2022-12-16 20:00:00
## 826  2022-12-16 20:04:03     FALSE 2022-12-16 20:00:00
## 827  2022-12-16 20:04:03     FALSE 2022-12-16 20:00:00
## 828  2022-12-16 20:03:44     FALSE 2022-12-16 20:00:00
## 829  2022-12-16 20:03:38     FALSE 2022-12-16 20:00:00
## 830  2022-12-16 20:03:10     FALSE 2022-12-16 20:00:00
## 831  2022-12-16 20:03:08     FALSE 2022-12-16 20:00:00
## 832  2022-12-16 20:02:55     FALSE 2022-12-16 20:00:00
## 833  2022-12-16 20:02:47     FALSE 2022-12-16 20:00:00
## 834  2022-12-16 20:02:18     FALSE 2022-12-16 20:00:00
## 835  2022-12-16 20:02:12     FALSE 2022-12-16 20:00:00
## 836  2022-12-16 20:02:11     FALSE 2022-12-16 20:00:00
## 837  2022-12-16 20:01:40     FALSE 2022-12-16 20:00:00
## 838  2022-12-16 20:01:24     FALSE 2022-12-16 20:00:00
## 839  2022-12-16 20:01:13     FALSE 2022-12-16 20:00:00
## 840  2022-12-16 20:01:03     FALSE 2022-12-16 20:00:00
## 841  2022-12-16 20:00:55     FALSE 2022-12-16 20:00:00
## 842  2022-12-16 20:00:07     FALSE 2022-12-16 20:00:00
## 843  2022-12-16 20:00:03     FALSE 2022-12-16 20:00:00
## 844  2022-12-16 20:00:01     FALSE 2022-12-16 20:00:00
## 845  2022-12-16 19:59:59     FALSE 2022-12-16 20:00:00
## 846  2022-12-16 19:59:46     FALSE 2022-12-16 20:00:00
## 847  2022-12-16 19:59:41     FALSE 2022-12-16 20:00:00
## 848  2022-12-16 19:58:16     FALSE 2022-12-16 20:00:00
## 849  2022-12-16 19:58:12     FALSE 2022-12-16 20:00:00
## 850  2022-12-16 19:57:43     FALSE 2022-12-16 20:00:00
## 851  2022-12-16 19:57:20     FALSE 2022-12-16 20:00:00
## 852  2022-12-16 19:57:08     FALSE 2022-12-16 20:00:00
## 853  2022-12-16 19:56:48     FALSE 2022-12-16 20:00:00
## 854  2022-12-16 19:56:47     FALSE 2022-12-16 20:00:00
## 855  2022-12-16 19:56:28     FALSE 2022-12-16 20:00:00
## 856  2022-12-16 19:55:53     FALSE 2022-12-16 20:00:00
## 857  2022-12-16 19:55:52     FALSE 2022-12-16 20:00:00
## 858  2022-12-16 19:55:22     FALSE 2022-12-16 20:00:00
## 859  2022-12-16 19:55:16     FALSE 2022-12-16 20:00:00
## 860  2022-12-16 19:55:11     FALSE 2022-12-16 20:00:00
## 861  2022-12-16 19:54:22     FALSE 2022-12-16 20:00:00
## 862  2022-12-16 19:53:52     FALSE 2022-12-16 20:00:00
## 863  2022-12-16 19:53:40     FALSE 2022-12-16 20:00:00
## 864  2022-12-16 19:53:35     FALSE 2022-12-16 20:00:00
## 865  2022-12-16 19:53:34     FALSE 2022-12-16 20:00:00
## 866  2022-12-16 19:53:33     FALSE 2022-12-16 20:00:00
## 867  2022-12-16 19:53:32     FALSE 2022-12-16 20:00:00
## 868  2022-12-16 19:53:20     FALSE 2022-12-16 20:00:00
## 869  2022-12-16 19:53:18     FALSE 2022-12-16 20:00:00
## 870  2022-12-16 19:53:11     FALSE 2022-12-16 20:00:00
## 871  2022-12-16 19:53:09     FALSE 2022-12-16 20:00:00
## 872  2022-12-16 19:53:02     FALSE 2022-12-16 20:00:00
## 873  2022-12-16 19:52:57     FALSE 2022-12-16 20:00:00
## 874  2022-12-16 19:52:10     FALSE 2022-12-16 20:00:00
## 875  2022-12-16 19:52:03     FALSE 2022-12-16 20:00:00
## 876  2022-12-16 19:52:03     FALSE 2022-12-16 20:00:00
## 877  2022-12-16 19:51:46     FALSE 2022-12-16 20:00:00
## 878  2022-12-16 19:51:33     FALSE 2022-12-16 20:00:00
## 879  2022-12-16 19:51:09     FALSE 2022-12-16 20:00:00
## 880  2022-12-16 19:50:15     FALSE 2022-12-16 20:00:00
## 881  2022-12-16 19:49:43     FALSE 2022-12-16 20:00:00
## 882  2022-12-16 19:49:39     FALSE 2022-12-16 20:00:00
## 883  2022-12-16 19:49:27     FALSE 2022-12-16 20:00:00
## 884  2022-12-16 19:49:21     FALSE 2022-12-16 20:00:00
## 885  2022-12-16 19:49:12     FALSE 2022-12-16 20:00:00
## 886  2022-12-16 19:49:04     FALSE 2022-12-16 20:00:00
## 887  2022-12-16 19:47:53     FALSE 2022-12-16 20:00:00
## 888  2022-12-16 19:46:41     FALSE 2022-12-16 20:00:00
## 889  2022-12-16 19:45:28     FALSE 2022-12-16 20:00:00
## 890  2022-12-16 19:45:11     FALSE 2022-12-16 20:00:00
## 891  2022-12-16 19:44:51     FALSE 2022-12-16 20:00:00
## 892  2022-12-16 19:44:28     FALSE 2022-12-16 20:00:00
## 893  2022-12-16 19:44:25     FALSE 2022-12-16 20:00:00
## 894  2022-12-16 19:43:59     FALSE 2022-12-16 20:00:00
## 895  2022-12-16 19:43:49     FALSE 2022-12-16 20:00:00
## 896  2022-12-16 19:43:36     FALSE 2022-12-16 20:00:00
## 897  2022-12-16 19:43:36     FALSE 2022-12-16 20:00:00
## 898  2022-12-16 19:43:26     FALSE 2022-12-16 20:00:00
## 899  2022-12-16 19:43:25     FALSE 2022-12-16 20:00:00
## 900  2022-12-16 19:43:17     FALSE 2022-12-16 20:00:00
## 901  2022-12-16 19:41:56     FALSE 2022-12-16 20:00:00
## 902  2022-12-16 19:41:52     FALSE 2022-12-16 20:00:00
## 903  2022-12-16 19:40:52     FALSE 2022-12-16 20:00:00
## 904  2022-12-16 19:40:39     FALSE 2022-12-16 20:00:00
## 905  2022-12-16 19:40:21     FALSE 2022-12-16 20:00:00
## 906  2022-12-16 19:40:15     FALSE 2022-12-16 20:00:00
## 907  2022-12-16 19:40:00     FALSE 2022-12-16 20:00:00
## 908  2022-12-16 19:39:52     FALSE 2022-12-16 20:00:00
## 909  2022-12-16 19:39:12     FALSE 2022-12-16 20:00:00
## 910  2022-12-16 19:39:02     FALSE 2022-12-16 20:00:00
## 911  2022-12-16 19:39:02     FALSE 2022-12-16 20:00:00
## 912  2022-12-16 19:38:51     FALSE 2022-12-16 20:00:00
## 913  2022-12-16 19:38:25     FALSE 2022-12-16 20:00:00
## 914  2022-12-16 19:38:18     FALSE 2022-12-16 20:00:00
## 915  2022-12-16 19:37:46     FALSE 2022-12-16 20:00:00
## 916  2022-12-16 19:37:22     FALSE 2022-12-16 20:00:00
## 917  2022-12-16 19:37:03     FALSE 2022-12-16 20:00:00
## 918  2022-12-16 19:35:58     FALSE 2022-12-16 20:00:00
## 919  2022-12-16 19:35:46     FALSE 2022-12-16 20:00:00
## 920  2022-12-16 19:35:39     FALSE 2022-12-16 20:00:00
## 921  2022-12-16 19:35:02     FALSE 2022-12-16 20:00:00
## 922  2022-12-16 19:34:43     FALSE 2022-12-16 20:00:00
## 923  2022-12-16 19:34:04     FALSE 2022-12-16 20:00:00
## 924  2022-12-16 19:33:35     FALSE 2022-12-16 20:00:00
## 925  2022-12-16 19:33:18     FALSE 2022-12-16 20:00:00
## 926  2022-12-16 19:33:12     FALSE 2022-12-16 20:00:00
## 927  2022-12-16 19:33:10     FALSE 2022-12-16 20:00:00
## 928  2022-12-16 19:33:05     FALSE 2022-12-16 20:00:00
## 929  2022-12-16 19:33:03     FALSE 2022-12-16 20:00:00
## 930  2022-12-16 19:32:59     FALSE 2022-12-16 20:00:00
## 931  2022-12-16 19:32:51     FALSE 2022-12-16 20:00:00
## 932  2022-12-16 19:32:20     FALSE 2022-12-16 20:00:00
## 933  2022-12-16 19:32:16     FALSE 2022-12-16 20:00:00
## 934  2022-12-16 19:31:53     FALSE 2022-12-16 20:00:00
## 935  2022-12-16 19:31:52     FALSE 2022-12-16 20:00:00
## 936  2022-12-16 19:31:17     FALSE 2022-12-16 20:00:00
## 937  2022-12-16 19:30:40     FALSE 2022-12-16 20:00:00
## 938  2022-12-16 19:30:21     FALSE 2022-12-16 20:00:00
## 939  2022-12-16 19:30:01     FALSE 2022-12-16 20:00:00
## 940  2022-12-16 19:29:53     FALSE 2022-12-16 19:00:00
## 941  2022-12-16 19:29:25     FALSE 2022-12-16 19:00:00
## 942  2022-12-16 19:29:02     FALSE 2022-12-16 19:00:00
## 943  2022-12-16 19:28:37     FALSE 2022-12-16 19:00:00
## 944  2022-12-16 19:28:04     FALSE 2022-12-16 19:00:00
## 945  2022-12-16 19:28:00     FALSE 2022-12-16 19:00:00
## 946  2022-12-16 19:28:00     FALSE 2022-12-16 19:00:00
## 947  2022-12-16 19:27:46     FALSE 2022-12-16 19:00:00
## 948  2022-12-16 19:27:45     FALSE 2022-12-16 19:00:00
## 949  2022-12-16 19:26:39     FALSE 2022-12-16 19:00:00
## 950  2022-12-16 19:26:33     FALSE 2022-12-16 19:00:00
## 951  2022-12-16 19:26:28     FALSE 2022-12-16 19:00:00
## 952  2022-12-16 19:26:15     FALSE 2022-12-16 19:00:00
## 953  2022-12-16 19:26:15     FALSE 2022-12-16 19:00:00
## 954  2022-12-16 19:26:11     FALSE 2022-12-16 19:00:00
## 955  2022-12-16 19:25:58     FALSE 2022-12-16 19:00:00
## 956  2022-12-16 19:25:13     FALSE 2022-12-16 19:00:00
## 957  2022-12-16 19:23:55     FALSE 2022-12-16 19:00:00
## 958  2022-12-16 19:22:36     FALSE 2022-12-16 19:00:00
## 959  2022-12-16 19:22:14     FALSE 2022-12-16 19:00:00
## 960  2022-12-16 19:22:10     FALSE 2022-12-16 19:00:00
## 961  2022-12-16 19:21:47     FALSE 2022-12-16 19:00:00
## 962  2022-12-16 19:21:45     FALSE 2022-12-16 19:00:00
## 963  2022-12-16 19:21:36     FALSE 2022-12-16 19:00:00
## 964  2022-12-16 19:21:03     FALSE 2022-12-16 19:00:00
## 965  2022-12-16 19:20:32     FALSE 2022-12-16 19:00:00
## 966  2022-12-16 19:20:32     FALSE 2022-12-16 19:00:00
## 967  2022-12-16 19:20:22     FALSE 2022-12-16 19:00:00
## 968  2022-12-16 19:20:17     FALSE 2022-12-16 19:00:00
## 969  2022-12-16 19:19:52     FALSE 2022-12-16 19:00:00
## 970  2022-12-16 19:19:50     FALSE 2022-12-16 19:00:00
## 971  2022-12-16 19:18:23     FALSE 2022-12-16 19:00:00
## 972  2022-12-16 19:18:14     FALSE 2022-12-16 19:00:00
## 973  2022-12-16 19:18:08     FALSE 2022-12-16 19:00:00
## 974  2022-12-16 19:16:53     FALSE 2022-12-16 19:00:00
## 975  2022-12-16 19:16:44     FALSE 2022-12-16 19:00:00
## 976  2022-12-16 19:16:08     FALSE 2022-12-16 19:00:00
## 977  2022-12-16 19:16:03     FALSE 2022-12-16 19:00:00
## 978  2022-12-16 19:16:02     FALSE 2022-12-16 19:00:00
## 979  2022-12-16 19:15:18     FALSE 2022-12-16 19:00:00
## 980  2022-12-16 19:14:27     FALSE 2022-12-16 19:00:00
## 981  2022-12-16 19:13:56     FALSE 2022-12-16 19:00:00
## 982  2022-12-16 19:13:48     FALSE 2022-12-16 19:00:00
## 983  2022-12-16 19:13:44     FALSE 2022-12-16 19:00:00
## 984  2022-12-16 19:13:39     FALSE 2022-12-16 19:00:00
## 985  2022-12-16 19:13:39     FALSE 2022-12-16 19:00:00
## 986  2022-12-16 19:11:56     FALSE 2022-12-16 19:00:00
## 987  2022-12-16 19:10:46     FALSE 2022-12-16 19:00:00
## 988  2022-12-16 19:10:38     FALSE 2022-12-16 19:00:00
## 989  2022-12-16 19:10:25     FALSE 2022-12-16 19:00:00
## 990  2022-12-16 19:09:57     FALSE 2022-12-16 19:00:00
## 991  2022-12-16 19:09:12     FALSE 2022-12-16 19:00:00
## 992  2022-12-16 19:09:06     FALSE 2022-12-16 19:00:00
## 993  2022-12-16 19:07:38     FALSE 2022-12-16 19:00:00
## 994  2022-12-16 19:06:58     FALSE 2022-12-16 19:00:00
## 995  2022-12-16 19:06:51     FALSE 2022-12-16 19:00:00
## 996  2022-12-16 19:06:49     FALSE 2022-12-16 19:00:00
## 997  2022-12-16 19:06:28     FALSE 2022-12-16 19:00:00
## 998  2022-12-16 19:06:20     FALSE 2022-12-16 19:00:00
## 999  2022-12-16 19:05:09     FALSE 2022-12-16 19:00:00
## 1000 2022-12-16 19:04:52     FALSE 2022-12-16 19:00:00
## 1001 2022-12-16 19:04:50     FALSE 2022-12-16 19:00:00
## 1002 2022-12-16 19:04:49     FALSE 2022-12-16 19:00:00
## 1003 2022-12-16 19:04:39     FALSE 2022-12-16 19:00:00
## 1004 2022-12-16 19:03:59     FALSE 2022-12-16 19:00:00
## 1005 2022-12-16 19:03:45     FALSE 2022-12-16 19:00:00
## 1006 2022-12-16 19:03:23     FALSE 2022-12-16 19:00:00
## 1007 2022-12-16 19:03:21     FALSE 2022-12-16 19:00:00
## 1008 2022-12-16 19:03:20     FALSE 2022-12-16 19:00:00
## 1009 2022-12-16 19:02:45     FALSE 2022-12-16 19:00:00
## 1010 2022-12-16 19:02:35     FALSE 2022-12-16 19:00:00
## 1011 2022-12-16 19:01:52     FALSE 2022-12-16 19:00:00
## 1012 2022-12-16 19:01:48     FALSE 2022-12-16 19:00:00
## 1013 2022-12-16 19:01:44     FALSE 2022-12-16 19:00:00
## 1014 2022-12-16 19:01:33     FALSE 2022-12-16 19:00:00
## 1015 2022-12-16 19:00:30     FALSE 2022-12-16 19:00:00
## 1016 2022-12-16 19:00:10     FALSE 2022-12-16 19:00:00
## 1017 2022-12-16 19:00:02     FALSE 2022-12-16 19:00:00
## 1018 2022-12-16 18:59:42     FALSE 2022-12-16 19:00:00
## 1019 2022-12-16 18:59:24     FALSE 2022-12-16 19:00:00
## 1020 2022-12-16 18:58:58     FALSE 2022-12-16 19:00:00
## 1021 2022-12-16 18:58:42     FALSE 2022-12-16 19:00:00
## 1022 2022-12-16 18:58:32     FALSE 2022-12-16 19:00:00
## 1023 2022-12-16 18:57:56     FALSE 2022-12-16 19:00:00
## 1024 2022-12-16 18:57:24     FALSE 2022-12-16 19:00:00
## 1025 2022-12-16 18:57:03     FALSE 2022-12-16 19:00:00
## 1026 2022-12-16 18:56:47     FALSE 2022-12-16 19:00:00
## 1027 2022-12-16 18:56:39     FALSE 2022-12-16 19:00:00
## 1028 2022-12-16 18:56:26     FALSE 2022-12-16 19:00:00
## 1029 2022-12-16 18:56:12     FALSE 2022-12-16 19:00:00
## 1030 2022-12-16 18:55:29     FALSE 2022-12-16 19:00:00
## 1031 2022-12-16 18:55:02     FALSE 2022-12-16 19:00:00
## 1032 2022-12-16 18:54:23     FALSE 2022-12-16 19:00:00
## 1033 2022-12-16 18:54:18     FALSE 2022-12-16 19:00:00
## 1034 2022-12-16 18:54:11     FALSE 2022-12-16 19:00:00
## 1035 2022-12-16 18:54:10     FALSE 2022-12-16 19:00:00
## 1036 2022-12-16 18:54:04     FALSE 2022-12-16 19:00:00
## 1037 2022-12-16 18:53:20     FALSE 2022-12-16 19:00:00
## 1038 2022-12-16 18:53:15     FALSE 2022-12-16 19:00:00
## 1039 2022-12-16 18:52:53     FALSE 2022-12-16 19:00:00
## 1040 2022-12-16 18:51:19     FALSE 2022-12-16 19:00:00
## 1041 2022-12-16 18:50:53     FALSE 2022-12-16 19:00:00
## 1042 2022-12-16 18:50:40     FALSE 2022-12-16 19:00:00
## 1043 2022-12-16 18:50:30     FALSE 2022-12-16 19:00:00
## 1044 2022-12-16 18:50:11     FALSE 2022-12-16 19:00:00
## 1045 2022-12-16 18:49:11     FALSE 2022-12-16 19:00:00
## 1046 2022-12-16 18:48:34     FALSE 2022-12-16 19:00:00
## 1047 2022-12-16 18:48:31     FALSE 2022-12-16 19:00:00
## 1048 2022-12-16 18:47:58     FALSE 2022-12-16 19:00:00
## 1049 2022-12-16 18:47:34     FALSE 2022-12-16 19:00:00
## 1050 2022-12-16 18:47:04     FALSE 2022-12-16 19:00:00
## 1051 2022-12-16 18:46:44     FALSE 2022-12-16 19:00:00
## 1052 2022-12-16 18:46:25     FALSE 2022-12-16 19:00:00
## 1053 2022-12-16 18:45:26     FALSE 2022-12-16 19:00:00
## 1054 2022-12-16 18:45:13     FALSE 2022-12-16 19:00:00
## 1055 2022-12-16 18:45:06     FALSE 2022-12-16 19:00:00
## 1056 2022-12-16 18:44:50     FALSE 2022-12-16 19:00:00
## 1057 2022-12-16 18:44:38     FALSE 2022-12-16 19:00:00
## 1058 2022-12-16 18:44:34     FALSE 2022-12-16 19:00:00
## 1059 2022-12-16 18:44:08     FALSE 2022-12-16 19:00:00
## 1060 2022-12-16 18:43:42     FALSE 2022-12-16 19:00:00
## 1061 2022-12-16 18:43:39     FALSE 2022-12-16 19:00:00
## 1062 2022-12-16 18:43:18     FALSE 2022-12-16 19:00:00
## 1063 2022-12-16 18:43:06     FALSE 2022-12-16 19:00:00
## 1064 2022-12-16 18:43:05     FALSE 2022-12-16 19:00:00
## 1065 2022-12-16 18:42:32     FALSE 2022-12-16 19:00:00
## 1066 2022-12-16 18:42:32     FALSE 2022-12-16 19:00:00
## 1067 2022-12-16 18:42:24     FALSE 2022-12-16 19:00:00
## 1068 2022-12-16 18:42:11     FALSE 2022-12-16 19:00:00
## 1069 2022-12-16 18:41:57     FALSE 2022-12-16 19:00:00
## 1070 2022-12-16 18:41:49     FALSE 2022-12-16 19:00:00
## 1071 2022-12-16 18:41:39     FALSE 2022-12-16 19:00:00
## 1072 2022-12-16 18:41:28     FALSE 2022-12-16 19:00:00
## 1073 2022-12-16 18:41:12     FALSE 2022-12-16 19:00:00
## 1074 2022-12-16 18:40:43     FALSE 2022-12-16 19:00:00
## 1075 2022-12-16 18:40:33     FALSE 2022-12-16 19:00:00
## 1076 2022-12-16 18:40:30     FALSE 2022-12-16 19:00:00
## 1077 2022-12-16 18:40:27     FALSE 2022-12-16 19:00:00
## 1078 2022-12-16 18:40:25     FALSE 2022-12-16 19:00:00
## 1079 2022-12-16 18:40:20     FALSE 2022-12-16 19:00:00
## 1080 2022-12-16 18:40:11     FALSE 2022-12-16 19:00:00
## 1081 2022-12-16 18:39:39     FALSE 2022-12-16 19:00:00
## 1082 2022-12-16 18:39:36     FALSE 2022-12-16 19:00:00
## 1083 2022-12-16 18:39:36     FALSE 2022-12-16 19:00:00
## 1084 2022-12-16 18:39:23     FALSE 2022-12-16 19:00:00
## 1085 2022-12-16 18:39:19     FALSE 2022-12-16 19:00:00
## 1086 2022-12-16 18:39:18     FALSE 2022-12-16 19:00:00
## 1087 2022-12-16 18:39:02     FALSE 2022-12-16 19:00:00
## 1088 2022-12-16 18:38:53     FALSE 2022-12-16 19:00:00
## 1089 2022-12-16 18:38:30     FALSE 2022-12-16 19:00:00
## 1090 2022-12-16 18:38:26     FALSE 2022-12-16 19:00:00
## 1091 2022-12-16 18:38:24     FALSE 2022-12-16 19:00:00
## 1092 2022-12-16 18:38:20     FALSE 2022-12-16 19:00:00
## 1093 2022-12-16 18:37:47     FALSE 2022-12-16 19:00:00
## 1094 2022-12-16 18:37:39     FALSE 2022-12-16 19:00:00
## 1095 2022-12-16 18:37:35     FALSE 2022-12-16 19:00:00
## 1096 2022-12-16 18:37:32     FALSE 2022-12-16 19:00:00
## 1097 2022-12-16 18:37:12     FALSE 2022-12-16 19:00:00
## 1098 2022-12-16 18:37:11     FALSE 2022-12-16 19:00:00
## 1099 2022-12-16 18:37:06     FALSE 2022-12-16 19:00:00
## 1100 2022-12-16 18:37:01     FALSE 2022-12-16 19:00:00
## 1101 2022-12-16 18:37:01     FALSE 2022-12-16 19:00:00
## 1102 2022-12-16 18:36:52     FALSE 2022-12-16 19:00:00
## 1103 2022-12-16 18:36:50     FALSE 2022-12-16 19:00:00
## 1104 2022-12-16 18:36:43     FALSE 2022-12-16 19:00:00
## 1105 2022-12-16 18:36:41     FALSE 2022-12-16 19:00:00
## 1106 2022-12-16 18:36:32     FALSE 2022-12-16 19:00:00
## 1107 2022-12-16 18:36:32     FALSE 2022-12-16 19:00:00
## 1108 2022-12-16 18:36:32     FALSE 2022-12-16 19:00:00
## 1109 2022-12-16 18:36:22     FALSE 2022-12-16 19:00:00
## 1110 2022-12-16 18:36:22     FALSE 2022-12-16 19:00:00
## 1111 2022-12-16 18:36:12     FALSE 2022-12-16 19:00:00
## 1112 2022-12-16 18:36:12     FALSE 2022-12-16 19:00:00
## 1113 2022-12-16 18:35:22     FALSE 2022-12-16 19:00:00
## 1114 2022-12-16 18:35:20     FALSE 2022-12-16 19:00:00
## 1115 2022-12-16 18:35:15     FALSE 2022-12-16 19:00:00
## 1116 2022-12-16 18:35:13     FALSE 2022-12-16 19:00:00
## 1117 2022-12-16 18:35:09     FALSE 2022-12-16 19:00:00
## 1118 2022-12-16 18:34:58     FALSE 2022-12-16 19:00:00
## 1119 2022-12-16 18:34:48     FALSE 2022-12-16 19:00:00
## 1120 2022-12-16 18:34:04     FALSE 2022-12-16 19:00:00
## 1121 2022-12-16 18:33:40     FALSE 2022-12-16 19:00:00
## 1122 2022-12-16 18:33:36     FALSE 2022-12-16 19:00:00
## 1123 2022-12-16 18:32:58     FALSE 2022-12-16 19:00:00
## 1124 2022-12-16 18:32:50     FALSE 2022-12-16 19:00:00
## 1125 2022-12-16 18:32:28     FALSE 2022-12-16 19:00:00
## 1126 2022-12-16 18:32:08     FALSE 2022-12-16 19:00:00
## 1127 2022-12-16 18:32:01     FALSE 2022-12-16 19:00:00
## 1128 2022-12-16 18:31:51     FALSE 2022-12-16 19:00:00
## 1129 2022-12-16 18:31:34     FALSE 2022-12-16 19:00:00
## 1130 2022-12-16 18:31:15     FALSE 2022-12-16 19:00:00
## 1131 2022-12-16 18:31:01     FALSE 2022-12-16 19:00:00
## 1132 2022-12-16 18:30:21     FALSE 2022-12-16 19:00:00
## 1133 2022-12-16 18:30:21     FALSE 2022-12-16 19:00:00
## 1134 2022-12-16 18:30:20     FALSE 2022-12-16 19:00:00
## 1135 2022-12-16 18:30:17     FALSE 2022-12-16 19:00:00
## 1136 2022-12-16 18:29:43     FALSE 2022-12-16 18:00:00
## 1137 2022-12-16 18:29:42     FALSE 2022-12-16 18:00:00
## 1138 2022-12-16 18:29:29     FALSE 2022-12-16 18:00:00
## 1139 2022-12-16 18:28:19     FALSE 2022-12-16 18:00:00
## 1140 2022-12-16 18:27:43     FALSE 2022-12-16 18:00:00
## 1141 2022-12-16 18:27:37     FALSE 2022-12-16 18:00:00
## 1142 2022-12-16 18:27:29     FALSE 2022-12-16 18:00:00
## 1143 2022-12-16 18:27:16     FALSE 2022-12-16 18:00:00
## 1144 2022-12-16 18:27:12     FALSE 2022-12-16 18:00:00
## 1145 2022-12-16 18:27:06     FALSE 2022-12-16 18:00:00
## 1146 2022-12-16 18:26:56     FALSE 2022-12-16 18:00:00
## 1147 2022-12-16 18:26:35     FALSE 2022-12-16 18:00:00
## 1148 2022-12-16 18:26:34     FALSE 2022-12-16 18:00:00
## 1149 2022-12-16 18:26:29     FALSE 2022-12-16 18:00:00
## 1150 2022-12-16 18:25:18     FALSE 2022-12-16 18:00:00
## 1151 2022-12-16 18:24:59     FALSE 2022-12-16 18:00:00
## 1152 2022-12-16 18:24:45     FALSE 2022-12-16 18:00:00
## 1153 2022-12-16 18:24:11     FALSE 2022-12-16 18:00:00
## 1154 2022-12-16 18:24:03     FALSE 2022-12-16 18:00:00
## 1155 2022-12-16 18:23:35     FALSE 2022-12-16 18:00:00
## 1156 2022-12-16 18:22:58     FALSE 2022-12-16 18:00:00
## 1157 2022-12-16 18:22:52     FALSE 2022-12-16 18:00:00
## 1158 2022-12-16 18:22:16     FALSE 2022-12-16 18:00:00
## 1159 2022-12-16 18:22:15     FALSE 2022-12-16 18:00:00
## 1160 2022-12-16 18:22:14     FALSE 2022-12-16 18:00:00
## 1161 2022-12-16 18:22:12     FALSE 2022-12-16 18:00:00
## 1162 2022-12-16 18:22:10     FALSE 2022-12-16 18:00:00
## 1163 2022-12-16 18:22:09     FALSE 2022-12-16 18:00:00
## 1164 2022-12-16 18:22:07     FALSE 2022-12-16 18:00:00
## 1165 2022-12-16 18:22:07     FALSE 2022-12-16 18:00:00
## 1166 2022-12-16 18:22:06     FALSE 2022-12-16 18:00:00
## 1167 2022-12-16 18:22:04     FALSE 2022-12-16 18:00:00
## 1168 2022-12-16 18:22:01     FALSE 2022-12-16 18:00:00
## 1169 2022-12-16 18:22:00     FALSE 2022-12-16 18:00:00
## 1170 2022-12-16 18:21:45     FALSE 2022-12-16 18:00:00
## 1171 2022-12-16 18:21:06     FALSE 2022-12-16 18:00:00
## 1172 2022-12-16 18:21:05     FALSE 2022-12-16 18:00:00
## 1173 2022-12-16 18:20:45     FALSE 2022-12-16 18:00:00
## 1174 2022-12-16 18:20:41     FALSE 2022-12-16 18:00:00
## 1175 2022-12-16 18:20:36     FALSE 2022-12-16 18:00:00
## 1176 2022-12-16 18:20:21     FALSE 2022-12-16 18:00:00
## 1177 2022-12-16 18:20:11     FALSE 2022-12-16 18:00:00
## 1178 2022-12-16 18:19:49     FALSE 2022-12-16 18:00:00
## 1179 2022-12-16 18:19:28     FALSE 2022-12-16 18:00:00
## 1180 2022-12-16 18:18:47     FALSE 2022-12-16 18:00:00
## 1181 2022-12-16 18:18:40     FALSE 2022-12-16 18:00:00
## 1182 2022-12-16 18:18:31     FALSE 2022-12-16 18:00:00
## 1183 2022-12-16 18:18:31     FALSE 2022-12-16 18:00:00
## 1184 2022-12-16 18:18:29     FALSE 2022-12-16 18:00:00
## 1185 2022-12-16 18:18:20     FALSE 2022-12-16 18:00:00
## 1186 2022-12-16 18:17:55     FALSE 2022-12-16 18:00:00
## 1187 2022-12-16 18:17:15     FALSE 2022-12-16 18:00:00
## 1188 2022-12-16 18:17:00     FALSE 2022-12-16 18:00:00
## 1189 2022-12-16 18:16:58     FALSE 2022-12-16 18:00:00
## 1190 2022-12-16 18:16:42     FALSE 2022-12-16 18:00:00
## 1191 2022-12-16 18:16:42     FALSE 2022-12-16 18:00:00
## 1192 2022-12-16 18:16:40     FALSE 2022-12-16 18:00:00
## 1193 2022-12-16 18:16:11     FALSE 2022-12-16 18:00:00
## 1194 2022-12-16 18:15:59     FALSE 2022-12-16 18:00:00
## 1195 2022-12-16 18:15:49     FALSE 2022-12-16 18:00:00
## 1196 2022-12-16 18:15:45     FALSE 2022-12-16 18:00:00
## 1197 2022-12-16 18:15:36     FALSE 2022-12-16 18:00:00
## 1198 2022-12-16 18:15:10     FALSE 2022-12-16 18:00:00
## 1199 2022-12-16 18:14:56     FALSE 2022-12-16 18:00:00
## 1200 2022-12-16 18:14:49     FALSE 2022-12-16 18:00:00
## 1201 2022-12-16 18:14:31     FALSE 2022-12-16 18:00:00
## 1202 2022-12-16 18:14:09     FALSE 2022-12-16 18:00:00
## 1203 2022-12-16 18:13:39     FALSE 2022-12-16 18:00:00
## 1204 2022-12-16 18:13:12     FALSE 2022-12-16 18:00:00
## 1205 2022-12-16 18:13:10     FALSE 2022-12-16 18:00:00
## 1206 2022-12-16 18:13:08     FALSE 2022-12-16 18:00:00
## 1207 2022-12-16 18:13:01     FALSE 2022-12-16 18:00:00
## 1208 2022-12-16 18:12:57     FALSE 2022-12-16 18:00:00
## 1209 2022-12-16 18:12:41     FALSE 2022-12-16 18:00:00
## 1210 2022-12-16 18:12:38     FALSE 2022-12-16 18:00:00
## 1211 2022-12-16 18:12:38     FALSE 2022-12-16 18:00:00
## 1212 2022-12-16 18:12:28     FALSE 2022-12-16 18:00:00
## 1213 2022-12-16 18:12:25     FALSE 2022-12-16 18:00:00
## 1214 2022-12-16 18:12:07     FALSE 2022-12-16 18:00:00
## 1215 2022-12-16 18:11:57     FALSE 2022-12-16 18:00:00
## 1216 2022-12-16 18:11:55     FALSE 2022-12-16 18:00:00
## 1217 2022-12-16 18:11:48     FALSE 2022-12-16 18:00:00
## 1218 2022-12-16 18:11:45     FALSE 2022-12-16 18:00:00
## 1219 2022-12-16 18:11:19     FALSE 2022-12-16 18:00:00
## 1220 2022-12-16 18:10:42     FALSE 2022-12-16 18:00:00
## 1221 2022-12-16 18:10:41     FALSE 2022-12-16 18:00:00
## 1222 2022-12-16 18:10:32     FALSE 2022-12-16 18:00:00
## 1223 2022-12-16 18:10:16     FALSE 2022-12-16 18:00:00
## 1224 2022-12-16 18:09:22     FALSE 2022-12-16 18:00:00
## 1225 2022-12-16 18:09:18     FALSE 2022-12-16 18:00:00
## 1226 2022-12-16 18:09:12     FALSE 2022-12-16 18:00:00
## 1227 2022-12-16 18:09:09     FALSE 2022-12-16 18:00:00
## 1228 2022-12-16 18:09:05     FALSE 2022-12-16 18:00:00
## 1229 2022-12-16 18:09:01     FALSE 2022-12-16 18:00:00
## 1230 2022-12-16 18:08:55     FALSE 2022-12-16 18:00:00
## 1231 2022-12-16 18:08:55     FALSE 2022-12-16 18:00:00
## 1232 2022-12-16 18:08:16     FALSE 2022-12-16 18:00:00
## 1233 2022-12-16 18:08:13     FALSE 2022-12-16 18:00:00
## 1234 2022-12-16 18:07:57     FALSE 2022-12-16 18:00:00
## 1235 2022-12-16 18:07:52     FALSE 2022-12-16 18:00:00
## 1236 2022-12-16 18:07:43     FALSE 2022-12-16 18:00:00
## 1237 2022-12-16 18:07:39     FALSE 2022-12-16 18:00:00
## 1238 2022-12-16 18:07:37     FALSE 2022-12-16 18:00:00
## 1239 2022-12-16 18:07:22     FALSE 2022-12-16 18:00:00
## 1240 2022-12-16 18:07:08     FALSE 2022-12-16 18:00:00
## 1241 2022-12-16 18:06:26     FALSE 2022-12-16 18:00:00
## 1242 2022-12-16 18:06:18     FALSE 2022-12-16 18:00:00
## 1243 2022-12-16 18:06:17     FALSE 2022-12-16 18:00:00
## 1244 2022-12-16 18:06:15     FALSE 2022-12-16 18:00:00
## 1245 2022-12-16 18:05:35     FALSE 2022-12-16 18:00:00
## 1246 2022-12-16 18:05:32     FALSE 2022-12-16 18:00:00
## 1247 2022-12-16 18:04:57     FALSE 2022-12-16 18:00:00
## 1248 2022-12-16 18:04:54     FALSE 2022-12-16 18:00:00
## 1249 2022-12-16 18:04:54     FALSE 2022-12-16 18:00:00
## 1250 2022-12-16 18:04:52     FALSE 2022-12-16 18:00:00
## 1251 2022-12-16 18:04:44     FALSE 2022-12-16 18:00:00
## 1252 2022-12-16 18:04:18     FALSE 2022-12-16 18:00:00
## 1253 2022-12-16 18:04:12     FALSE 2022-12-16 18:00:00
## 1254 2022-12-16 18:03:54     FALSE 2022-12-16 18:00:00
## 1255 2022-12-16 18:03:37     FALSE 2022-12-16 18:00:00
## 1256 2022-12-16 18:03:35     FALSE 2022-12-16 18:00:00
## 1257 2022-12-16 18:03:26     FALSE 2022-12-16 18:00:00
## 1258 2022-12-16 18:03:21     FALSE 2022-12-16 18:00:00
## 1259 2022-12-16 18:03:18     FALSE 2022-12-16 18:00:00
## 1260 2022-12-16 18:03:13     FALSE 2022-12-16 18:00:00
## 1261 2022-12-16 18:03:02     FALSE 2022-12-16 18:00:00
## 1262 2022-12-16 18:02:49     FALSE 2022-12-16 18:00:00
## 1263 2022-12-16 18:02:41     FALSE 2022-12-16 18:00:00
## 1264 2022-12-16 18:02:29     FALSE 2022-12-16 18:00:00
## 1265 2022-12-16 18:02:11     FALSE 2022-12-16 18:00:00
## 1266 2022-12-16 18:02:10     FALSE 2022-12-16 18:00:00
## 1267 2022-12-16 18:02:06     FALSE 2022-12-16 18:00:00
## 1268 2022-12-16 18:02:00     FALSE 2022-12-16 18:00:00
## 1269 2022-12-16 18:01:55     FALSE 2022-12-16 18:00:00
## 1270 2022-12-16 18:01:30     FALSE 2022-12-16 18:00:00
## 1271 2022-12-16 18:01:26     FALSE 2022-12-16 18:00:00
## 1272 2022-12-16 18:01:23     FALSE 2022-12-16 18:00:00
## 1273 2022-12-16 18:01:19     FALSE 2022-12-16 18:00:00
## 1274 2022-12-16 18:01:12     FALSE 2022-12-16 18:00:00
## 1275 2022-12-16 18:01:09     FALSE 2022-12-16 18:00:00
## 1276 2022-12-16 18:01:08     FALSE 2022-12-16 18:00:00
## 1277 2022-12-16 18:01:08     FALSE 2022-12-16 18:00:00
## 1278 2022-12-16 18:01:04     FALSE 2022-12-16 18:00:00
## 1279 2022-12-16 18:00:54     FALSE 2022-12-16 18:00:00
## 1280 2022-12-16 18:00:50     FALSE 2022-12-16 18:00:00
## 1281 2022-12-16 18:00:49     FALSE 2022-12-16 18:00:00
## 1282 2022-12-16 18:00:37     FALSE 2022-12-16 18:00:00
## 1283 2022-12-16 18:00:25     FALSE 2022-12-16 18:00:00
## 1284 2022-12-16 18:00:23     FALSE 2022-12-16 18:00:00
## 1285 2022-12-16 18:00:11     FALSE 2022-12-16 18:00:00
## 1286 2022-12-16 18:00:06     FALSE 2022-12-16 18:00:00
## 1287 2022-12-16 18:00:02     FALSE 2022-12-16 18:00:00
## 1288 2022-12-16 18:00:01     FALSE 2022-12-16 18:00:00
## 1289 2022-12-16 18:00:00     FALSE 2022-12-16 18:00:00
## 1290 2022-12-16 17:59:57     FALSE 2022-12-16 18:00:00
## 1291 2022-12-16 17:59:52     FALSE 2022-12-16 18:00:00
## 1292 2022-12-16 17:59:50     FALSE 2022-12-16 18:00:00
## 1293 2022-12-16 17:59:50     FALSE 2022-12-16 18:00:00
## 1294 2022-12-16 17:59:38     FALSE 2022-12-16 18:00:00
## 1295 2022-12-16 17:59:37     FALSE 2022-12-16 18:00:00
## 1296 2022-12-16 17:59:34     FALSE 2022-12-16 18:00:00
## 1297 2022-12-16 17:59:33     FALSE 2022-12-16 18:00:00
## 1298 2022-12-16 17:59:11     FALSE 2022-12-16 18:00:00
## 1299 2022-12-16 17:59:10     FALSE 2022-12-16 18:00:00
## 1300 2022-12-16 17:59:03     FALSE 2022-12-16 18:00:00
## 1301 2022-12-16 17:59:02     FALSE 2022-12-16 18:00:00
## 1302 2022-12-16 17:58:52     FALSE 2022-12-16 18:00:00
## 1303 2022-12-16 17:57:58     FALSE 2022-12-16 18:00:00
## 1304 2022-12-16 17:57:56     FALSE 2022-12-16 18:00:00
## 1305 2022-12-16 17:57:54     FALSE 2022-12-16 18:00:00
## 1306 2022-12-16 17:57:47     FALSE 2022-12-16 18:00:00
## 1307 2022-12-16 17:57:38     FALSE 2022-12-16 18:00:00
## 1308 2022-12-16 17:57:23     FALSE 2022-12-16 18:00:00
## 1309 2022-12-16 17:57:17     FALSE 2022-12-16 18:00:00
## 1310 2022-12-16 17:57:02     FALSE 2022-12-16 18:00:00
## 1311 2022-12-16 17:56:38     FALSE 2022-12-16 18:00:00
## 1312 2022-12-16 17:56:37     FALSE 2022-12-16 18:00:00
## 1313 2022-12-16 17:56:25     FALSE 2022-12-16 18:00:00
## 1314 2022-12-16 17:56:24     FALSE 2022-12-16 18:00:00
## 1315 2022-12-16 17:55:56     FALSE 2022-12-16 18:00:00
## 1316 2022-12-16 17:55:50     FALSE 2022-12-16 18:00:00
## 1317 2022-12-16 17:55:49     FALSE 2022-12-16 18:00:00
## 1318 2022-12-16 17:55:44     FALSE 2022-12-16 18:00:00
## 1319 2022-12-16 17:55:32     FALSE 2022-12-16 18:00:00
## 1320 2022-12-16 17:55:19     FALSE 2022-12-16 18:00:00
## 1321 2022-12-16 17:55:08     FALSE 2022-12-16 18:00:00
## 1322 2022-12-16 17:55:07     FALSE 2022-12-16 18:00:00
## 1323 2022-12-16 17:55:07     FALSE 2022-12-16 18:00:00
## 1324 2022-12-16 17:54:59     FALSE 2022-12-16 18:00:00
## 1325 2022-12-16 17:54:55     FALSE 2022-12-16 18:00:00
## 1326 2022-12-16 17:54:38     FALSE 2022-12-16 18:00:00
## 1327 2022-12-16 17:54:31     FALSE 2022-12-16 18:00:00
## 1328 2022-12-16 17:54:24     FALSE 2022-12-16 18:00:00
## 1329 2022-12-16 17:54:23     FALSE 2022-12-16 18:00:00
## 1330 2022-12-16 17:54:05     FALSE 2022-12-16 18:00:00
## 1331 2022-12-16 17:54:04     FALSE 2022-12-16 18:00:00
## 1332 2022-12-16 17:54:00     FALSE 2022-12-16 18:00:00
## 1333 2022-12-16 17:53:34     FALSE 2022-12-16 18:00:00
## 1334 2022-12-16 17:53:31     FALSE 2022-12-16 18:00:00
## 1335 2022-12-16 17:53:30     FALSE 2022-12-16 18:00:00
## 1336 2022-12-16 17:53:15     FALSE 2022-12-16 18:00:00
## 1337 2022-12-16 17:53:08     FALSE 2022-12-16 18:00:00
## 1338 2022-12-16 17:52:46     FALSE 2022-12-16 18:00:00
## 1339 2022-12-16 17:52:35     FALSE 2022-12-16 18:00:00
## 1340 2022-12-16 17:52:27     FALSE 2022-12-16 18:00:00
## 1341 2022-12-16 17:52:25     FALSE 2022-12-16 18:00:00
## 1342 2022-12-16 17:52:20     FALSE 2022-12-16 18:00:00
## 1343 2022-12-16 17:52:15     FALSE 2022-12-16 18:00:00
## 1344 2022-12-16 17:52:07     FALSE 2022-12-16 18:00:00
## 1345 2022-12-16 17:52:03     FALSE 2022-12-16 18:00:00
## 1346 2022-12-16 17:51:59     FALSE 2022-12-16 18:00:00
## 1347 2022-12-16 17:51:56     FALSE 2022-12-16 18:00:00
## 1348 2022-12-16 17:51:38     FALSE 2022-12-16 18:00:00
## 1349 2022-12-16 17:51:27     FALSE 2022-12-16 18:00:00
## 1350 2022-12-16 17:51:11     FALSE 2022-12-16 18:00:00
## 1351 2022-12-16 17:51:01     FALSE 2022-12-16 18:00:00
## 1352 2022-12-16 17:50:58     FALSE 2022-12-16 18:00:00
## 1353 2022-12-16 17:50:53     FALSE 2022-12-16 18:00:00
## 1354 2022-12-16 17:50:47     FALSE 2022-12-16 18:00:00
## 1355 2022-12-16 17:50:39     FALSE 2022-12-16 18:00:00
## 1356 2022-12-16 17:50:33     FALSE 2022-12-16 18:00:00
## 1357 2022-12-16 17:50:32     FALSE 2022-12-16 18:00:00
## 1358 2022-12-16 17:50:29     FALSE 2022-12-16 18:00:00
## 1359 2022-12-16 17:50:22     FALSE 2022-12-16 18:00:00
## 1360 2022-12-16 17:50:13     FALSE 2022-12-16 18:00:00
## 1361 2022-12-16 17:50:03     FALSE 2022-12-16 18:00:00
## 1362 2022-12-16 17:50:01     FALSE 2022-12-16 18:00:00
## 1363 2022-12-16 17:49:58     FALSE 2022-12-16 18:00:00
## 1364 2022-12-16 17:49:37     FALSE 2022-12-16 18:00:00
## 1365 2022-12-16 17:49:24     FALSE 2022-12-16 18:00:00
## 1366 2022-12-16 17:49:18     FALSE 2022-12-16 18:00:00
## 1367 2022-12-16 17:49:11     FALSE 2022-12-16 18:00:00
## 1368 2022-12-16 17:49:08     FALSE 2022-12-16 18:00:00
## 1369 2022-12-16 17:49:06     FALSE 2022-12-16 18:00:00
## 1370 2022-12-16 17:49:05     FALSE 2022-12-16 18:00:00
## 1371 2022-12-16 17:48:55     FALSE 2022-12-16 18:00:00
## 1372 2022-12-16 17:48:53     FALSE 2022-12-16 18:00:00
## 1373 2022-12-16 17:48:32     FALSE 2022-12-16 18:00:00
## 1374 2022-12-16 17:48:24     FALSE 2022-12-16 18:00:00
seventeen %>% pull(created) %>% min()
## [1] "2022-12-16 17:48:24 UTC"
seventeen %>% pull(created) %>% max()
## [1] "2022-12-16 23:59:39 UTC"

plotting ggplot() & plotly()

ggplot(data = seventeen, aes(x = created)) + geom_histogram(aes(fill = ..count..)) +
  theme(legend.position = "right") + xlab("Time") + ylab("Number of Tweets") +
  scale_fill_gradient(low = "green", high = "pink")
## Warning: The dot-dot notation (`..count..`) was deprecated in ggplot2 3.4.0.
## ℹ Please use `after_stat(count)` instead.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

gpltly <- grp1 %>%
  dplyr::count(Created_At_Round) %>%
  ggplot(mapping = aes(x = Created_At_Round, y = n)) + theme_light() +
  geom_line() + xlab(label = 'Date') + ylab(label = NULL) +
  ggtitle(label = 'Number of Tweets Per Hour')
gpltly %>% ggplotly()

rts

svnteen1 <- seven10DF %>%
  select(screenName,text,created, isRetweet) %>% filter(isRetweet == TRUE)

group 2

svnteen1 %>%  
  group_by(1) %>%  
  summarise(max = max(created), min = min(created))
## # A tibble: 1 × 3
##     `1` max                 min                
##   <dbl> <dttm>              <dttm>             
## 1     1 2022-12-16 23:59:59 2022-12-16 17:48:21
grp2 <- svnteen1 %>%  mutate(Created_At_Round = created %>% round(units = 'hours') %>% as.POSIXct())
grp2
##           screenName
## 1          pipiii113
## 2          dinoIuvrr
## 3          faeiryoon
## 4        byul_______
## 5       cheolsoo1317
## 6           xhaobabi
## 7          dinoIuvrr
## 8        Vee70316545
## 9       ikonicpunani
## 10        squezeee_k
## 11            srzhyn
## 12       byul_______
## 13          ahluvgyu
## 14   adi_is_adrianne
## 15         dinoIuvrr
## 16    saythesebentin
## 17         dinoIuvrr
## 18       shimmerwonu
## 19   candiceskies_92
## 20          crstnvll
## 21   huihuibutterfly
## 22      celecorrea19
## 23       hoshiselbow
## 24           970406g
## 25          yjhdazed
## 26          yjwheeki
## 27    saythesebentin
## 28          _mikaelK
## 29      sm17eflowers
## 30          Kimbai18
## 31     mencarimingyu
## 32       reveluving_
## 33   Lillian79976312
## 34    saythesebentin
## 35      luluuuuu2000
## 36     Fabiola_army7
## 37         hamrangae
## 38     JeonghanieAgi
## 39   msirish0077yah1
## 40          luvksy__
## 41    jvillanueva_18
## 42      jeonjkww1_17
## 43    jeonjeonjeonsa
## 44    saythesebentin
## 45       shimmerwonu
## 46           Xyyyuna
## 47         kreixclsv
## 48         shuacubes
## 49      ChittaKun96L
## 50   adi_is_adrianne
## 51          kth_axie
## 52         spnadda36
## 53       bitteriiiie
## 54   huihuibutterfly
## 55     AlessaLeisure
## 56    saythesebentin
## 57    saythesebentin
## 58      dkyeomcartz_
## 59          gyucheoI
## 60    saythesebentin
## 61         kreixclsv
## 62          gyuxiiee
## 63       its_kimchoi
## 64       junshihaono
## 65     thedanmarquez
## 66          yexungie
## 67      jihoonmelody
## 68       shujisunday
## 69      owlghostbird
## 70       maecaratsxx
## 71           le_suho
## 72   JeonHwangSinKo1
## 73     agippanginnie
## 74     seokjinniepoo
## 75          luvksy__
## 76         koowinous
## 77     agippanginnie
## 78      dkyeomcartz_
## 79      mavillera_ww
## 80        tigerwoozi
## 81          carotbee
## 82        gooberjoon
## 83            9_eo42
## 84         mintcoups
## 85     JhycLovesKPOP
## 86           cy159__
## 87           theSDMG
## 88       yuka5470_17
## 89   AliciAmonxbe76R
## 90    ttalgi88966317
## 91        VinterScen
## 92          gyuriwon
## 93     JhycLovesKPOP
## 94          xhaobabi
## 95      DiamantYanie
## 96        jeycodonat
## 97   BayabanJennifer
## 98     heartjnwonwoo
## 99        chwedollyy
## 100    born2_beAlone
## 101       chwedollyy
## 102          aiFazz_
## 103      Yj7Sunshine
## 104       hellawoozi
## 105        malen_mbb
## 106       chwedollyy
## 107  EpicMahonelover
## 108      jinkunrjjin
## 109           Emygyu
## 110     huangjangeun
## 111         _iskartz
## 112        sARInghae
## 113         hoterim_
## 114     joshualover_
## 115          sujxsvt
## 116      jinkunrjjin
## 117       chwedollyy
## 118      dinaurlatte
## 119      _hanabibiii
## 120         xhaobabi
## 121        A17_sette
## 122      wonwonycart
## 123        Shadowmab
## 124     joshualover_
## 125         blondjun
## 126    butterscoup17
## 127         kaye7208
## 128      Nranieysa__
## 129   laisha_samanta
## 130   LunaIsabelle54
## 131      cikiputri20
## 132         prodbyIN
## 133        wonuhauIs
## 134        carat_say
## 135        carat_say
## 136  adi_is_adrianne
## 137        licu_cart
## 138         HEY8UDDY
## 139   _astridsoleil_
## 140   jeongshua_hoon
## 141          _kim_92
## 142        sanriozhi
## 143           Monwe_
## 144    bestboywoozi_
## 145        0manignat
## 146        luvdxbbey
## 147          _kim_92
## 148   sunflower_kims
## 149        notjeannn
## 150       seokhangel
## 151           wodisz
## 152      Yj7Sunshine
## 153       vymouse_ie
## 154          _kim_92
## 155       vymouse_ie
## 156     jasmineggies
## 157   bambinicologne
## 158        hoshiiest
## 159          _kim_92
## 160         lucidtzu
## 161   PalranghaeEisa
## 162          _kim_92
## 163       TaeNySone9
## 164         9796jeon
## 165           shvlia
## 166         PRODWZ96
## 167   dandelions1707
## 168       shuaonewoo
## 169       june_sunoo
## 170       wonsoonhan
## 171   dandelions1707
## 172        carrotanj
## 173       chwedollyy
## 174  GotWreckedbySVT
## 175        ImYeowoNy
## 176   pizzaboi_dekey
## 177          g_jukry
## 178     huangjangeun
## 179        kwonsnyng
## 180        wonuynter
## 181         lucidtzu
## 182      cheeesekeiz
## 183     MILKIEJEONS_
## 184        costerixa
## 185       yoonfiles_
## 186        misseuvee
## 187    Lia_seventeen
## 188         wonuuu__
## 189       kitsuneyh1
## 190       monichiId_
## 191        boutcheol
## 192          jwwshie
## 193     JadeJensen29
## 194          milkim_
## 195       primjeon97
## 196      Wookie_1211
## 197       MYOT12TRSR
## 198        igyuzihae
## 199      iamyomonday
## 200        caratfldk
## 201  hoshimagination
## 202       xcoupsxoon
## 203          jai_cka
## 204          LupeKTF
## 205        pawinajon
## 206     _flutterby_u
## 207         lee_rien
## 208          chweraa
## 209   imcrushingyouu
## 210          httpcmy
## 211   hongjisooworld
## 212      kwon_minwon
## 213         717Lunla
## 214     SHUAHOHOHOHO
## 215     cptnbrooklyn
## 216   misterchwechew
## 217       sukabuffet
## 218   shuasasparagus
## 219   saythesebentin
## 220  hoshimagination
## 221          unieyd2
## 222   ninikiddiemeal
## 223        reditulab
## 224         4ourMoon
## 225       songswltvs
## 226        kikyykiky
## 227      yjhanscloud
## 228   punggungscoups
## 229        yookkiyoo
## 230  FannyAc01338370
## 231    sunshinee_sol
## 232        reditulab
## 233   saythesebentin
## 234  welovekimjongun
## 235   saythesebentin
## 236        h0bifaceu
## 237           cjf7wc
## 238     ajuniceeey__
## 239    Wendy53755158
## 240  onyourj_eonghan
## 241   DarkAngel_LaLa
## 242           Ieah05
## 243     CaseyManasan
## 244    joc_minyoongi
## 245     nuralyh_ahmd
## 246      woohaohan17
## 247   saythesebentin
## 248   asulnabuwan08_
## 249       yoonichigo
## 250       vantaerinn
## 251   bambinicologne
## 252   saythesebentin
## 253    AlessaLeisure
## 254         ljnjm825
## 255      Iloveyou_SC
## 256       chulicoups
## 257      yjhanscloud
## 258         67minwon
## 259    Lia_seventeen
## 260           srzhyn
## 261       MingXiaoqt
## 262       myungswift
## 263      sound_of_dk
## 264     AuliaSeokmin
## 265    wortelpremium
## 266    wortelpremium
## 267       yoonfiles_
## 268       chingurl96
## 269         lalabin6
## 270      iamyomonday
## 271        seokkieji
## 272     QuickDsurfer
## 273         zidannu_
## 274        h0bifaceu
## 275   saythesebentin
## 276       hoonie_02z
## 277      tsukki_soma
## 278        ailaffuu_
## 279        hoshiiest
## 280      Kiamazinggg
## 281        h0bifaceu
## 282     pau_cheolsvt
## 283         unmoodnt
## 284       mochishuuu
## 285     loveminhyukk
## 286  hoshimagination
## 287       iam_zeevia
## 288      svt_cutiees
## 289        ww_chu_sc
## 290          mwoichi
## 291       MingXiaoqt
## 292           xiivr5
## 293      Hannahline5
## 294        snrhmllya
## 295    bobalimilktea
## 296      mosheymoshi
## 297  kwonwoohancheol
## 298       sebtinsebt
## 299        Moon_7661
## 300   saythesebentin
## 301       __kwonshii
## 302   changwonwoo_17
## 303        anneiyooo
## 304         bboogyus
## 305      mosheymoshi
## 306     wonupangpang
## 307          unieyd2
## 308        _wonuduel
## 309       kwonhosh06
## 310        fIowerIds
## 311      louiseee131
## 312       sebtinsebt
## 313       chomamamas
## 314   changwonwoo_17
## 315          awkiii_
## 316        kiawoniee
## 317        _wonuduel
## 318        dokyeom28
## 319    jeonghan_loml
## 320    Chi_CupSleeve
## 321      shanecarylm
## 322     rayne_rouise
## 323         lucidtzu
## 324      00110111kai
## 325     tteoksunokki
## 326         lucidtzu
## 327         haolabyu
## 328          jjeonzm
## 329         niw__new
## 330     lovemaze1992
## 331         jnwoowoo
## 332          liadeun
## 333           pwnrki
## 334      Yj7Sunshine
## 335        _wonuduel
## 336          liadeun
## 337       etoileshua
## 338   changwonwoo_17
## 339        cho2_tete
## 340      SHUAMALLOWS
## 341        kiawoniee
## 342   changwonwoo_17
## 343        kiawoniee
## 344        kwonfeedz
## 345        kiawoniee
## 346      darlingyu__
## 347   cantchoosebias
## 348      cheonsa_234
## 349        hansknnie
## 350        kiawoniee
## 351    uuwikayjunhui
## 352        ww_chu_sc
## 353   Seokjinniee_30
## 354        ww_chu_sc
## 355         beamz_25
## 356       nyiurpalem
## 357        vanilluxc
## 358        cheolblog
## 359          hrj_zai
## 360   changwonwoo_17
## 361          huei_ot
## 362        lunakyeom
## 363  Kimberl21634382
## 364          RrDeasy
## 365        ww_chu_sc
## 366         ravn_gth
## 367    ffallinforgyu
## 368  hoshimagination
## 369       NiaLidiaNY
## 370     AuliaSeokmin
## 371      iniminimoni
## 372   changwonwoo_17
## 373      usnorgmanis
## 374        Zqtie_min
## 375      Hannahline5
## 376       hoshieeeya
## 377        Zqtie_min
## 378     huangjangeun
## 379        reditulab
## 380      iniminimoni
## 381      analgesica1
## 382     wonhwifulday
## 383        Armcgenes
## 384   sadist_bbypink
## 385     tteoksunokki
## 386       Eyenatniya
## 387   changwonwoo_17
## 388         Kimbai18
## 389        _wonuduel
## 390      iniminimoni
## 391  jeonghanidyllic
## 392   meows_junnie96
## 393      jjongjj1004
## 394          jchzafx
## 395         KIM1N9YU
## 396      jjongjj1004
## 397   changwonwoo_17
## 398      SHUAMALLOWS
## 399    svteumeikonic
## 400        o_oikawaa
## 401  iWyC3voMlsc6dME
## 402    yoongisgunner
## 403  iWyC3voMlsc6dME
## 404        iiamjanne
## 405     shuacheekies
## 406       sebtinsebt
## 407  supapornpoonpe9
## 408  iWyC3voMlsc6dME
## 409  iWyC3voMlsc6dME
## 410          zuuuri_
## 411      SHUAMALLOWS
## 412      jjongjj1004
## 413        agent_x53
## 414       docheolshi
## 415      jjongjj1004
## 416          sujxsvt
## 417         cmllecrz
## 418     liyacarat_an
## 419        orihimess
## 420    jeonwonuwu717
## 421   mikaelmaximoff
## 422  mr_bindaetteokk
## 423  8ZbFGUCMkTda8yC
## 424          sujxsvt
## 425       tetehcarat
## 426    Mamuang_mango
## 427       baebaeboo_
## 428        HeyYajyaj
## 429        orihimess
## 430          1woouji
## 431        takoyunki
## 432     PatDohertySF
## 433          hnsllvr
## 434  min_gyuldaengie
## 435        shuacubes
## 436    svteumeikonic
## 437  mr_bindaetteokk
## 438    annisanahdifs
## 439  cherryberry17__
## 440     user33715115
## 441        vanilluxc
## 442   127_LEEHAECHAN
## 443       nctzen_neo
## 444        djhaeruto
## 445      ayshuahong_
## 446   _meowmeowrayne
## 447        SangoNyaw
## 448  cherryberry17__
## 449     _nicolengggg
## 450           bp0797
## 451         lcvetlks
## 452  ultralordxyehet
## 453           mintd_
## 454       hannieyooo
## 455  cherryberry17__
## 456        MochiME10
## 457        apokkaddo
## 458        orihimess
## 459       noniehaver
## 460        agent_x53
## 461   changwonwoo_17
## 462         W0NUJE0N
## 463         shihohae
## 464  _selenagomezecu
## 465      1004_meanie
## 466           kmngy_
## 467           WX1796
## 468     SebongSev_17
## 469        foratsumu
## 470       BluemoonAn
## 471        agent_x53
## 472   _meowmeowrayne
## 473           pcyztt
## 474        ddinatika
## 475     _nicolengggg
## 476      aagathaaaaa
## 477           kmngy_
## 478    uriwoojiverse
## 479  happiestsebongs
## 480      AlexaAlecxa
## 481           ygjhdw
## 482   midnightscheol
## 483      kjkjaaaynu_
## 484   shuasasparagus
## 485      NaomiWidhia
## 486      vachirawyxt
## 487      rainny_0526
## 488  maungkwonhoshii
## 489   wonwoorideulip
## 490           wwzip_
## 491      AlexaAlecxa
## 492  mydarlinghansol
## 493        ailaffuu_
## 494     Whenever_SVT
## 495         bestnsdk
## 496           kmngy_
## 497       svteen_lei
## 498      cxrrxt_zxcv
## 499     hanniehaseyo
## 500        kukioreo_
## 501       hanniezel_
## 502   changwonwoo_17
## 503     dokyeomhanie
## 504  92jenlisafanboy
## 505      cielyyyfish
## 506     hanniehaseyo
## 507         tala_eri
## 508        seochaery
## 509    JhycLovesKPOP
## 510        quartzeri
## 511        binniee_4
## 512     ddadducheoli
## 513      foreheadsvt
## 514  starmyblink_emj
## 515        Jayshypn_
## 516         ksun_woo
## 517       carrotkaik
## 518     minemrmingyu
## 519        jeowolfie
## 520      mymoonnchan
## 521      AlexaAlecxa
## 522     alexa_mae135
## 523   changwonwoo_17
## 524   kyujimma_yewoo
## 525       milicrente
## 526        chewshv__
## 527   saythesebentin
## 528       MichWen548
## 529      AlexaAlecxa
## 530         rishenie
## 531           kmngy_
## 532  horanghaehoshii
## 533      glynbudolsz
## 534          kaiczea
## 535   shuasasparagus
## 536      AlexaAlecxa
## 537    JhycLovesKPOP
## 538      junhaocaart
## 539          kaiczea
## 540       Cherunghae
## 541    Wendy53755158
## 542       MingXiaoqt
## 543         ccavirae
## 544        chewshv__
## 545       kyeominiee
## 546          yeonxz0
## 547        shuacubes
## 548   changwonwoo_17
## 549        skynzysun
## 550     ChihiroHaru1
## 551      acheol_nice
## 552        luv__wonu
## 553   saythesebentin
## 554     mygoktsgkkmg
## 555        caratleil
## 556          kaiczea
## 557     itsmeeeAivee
## 558  handongonlyfans
## 559        vanilluxc
## 560      foreheadsvt
## 561   spacewalkcartz
## 562      _boocherry_
## 563    xylanasenzyme
## 564        jisstally
## 565  EpicMahonelover
## 566     nejra_bajric
## 567       kwonhosh06
## 568       oxcellaxav
## 569     akitasound__
## 570      rhyneldiego
## 571  shuhoshminkwann
## 572    yoonzinoverse
## 573  dokyeomsunsh1ne
## 574       kwonhosh06
## 575           mintd_
## 576       kwonhosh06
## 577    kwonie_chiewa
## 578     mygoktsgkkmg
## 579            MDFup
## 580    jeonghanlaozu
## 581          hzkyeom
## 582    Scpsbellezaaa
## 583  stllgyujuncheol
## 584     pamelajane28
## 585        din0logy_
## 586        vanilluxc
## 587       kwonhosh06
## 588       hanniehime
## 589      forSVTpolls
## 590     VictoriaPkmn
## 591         Soniaso_
## 592      AlexaAlecxa
## 593        cocopriv_
## 594          gyutome
## 595     alexa_mae135
## 596     ninelie_1982
## 597    ilovedokyeomm
## 598           ziepjs
## 599     klassicmingi
## 600       geonububby
## 601         maziidal
## 602        97XMNGHAO
## 603         vallhela
## 604     tteoksunokki
## 605       kwonhosh06
## 606       celiinezzi
## 607          shuacom
## 608        ciphersvn
## 609     claireisse23
## 610        97XMNGHAO
## 611         geewaiju
## 612  shuhoshminkwann
## 613     tteoksunokki
## 614           svvnfv
## 615        mutchenle
## 616       kwonhosh06
## 617        1989_1617
## 618     dkyeomcartz_
## 619   zayumzaddy8995
## 620       haesajae13
## 621       vwxy_len_z
## 622       ujiiiverse
## 623        1989_1617
## 624   MOONchild___03
## 625      onefinename
## 626  cherryberry17__
## 627        KILLUAYAH
## 628  MadelVillarias2
## 629     dkyeomcartz_
## 630   saythesebentin
## 631      onefinename
## 632   ykislifehelp11
## 633          ccheoli
## 634   SugaHoneyHoney
## 635     tteoksunokki
## 636      justforgyuu
## 637    svtworldcarat
## 638   Micapaolasolis
## 639         dkzdeals
## 640       bbyumingyu
## 641        11040906_
## 642       philgqueen
## 643   Micapaolasolis
## 644    svtworldcarat
## 645      AlexaAlecxa
## 646      svtmarketmy
## 647   8starpresident
## 648    Scpsbellezaaa
## 649          YaretG4
## 650     lixiegatinho
## 651    svtworldcarat
## 652     JeonKate_Que
## 653         WONW00ZI
## 654         huiluv17
## 655            S034L
## 656          duwaeji
## 657     joshualover_
## 658      Caramelaine
## 659         lolyummy
## 660      AlexaAlecxa
## 661  MnicaRe36388786
## 662      hoshiselbow
## 663       pepiyoung_
## 664      coupsiechoi
## 665       17sCouphan
## 666         lolyummy
## 667     mockingjed13
## 668     jihoonmelody
## 669       kwonhosh06
## 670        joonzino_
## 671     fairyoon1004
## 672      Caramelaine
## 673       chediejeon
## 674    yoonhongjisoo
## 675         Jacky_17
## 676   Micapaolasolis
## 677         Jacky_17
## 678      maeniecarat
## 679   everyone_wunoo
## 680   Micapaolasolis
## 681         Jacky_17
## 682       korelvsjin
## 683  MadelVillarias2
## 684   Micapaolasolis
## 685        woohaulsh
## 686       soonwonist
## 687         yoonh0ng
## 688         woozinut
## 689      lalawonshua
## 690        halaagire
## 691       Keiza_2298
## 692     JeonKate_Que
## 693       Smooochyay
## 694     shawolXcarat
## 695     micayientuan
## 696          dlsel14
## 697       O127drafts
## 698        Shelaziv1
## 699       kwonhosh06
## 700      haomingthe8
## 701  MadelVillarias2
## 702     bunnyjjongie
## 703           lhsfit
## 704  MadelVillarias2
## 705      everywon_ww
## 706  MadelVillarias2
## 707   jvillanueva_18
## 708         omwonwoo
## 709  MadelVillarias2
## 710     JeonKate_Que
## 711       melo619000
## 712         gyuriwon
## 713        linoch0co
## 714   Chloroform_021
## 715       dkyeomieee
## 716         mxwh_rox
## 717    luv_ingjunhao
## 718         May04EXO
## 719        xiao_yu07
## 720     seungsolehot
## 721     huangjangeun
## 722      tapia_aliya
## 723    yourgirljaney
## 724   EuniceGentolio
## 725   kimberlyoshing
## 726          sbuytme
## 727          ansaa27
## 728  MariamN21611718
## 729      kimjeonsimp
## 730           02seoo
## 731        kwujicart
## 732       jenoescart
## 733  chocopiewoocart
## 734      iniminimoni
## 735         4lwayshj
## 736          shuasbb
## 737       avokaiidoo
## 738          sanhjwa
## 739     seungsolehot
## 740  MadelVillarias2
## 741    ilovedokyeomm
## 742         www04827
## 743  MadelVillarias2
## 744     chwepinecone
## 745       bizurailee
## 746         akzehcba
## 747  MadelVillarias2
## 748   bucketlist2022
## 749       cloversky_
## 750      cherryshgyu
## 751  kathlee24126894
## 752        jkheartjk
## 753       hanjicheol
## 754        nayyynaa_
## 755           k_flwr
## 756         jnwoowoo
## 757   EuniceGentolio
## 758      onefinename
## 759    blondejungwoo
## 760    _jeonghan_nie
## 761       nisaland23
## 762           SOOR4H
## 763  Memoirs_ofRouge
## 764           SOOR4H
## 765      onefinename
## 766       naksjaksel
## 767           wwzip_
## 768  MadelVillarias2
## 769         95zbliss
## 770     nikkihorangi
## 771           wwzip_
## 772      httpsxpeach
## 773           joxuji
## 774       sofirios91
## 775        jaespoils
## 776          Tuty135
## 777      wonfeatdino
## 778  MadelVillarias2
## 779  maungkwonhoshii
## 780        jaespoils
## 781  Jeongmi39991707
## 782     joshuadobaur
## 783          EMSavvy
## 784        lalayzza_
## 785  MadelVillarias2
## 786       jimingyuu_
## 787        melby_yes
## 788   etherealkhoshi
## 789      iniminimoni
## 790      _hanabibiii
## 791      Yj7Sunshine
## 792  gyuldaengrideul
## 793  monanon73114193
## 794       mysvtworld
## 795          huinity
## 796        wonwoshuu
## 797    uriPirateKing
## 798        ovthumans
## 799      kaori761015
## 800  MadelVillarias2
## 801        sovoyeons
## 802        vjshualvr
## 803   cantchoosebias
## 804           wwzip_
## 805  seungcheoluvr13
## 806     k_winterbear
## 807         jhhjbuys
## 808     onlyoonchoi_
## 809    alexasarchive
## 810         tsay2120
## 811      billnheyman
## 812          _kimgyu
## 813     tdlajcjjad_5
## 814     anyacollects
## 815    uriPirateKing
## 816  Sabrina91721301
## 817      baekhyuaena
## 818    lovemaze_fave
## 819      larryyywins
## 820    jaelentineeee
## 821     medusamama21
## 822   etherealkhoshi
## 823  MadelVillarias2
## 824         ft_dino_
## 825     binibambinii
## 826      ppickblue05
## 827     akitasound__
## 828  hwang_sajangnim
## 829           1kfuyu
## 830     illaillaqila
## 831       creamcarat
## 832      mrscheollie
## 833         luvxrexo
## 834      hamzziangel
## 835      neocityvals
## 836  seungcheoluvr13
## 837      arisetotell
## 838       H0RANGKW0N
## 839   horangdanho5hi
## 840      hamzziangel
## 841         JkZeynoo
## 842         thugcafe
## 843    by_soonminwon
## 844    chandriaxford
## 845   dontbeclassist
## 846  bahiyya46904587
## 847        woyfakmen
## 848     celestialkmg
## 849     moonchiIdhan
## 850      httpsxpeach
## 851     goingboochan
## 852   8starpresident
## 853  yourspringnoona
## 854      joshuaphile
## 855       akqiwonnie
## 856        the8cheng
## 857        kiwiboong
## 858     everyoneelle
## 859     Amber_TaeJin
## 860         iceywifu
## 861      iniminimoni
## 862        glossipie
## 863       hobiiicart
## 864  MadelVillarias2
## 865          mynghoe
## 866        realseoIa
## 867        diarymoli
## 868        junhuisol
## 869  jisoomissedhani
## 870     Won09_abby19
## 871     starrrytaeee
## 872   horangdanho5hi
## 873          kim_erc
## 874       cessxyiest
## 875      hamzziangel
## 876       saytheboyz
## 877        baesujin7
## 878   christinaparkk
## 879          ennix21
## 880        cheolcake
## 881     Won09_abby19
## 882         yjhnslvr
## 883           1kfuyu
## 884          ennix21
## 885        jkscatkvn
## 886  jeonghanniehaee
## 887          dlsel14
## 888     hoshitenxten
## 889     yukimint0413
## 890        Daseamoon
## 891         yjhnslvr
## 892         yjhnslvr
## 893    hbdmingyuyaaa
## 894         _526214_
## 895    imcelinaaaaaa
## 896       cyutierull
## 897         yjhnslvr
## 898         jenosgbf
## 899        ketuabemm
## 900  min_gyuldaengie
## 901          kriri_v
## 902     liyacarat_an
## 903     tastywonwooo
## 904  SelenaHoneymoon
## 905       couphanshi
## 906  MadelVillarias2
## 907      svtqmnjnhwi
## 908         lemonvia
## 909  Kimberl21634382
## 910     notesonwoozi
## 911   minghaolicious
## 912       its_lily17
## 913      may_omar821
## 914  Kimberl21634382
## 915   svtcaretvernon
## 916      Myangel0526
## 917   jaehyuk_addict
## 918     hancheolshii
## 919     Won09_abby19
## 920  Kimberl21634382
## 921  stephanienotes_
## 922          Tuty135
## 923       _chennnhui
## 924        yuree_mae
## 925         scouporn
## 926     iaseokminnie
## 927        akifays99
## 928      hottiehoshi
## 929      seokshujiii
## 930     Won09_abby19
## 931  MadelVillarias2
## 932      yjinfires92
## 933    threetwonewoo
## 934     yoonie_jaemi
## 935        yawannabi
## 936         m9ichan_
## 937           riryle
## 938           1kfuyu
## 939      introjunhui
## 940         m9ichan_
## 941    nicolerika_24
## 942            a3_nc
## 943          jahchl_
## 944  Khate_Blackpink
## 945   SteveD36612713
## 946        fluffyy21
## 947    Lia_seventeen
## 948        shujisvt_
## 949        redtvelve
## 950       GreatTopow
## 951         m9ichan_
## 952        no1mrsboo
## 953      junshihaono
## 954  ur_fallinflower
## 955    etoile_150526
## 956        shujisvt_
## 957      HannahLabao
## 958        shujisvt_
## 959    etoile_150526
## 960       wonhaobubs
## 961           XuSimp
## 962          svtguoz
## 963     gyuhancheolz
## 964        horangful
## 965    etoile_150526
## 966        luthfifer
## 967    etoile_150526
## 968        paleisaxu
## 969         ivegenre
## 970     pigshxt_tang
## 971         m9ichan_
## 972  JuliaSchwarthof
## 973           ekcc73
## 974           enhyry
## 975        ggaleuk07
## 976           SVTAU9
## 977       cheolreads
## 978  hoshi_tigergaze
## 979  hoshifrutillita
## 980    chimchimney13
## 981        shujisvt_
## 982        17scarat7
## 983    hongjisoohoon
## 984       miimiisaem
## 985      kwonvell_17
## 986      elle_park22
## 987       versiani__
## 988      brattycarat
## 989          pal_ory
## 990           qqinxr
## 991     notesonwoozi
## 992        nojameden
## 993       retroshuji
## 994           eIhszo
## 995      kwonvell_17
## 996        noriwonss
## 997         Mixiziee
## 998  _kwonhoshifire_
## 999     carats052615
## 1000        _Moonpjw
## 1001      AYABIGWINN
## 1002   boonooniiieee
## 1003       paumojado
## 1004    SCoupstatuuu
## 1005 hoshi_tigergaze
## 1006  sunshinegongju
## 1007       amourwozi
## 1008     misshappy00
## 1009        saikisvt
## 1010       byBoobiu_
## 1011       bellrees1
## 1012   everywon9yu_k
## 1013      17sCouphan
## 1014     kwonvell_17
## 1015       byBoobiu_
## 1016     kwonvell_17
## 1017        afnidwii
## 1018       minrisuji
## 1019      17sCouphan
## 1020   jaehyun_noana
## 1021    gyuhancheolz
## 1022       Gladissp1
## 1023        smnthmgs
## 1024       jaespoils
## 1025      VinterScen
## 1026      forminwonn
## 1027        dohanjye
## 1028     cheoliemoja
## 1029 MadelVillarias2
## 1030 hoshi_tigergaze
## 1031 MadelVillarias2
## 1032       cheolacee
## 1033       jaespoils
## 1034       jaespoils
## 1035  sunshinegongju
## 1036      _dannyieee
## 1037      ynaloves17
## 1038        SIdolsay
## 1039       jaespoils
## 1040  Strwbrrycake01
## 1041     NoonaWonwoo
## 1042        B4NDSBOI
## 1043       jaespoils
## 1044      17sCouphan
## 1045       hanshuayo
## 1046 iflostplzreturn
## 1047          woowzn
## 1048        wonhuied
## 1049 chaoticgroupSVT
## 1050         yslshua
## 1051    geeeennielyn
## 1052    teh_acoustic
## 1053    luluuuuu2000
## 1054  marico59987359
## 1055 MadelVillarias2
## 1056         gr8hao_
## 1057         1keeer_
## 1058    hanniehaee17
## 1059     iniminimoni
## 1060       jaespoils
## 1061     murdrofcrow
## 1062         _archao
## 1063        maemeluv
## 1064     Special8387
## 1065    dokyeomistic
## 1066 cheonsarang1004
## 1067 jjongjjongiehae
## 1068    Jayahhhcytx_
## 1069     badutbagimu
## 1070        smnthmgs
## 1071 bahiyya46904587
## 1072      micacheeew
## 1073        ndmeanie
## 1074     bestboydino
## 1075        smnthmgs
## 1076        hwng__hj
## 1077   cheollierrys_
## 1078       ailaffuu_
## 1079 shuhoshminkwann
## 1080        dinolity
## 1081      anghel2__1
## 1082         afiiice
## 1083        henjxcin
## 1084      craftbybie
## 1085    HulyanaLucky
## 1086  sarcasticpaulo
## 1087   DickOnVeteran
## 1088       blcshao_o
## 1089       reditulab
## 1090    HulyanaLucky
## 1091 shuhoshminkwann
## 1092       reditulab
## 1093          h9shkw
## 1094      mxxnhwi796
## 1095        yowonwoo
## 1096   by_soonminwon
## 1097    poyo_gyu_SVT
## 1098      Triplekim2
## 1099       hannie_dk
## 1100        _Moonpjw
## 1101    Briankellyfc
## 1102     Hannahlois_
## 1103       min_gyuqt
## 1104      _pashhhhha
## 1105    uri_sebongs_
## 1106       Japuttttt
## 1107        carizenn
## 1108   rs_qrtz_srnty
## 1109      jokerjeons
## 1110       urmainbij
## 1111         029_joi
## 1112         seshi51
## 1113    akitasound__
## 1114       kisseugyu
## 1115     park_matyuu
## 1116       hanshuayo
## 1117        No1toKSJ
## 1118     AnOdeForSVT
## 1119     ohnununu_00
## 1120    junhui_budam
## 1121 magic_shop_0613
## 1122      MisoFruity
## 1123      micacheeew
## 1124      MisoFruity
## 1125         vangjjk
## 1126      nuelXwole8
## 1127 cheonsarang1004
## 1128    Won09_abby19
## 1129 loves_gyujunhao
## 1130        urhaven_
## 1131         lvsk_sn
## 1132        kw0nSarl
## 1133      Iam_Anggel
## 1134 felixmullethair
## 1135      varriouses
## 1136      itzaescart
## 1137       taetaecte
## 1138 shuhoshminkwann
## 1139    Carrots_are_
## 1140 ItsNickyyymouse
## 1141      AezriU_SVT
## 1142       hanshuayo
## 1143      sebtinsebt
## 1144     murdrofcrow
## 1145 _yownicepaprika
## 1146       heykimgyu
## 1147       jaehearth
## 1148     iniminimoni
## 1149     dokyeokki17
## 1150        nyahquai
## 1151         H0SHLUV
## 1152    chenchen9785
## 1153     AnOdeForSVT
## 1154  qoniqoniqonita
## 1155        Niiikoru
## 1156   seoksoonshiii
## 1157     fairylady96
## 1158    Carrots_are_
## 1159  moonchildmina_
## 1160    Carrots_are_
## 1161  moonchildmina_
## 1162       blcshao_o
## 1163      ddeonutss_
## 1164      dynjnespnz
## 1165   jinovermorals
## 1166    kwonhsh15ky_
## 1167          i7eonu
## 1168 kyeomcheolcartz
## 1169       kukirawin
## 1170     dokyeokki17
## 1171       lesgauuur
## 1172    akitasound__
## 1173     Myra_Atiera
## 1174    pikanamjoon1
## 1175  svtenrgyskncre
## 1176          04yjhz
## 1177         zzywoon
## 1178      micacheeew
## 1179       FaanNicki
## 1180    cutiewonwooo
## 1181        scdreiel
## 1182    Rieli_lilili
## 1183      xcalicoups
## 1184      MisoFruity
## 1185     junshihaono
## 1186       kwonyoon_
## 1187       71209kart
## 1188   hazel_black11
## 1189    chimochicart
## 1190       hopeamy_t
## 1191 MonstaXWonhoVSQ
## 1192          huibns
## 1193      Sofiacarat
## 1194          04yjhz
## 1195         doIlyjn
## 1196     Y00NGIS_TWT
## 1197      coupsbunny
## 1198 seoulbondedsoul
## 1199     nininonugyu
## 1200   EmaknyakimRJ2
## 1201      _woozistar
## 1202  tiniwinijinnie
## 1203          huibns
## 1204           rmygk
## 1205 jjongjjongiehae
## 1206      GfortheHon
## 1207   RxseKgyUu_SVT
## 1208       wantcheol
## 1209      hanniessvt
## 1210  moonchildmina_
## 1211     AnOdeForSVT
## 1212    kookiejung19
## 1213          huibns
## 1214   JerlienCoyoca
## 1215      enhyfiness
## 1216  moonchildmina_
## 1217    hanniebaekso
## 1218 jjongjjongiehae
## 1219      iamtalika_
## 1220     shiningkwon
## 1221       wantcheol
## 1222      MisoFruity
## 1223 CutieDokyeommie
## 1224   rivierewenboo
## 1225       17scarat7
## 1226       ilhwngjin
## 1227  cherryforcheol
## 1228          huibns
## 1229       ggukjmnie
## 1230      seungjihoo
## 1231        hwajinss
## 1232          huibns
## 1233      MisoFruity
## 1234         Camisun
## 1235      enough4gyu
## 1236      sharlaraye
## 1237        ejjanggu
## 1238     curimansi88
## 1239     krizhielgwy
## 1240       wantcheol
## 1241         Camisun
## 1242        ejjanggu
## 1243       wantcheol
## 1244    seokmineeeee
## 1245        ejjanggu
## 1246        ejjanggu
## 1247       wantcheol
## 1248        m9ichan_
## 1249   matchaberry83
## 1250          huibns
## 1251         Camisun
## 1252 cheonsarang1004
## 1253      wonutiktik
## 1254 drewspotlessmin
## 1255      MisoFruity
## 1256        skshuabb
## 1257         vntaexv
## 1258        BRforJin
## 1259 drewspotlessmin
## 1260        m9ichan_
## 1261  moonchildmina_
## 1262        m9ichan_
## 1263  njunnaloeykyun
## 1264    SoftHope_Jay
## 1265      KM33957890
## 1266          huibns
## 1267 cheonsarang1004
## 1268  cantchoosebias
## 1269 stephanienotes_
## 1270      MisoFruity
## 1271         jhanrds
## 1272  hongranghae_30
## 1273        prjsluvs
## 1274        m9ichan_
## 1275      MisoFruity
## 1276 cheonsarang1004
## 1277  marico59987359
## 1278       adanganan
## 1279 only4jeonwonwoo
## 1280    rockwithkyeo
## 1281     latatucoups
## 1282  sarcasticpaulo
## 1283     4ever_stay1
## 1284        jianviel
## 1285   reebokjumeoni
## 1286         featsch
## 1287        Niiikoru
## 1288       myownplce
## 1289         naaxdt_
## 1290  dearjeongcheol
## 1291      jakefleurs
## 1292     Joshishua17
## 1293  marico59987359
## 1294  starrynight_jy
## 1295       Aeeaea_io
## 1296        cuddlkim
## 1297     SimplyYhanz
## 1298  rodriguez_anci
## 1299     latatucoups
## 1300  moonchildmina_
## 1301          huibns
## 1302       blcshao_o
## 1303       svtkarath
## 1304    junhaoinlove
## 1305   wonhwarchives
## 1306        _kookssi
## 1307   ujinonieloops
## 1308   scoupse_cheol
## 1309          huibns
## 1310    rockwithkyeo
## 1311          yrwon_
## 1312 BeaExolaghcarat
## 1313         p4rkjj_
## 1314          huibns
## 1315   SpicyMartinie
## 1316  moonchildmina_
## 1317        Niiikoru
## 1318    seoksookieee
## 1319    slowpoke_art
## 1320        m9ichan_
## 1321         chi_799
## 1322     wonungieeee
## 1323         http15s
## 1324       17scarat7
## 1325    smileangelfs
## 1326          huibns
## 1327       apoleague
## 1328       naju_rice
## 1329      ddeonutss_
## 1330        m9ichan_
## 1331          huibns
## 1332       heyembeey
## 1333    TheRealstanm
## 1334      noniehaver
## 1335        xxxrei_l
## 1336       ohmingiii
## 1337     byfxutifujo
## 1338  samiasamouna42
## 1339      noniehaver
## 1340    joshu_apollo
## 1341     njuninjun23
## 1342        jnwoowoo
## 1343  watanabaeparky
## 1344        tsay2120
## 1345    carattoall13
## 1346         Janu17_
## 1347        tsay2120
## 1348  Jana_Horanghae
## 1349      jeonghanbb
## 1350          huibns
## 1351         Janu17_
## 1352  woozitheredboy
## 1353      vil2_sofia
## 1354          4woota
## 1355  Jana_Horanghae
## 1356          huibns
## 1357   _jeonghan_nie
## 1358     GyuNunaXVII
## 1359    rockwithkyeo
## 1360    _anneknownnn
## 1361    dkyeomcartz_
## 1362       Yennieque
## 1363       luv__wonu
## 1364         1004wjy
## 1365       jinjuhaee
## 1366      moon950808
## 1367       alleizone
## 1368     moonyorongz
## 1369    huyngtaesimp
## 1370        fttihh__
## 1371       bernacnti
## 1372        huiluv17
## 1373  id_potatochips
## 1374      shujiicart
## 1375       17scarat7
## 1376       woooahaes
## 1377    dillikahoshi
## 1378    lyssalegaspi
## 1379   ancafrancinee
## 1380          4woota
## 1381       taetaecte
## 1382      priuzessin
## 1383    rockwithkyeo
## 1384  tannies_stigma
## 1385          khbbyd
## 1386     kimoonjin04
## 1387  moonchildmina_
## 1388       taetaecte
## 1389      dedelbebel
## 1390    LilyliYabbay
## 1391          huibns
## 1392  woozitheredboy
## 1393          4woota
## 1394   Wonwoohyun717
## 1395          huibns
## 1396       taetaecte
## 1397         029_joi
## 1398      priuzessin
## 1399       jonajopay
## 1400         029_joi
## 1401          huibns
## 1402   babysharkeu00
## 1403      gyurrified
## 1404 LeilaGo83141895
## 1405     jaemtokkiii
## 1406    Tass39192139
## 1407      pampam_sia
## 1408         029_joi
## 1409         jmnlied
## 1410  BTSeokjinnie__
## 1411    neozencityx_
## 1412        tyongflv
## 1413  moonchildmina_
## 1414          huibns
## 1415      Marie_BIM6
## 1416 RecheleKIMyours
## 1417         17dayph
## 1418        Niiikoru
## 1419     elysium0218
## 1420      priuzessin
## 1421      WizCarat01
## 1422    Carrots_are_
## 1423          4woota
## 1424     seu_venteen
## 1425     UrtAllgurl_
## 1426          huibns
## 1427      divine_gyu
## 1428  summer87874592
## 1429        flauwerr
## 1430          huibns
## 1431      priuzessin
## 1432      bardaguhan
## 1433       starhuish
## 1434         029_joi
## 1435        odetovou
## 1436        xyonewoo
## 1437     chansolcart
## 1438      vil2_sofia
## 1439  moonchildmina_
## 1440    dkyeomcartz_
## 1441      priuzessin
## 1442     Myra_Atiera
## 1443    yo_onjeongha
## 1444   caronia_elise
## 1445     honeygyuhao
## 1446     il0vemin9yu
## 1447   seungcheoleen
## 1448       kaardbord
## 1449      Kamila_svt
## 1450      Kendry_MCG
## 1451     kkwonslatte
## 1452      haosmyname
## 1453 Crazy4myselfBTS
## 1454  psowosejjddjmd
## 1455      yjeongshua
## 1456   choikkumasmom
## 1457       wonwoorai
## 1458    ihugjeonghan
## 1459      haulygraye
## 1460    epitychiahae
## 1461 AngelinLothian7
## 1462     seokjin1017
## 1463         KMac941
## 1464          huibns
## 1465   caronia_elise
## 1466       Deantree_
## 1467        ae_fngrl
## 1468      superRoxee
## 1469   daywithsebong
## 1470 cantchoosemygrp
## 1471       gotsvtave
## 1472    minghaopogii
## 1473  psowosejjddjmd
## 1474        mintyhyo
## 1475        I0082022
## 1476 jjongjjongiehae
## 1477        _miraker
## 1478        svtsuals
## 1479          4woota
## 1480  blackcomet1224
## 1481          huibns
## 1482    minghaopogii
## 1483         jhel172
## 1484 gK4ds3nRRHUsGpS
## 1485          yrwon_
## 1486          4woota
## 1487          huibns
## 1488    dkyeomcartz_
## 1489   user239718570
## 1490       jjongjino
## 1491      songswltvs
## 1492    dkyeomcartz_
## 1493     charianeliz
## 1494      myskrrrrrt
## 1495          4woota
## 1496      yjeongshua
## 1497    woowoonctsvt
## 1498      pixieyedam
## 1499      galaxywonj
## 1500   DennisCardiff
## 1501    sound_of_def
## 1502           wzrfc
## 1503      _wooziyaaa
## 1504      winddxncer
## 1505    minghaopogii
## 1506        hihenlo_
## 1507        wsecarat
## 1508        I0082022
## 1509       ellexjeon
## 1510         029_joi
## 1511    kyeomhanshua
## 1512     hoonki_0809
## 1513    kdrama_spice
## 1514      jjwinyllow
## 1515     nwsraveenoe
## 1516    bebenimingyu
## 1517     junhaocaart
## 1518       malax1925
## 1519   ontopischerry
## 1520    minisundery_
## 1521    YURAing_time
## 1522        17svtdiv
## 1523    kyeomhanshua
## 1524       wwinnckep
## 1525       luvssvntn
## 1526      hobisbabes
## 1527      chatime_id
## 1528   seokminspizza
## 1529      kkokkomelo
## 1530       Hao_KWHMM
## 1531      chatime_id
## 1532      semicolwon
## 1533      yjeongshua
## 1534     Koalajonnie
## 1535     lindzzz1357
## 1536      chatime_id
## 1537    ChaeHanCheol
## 1538  shadowcloudsss
## 1539       luvssvntn
## 1540      divine_gyu
## 1541        karibetl
## 1542    hongjoshookt
## 1543       gyuricshi
## 1544   NurfiantoGiar
## 1545         vangjjk
## 1546    ElizenGailey
## 1547        mrldcrtz
## 1548     iniminimoni
## 1549 ThrashCetchum12
## 1550      Nickholeas
## 1551         pal_ory
## 1552   buildismylove
## 1553  choihyebin0916
## 1554 pacarmabuchikou
## 1555       eocheolna
## 1556         vangjjk
## 1557       kookoogyu
## 1558        wooahskz
## 1559    yuki05260315
## 1560      Kooandmimi
## 1561      buutherfly
## 1562         vangjjk
## 1563      no20751519
## 1564        rawrtast
## 1565       bboyhao_o
## 1566    happyangelar
## 1567         vangjjk
## 1568         vangjjk
## 1569        lm1004th
## 1570      Kooandmimi
## 1571      gyulovelyy
## 1572         vangjjk
## 1573     moonyorongz
## 1574       jeyyxvier
## 1575       kyeomerry
## 1576  svtinthescoups
## 1577   junshuachanie
## 1578         maewooz
## 1579     iniminimoni
## 1580      yoonciella
## 1581         maewooz
## 1582     moonyorongz
## 1583        mchlgrno
## 1584    tdlajcjjad_5
## 1585    Podongtruzie
## 1586   dikeysunshine
## 1587        jjklvour
## 1588        bigwinme
## 1589    joshujikyeom
## 1590     pjsdumpcart
## 1591        jjklvour
## 1592       vocalnize
## 1593         svt_run
## 1594      sigure1218
## 1595         gyuuser
## 1596        jjklvour
## 1597    POCKETZZZZZZ
## 1598         gyuuser
## 1599        _maharrr
## 1600        17svtdiv
## 1601         vangjjk
## 1602      mikay_c4rt
## 1603      wonwooed29
## 1604    radIreaddzzz
## 1605      yawnonewoo
## 1606         vangjjk
## 1607      kimgyucart
## 1608    jicheolation
## 1609        ksoolina
## 1610       _kwendiii
## 1611     TerryMims14
## 1612   junshuachanie
## 1613       taetaecte
## 1614     butfirstsvt
## 1615     kaori761015
## 1616      yawnonewoo
## 1617         kthday_
## 1618     caratscloud
## 1619     luckyJMwins
## 1620          vkthzi
## 1621   DinaTangerino
## 1622     onlyone_woo
## 1623  Fullwinbearlhc
## 1624  xmyselfanymore
## 1625       mirabheLa
## 1626      inlove3517
## 1627  Lovable_WonWoo
## 1628          luvrc7
## 1629    akkinda_yoon
## 1630        17minone
## 1631      MichWen548
## 1632       saffiee07
## 1633   chwemoonlight
## 1634   nonstickygirl
## 1635  coupranghaeisa
## 1636   littlemoonhui
## 1637    kat_fanixczs
## 1638  carat17CARAT17
## 1639     mamemi_mari
## 1640        GWIYE0UN
## 1641   fokinavocadxs
## 1642      josheecart
## 1643       friedksoo
## 1644          lvyjm0
## 1645         4wonhao
## 1646        heeshuas
## 1647       shuarkive
## 1648   chwemoonlight
## 1649       joshiuahs
## 1650      galaxywonj
## 1651 EpicMahonelover
## 1652        handoks_
## 1653 katie_seventeen
## 1654     AnnieDewell
## 1655 in2sebongs4ever
## 1656      gyumaezing
## 1657        handoks_
## 1658    mimicheolhan
## 1659       cylomlcy7
## 1660 EpicMahonelover
## 1661        mingy0_o
## 1662 horangseranghae
## 1663      kkoccherry
## 1664   sanisanistore
## 1665      8winenight
## 1666    yourcaratzen
## 1667      Younghu1_2
## 1668  caratintheland
## 1669     kyeomshushi
## 1670       quartzhae
## 1671 EpicMahonelover
## 1672      axxelblade
## 1673         i60kwon
## 1674        wosesmio
## 1675   icaprikoornio
## 1676    peaceinwaves
## 1677     SolaceCart_
## 1678         LeckzyC
## 1679      myjin41292
## 1680  JustDecibelios
## 1681      no20751519
## 1682    HoshiCheeks_
## 1683         jchzafx
## 1684    dillikahoshi
## 1685          Nheda5
## 1686 jinniesarchives
## 1687    avocadoeluvs
## 1688     _taendipity
## 1689  allianedennise
## 1690    karlajeremee
## 1691    alpacajintae
## 1692    hhhongggshua
## 1693 stephanienotes_
## 1694    avocadoeluvs
## 1695  MoonbinsCirera
## 1696 in2sebongs4ever
## 1697       the8cheng
## 1698     _taendipity
## 1699      Desi_Ladki
## 1700     mamemi_mari
## 1701 mr_bindaetteokk
## 1702 EpicMahonelover
## 1703  taesmagicshopp
## 1704 shadowtrooper55
## 1705  Joonmyuniverse
## 1706      addicTINEE
## 1707         jujudtx
## 1708    MMariangel13
## 1709 HannahM21850825
## 1710 EpicMahonelover
## 1711     bangtanx7x7
## 1712         029_joi
## 1713           j8ng_
## 1714      altdokyeom
## 1715     snoozebaram
## 1716        Honggbae
## 1717       _kwendiii
## 1718     DELULURACHA
## 1719  TheeAstronaut7
## 1720       huintarou
## 1721      wonyanghui
## 1722         shjlvre
## 1723    cooks_scoups
## 1724     snoozebaram
## 1725   ho5hipangpang
## 1726       jenasriso
## 1727         acs_hao
## 1728          m_djmc
## 1729       b0ranghae
## 1730       aucstaybb
## 1731       elikyut26
## 1732        wdytmegg
## 1733     snoozebaram
## 1734      vyonitha_w
## 1735         vangjjk
## 1736      mingyuIomI
## 1737       Caelorenz
## 1738     jaegrayndal
## 1739     mamemi_mari
## 1740         029_joi
## 1741    babbibababez
## 1742    dwncheolcart
## 1743       bernacnti
## 1744    caratzendump
## 1745 woozintheclouds
## 1746      meeperseee
## 1747      deerhansie
## 1748         Asi__uL
## 1749     jo_shuahong
## 1750  spacewalkcartz
## 1751   ForeverMore03
## 1752     Febbloggerv
## 1753  spacewalkcartz
## 1754     michh134340
## 1755      Ima17honv_
## 1756      arcel_chwe
## 1757     ZachMicheli
## 1758   vvinterbear07
## 1759       bernacnti
## 1760  My_Tweety_Bird
## 1761    berrydelishx
## 1762    babbibababez
## 1763        woahaeee
## 1764         vangjjk
## 1765       chyngteen
## 1766   lavielee_cjsw
## 1767        woahaeee
## 1768  Jana_Horanghae
## 1769         vangjjk
## 1770     yoonhaniyoo
## 1771         vangjjk
## 1772     sanhaechani
## 1773  carateu_wongyu
## 1774     woozfactory
## 1775          zzbhui
## 1776     Myra_Atiera
## 1777        woahaeee
## 1778        domiekie
## 1779     pakslamet88
## 1780       tinidorks
## 1781    nanagirlfrnd
## 1782         Zame_96
## 1783     jo_shuahong
## 1784       17scarat7
## 1785        fool4svt
## 1786     FatimaGail1
## 1787       jo_choisc
## 1788       EL_ICAAAA
## 1789  rocesjanelleee
## 1790        woahaeee
## 1791        hiheesng
## 1792        17minone
## 1793  anne_yeong1004
## 1794        lipwoozi
## 1795  watanabaeparky
## 1796   shua_1230_hae
## 1797 in2sebongs4ever
## 1798 JeonHwangSinKo1
## 1799     segyeshiimo
## 1800  kreng_of_coups
## 1801    minghaopogii
## 1802      yna_mx1357
## 1803  rocesjanelleee
## 1804  Jana_Horanghae
## 1805        hiheesng
## 1806    hcevaporated
## 1807    babbibababez
## 1808  Jana_Horanghae
## 1809 valeriaabigail9
## 1810     FatimaGail1
## 1811    Redsam118_Jr
## 1812      AlyloonyPH
## 1813 butterflyamused
## 1814        maymaeey
## 1815     its_kimchoi
## 1816        lipwoozi
## 1817 in2sebongs4ever
## 1818        hiheesng
## 1819         shjlvre
## 1820      MicsMics07
## 1821        lipwoozi
## 1822     urcoffeelvr
## 1823    karlajeremee
## 1824      addicTINEE
## 1825  mingyukimlover
## 1826     FatimaGail1
## 1827         kaiahae
## 1828        narureen
## 1829  mingyukimlover
## 1830        hiheesng
## 1831    babi64691057
## 1832  Jana_Horanghae
## 1833     pancongkeju
## 1834     FatimaGail1
## 1835     onlyfor_one
## 1836       thdus6892
## 1837       notfine89
## 1838       thdus6892
## 1839      shestaken_
## 1840     mamemi_mari
## 1841       thdus6892
## 1842       Miinginni
## 1843     onlyfor_one
## 1844           msnwu
## 1845       woohaogin
## 1846    shuasblossom
## 1847    babbibababez
## 1848       wonugamer
## 1849         hao4reu
## 1850      im_itnnnnn
## 1851       imnylenor
## 1852  svt_wonwoojeon
## 1853        jjaeshi_
## 1854   Julia26954994
## 1855     svtea260515
## 1856  hansolcrackerz
## 1857   ForeverMore03
## 1858  MoonbinsCirera
## 1859  chinguuuuuuuuu
## 1860        dinoaraa
## 1861     svtea260515
## 1862       jo_choisc
## 1863         SB_0526
## 1864         shyxkjk
## 1865      boosreason
## 1866        izzoyall
## 1867   do_alyssa0101
## 1868    hangyulieee_
## 1869    babbibababez
## 1870 EpicMahonelover
## 1871    ihugjeonghan
## 1872    _wonurideul_
## 1873        izzoyall
## 1874  mingyukimlover
## 1875     kiraya_mita
## 1876     jo_shuahong
## 1877  mingyukimlover
## 1878    dreamyjunhui
## 1879    junhui_budam
## 1880    babbibababez
## 1881        Anijhope
## 1882 love_leprechaun
## 1883    eternalfluff
## 1884          VtSxad
## 1885      iuhnujnoom
## 1886   reminscingsvt
## 1887    dandieloniee
## 1888      kxxtaehyun
## 1889  Jana_Horanghae
## 1890         bvbbley
## 1891 sebeuntinicarat
## 1892        stycrteu
## 1893    swaggyhoshii
## 1894        hiheesng
## 1895      ahgaselimm
## 1896       yoonziwon
## 1897       boothesun
## 1898    cheoliedaddu
## 1899        hiheesng
## 1900    babbibababez
## 1901       hvnscheol
## 1902   KyeomiesWorld
## 1903   MONSTAXkillus
## 1904      jcngwoniee
## 1905        jssysimp
## 1906       iiamjanne
## 1907        din8nara
## 1908      iuhnujnoom
## 1909        hiheesng
## 1910   seoksoologist
## 1911       chipa_17i
## 1912    babbibababez
## 1913     jo_shuahong
## 1914    dreamyjunhui
## 1915    dreamyjunhui
## 1916        hiheesng
## 1917        hiheesng
## 1918      powlaaaber
## 1919    babbibababez
## 1920    bobohohohoho
## 1921        ybtkcart
## 1922        wwjnluvr
## 1923        hiheesng
## 1924   eyxseungcheol
## 1925 CutieDokyeommie
## 1926 thisisrealjayyy
## 1927        maemeluv
## 1928        bhizarre
## 1929 jeonghansluvbot
## 1930        lovesdyo
## 1931        hiheesng
## 1932  KSJsweetpotato
## 1933       mownchild
## 1934 julietmontero11
## 1935     kaiterrdrie
## 1936           dvnee
## 1937     kaiterrdrie
## 1938   KyeomiesWorld
## 1939     kaiterrdrie
## 1940     heejinsrosy
## 1941           dvnee
## 1942     kaiterrdrie
## 1943    bootiful1998
## 1944      naveedurie
## 1945    CrizziaLopez
## 1946        hiheesng
## 1947   KyeomiesWorld
## 1948   h3ll0_exoteen
## 1949          yrwon_
## 1950   naiiiwonuyong
## 1951  minghaolicious
## 1952      da_yan_jin
## 1953          i6vhan
## 1954 julietmontero11
## 1955   KyeomiesWorld
## 1956 julietmontero11
## 1957        enchugoo
## 1958          jmjnty
## 1959      minlixxoxo
## 1960     joueuriwons
## 1961      Mingyulay_
## 1962      cloudubiii
## 1963        n_adilia
## 1964        abi14789
## 1965     joueuriwons
## 1966 julietmontero11
## 1967    lovemyselfbt
## 1968          vitaae
## 1969 blysfulchanhyun
## 1970 winwinluvs12231
## 1971 howoorecueillir
## 1972        smwqpqp1
## 1973     yaaaknoriii
## 1974    CrizziaLopez
## 1975    everafterain
## 1976      AlyloonyPH
## 1977   coupshanified
## 1978    favouritezoo
## 1979      addicTINEE
## 1980      Okiebrit19
## 1981     yellooow_02
## 1982      SeokHanne7
## 1983        maymaeey
## 1984      Lumiierree
## 1985      kwanseries
## 1986        hiheesng
## 1987 SimiaExspiravit
## 1988         Camisun
## 1989  ayodaddyshownu
## 1990        ya990211
## 1991       mingoohae
## 1992      extrasquee
## 1993     meloree_713
## 1994         jinsvee
## 1995 JulienneAranet1
## 1996      kwanseries
## 1997   coupshanified
## 1998      wonkyeomzz
## 1999        hiheesng
## 2000     gusibyukwon
## 2001        maymaeey
## 2002    honeybungyuu
## 2003   previousindex
## 2004         ikeuksn
## 2005      bookkeubox
## 2006      wonkyeomzz
## 2007       phoenenix
## 2008    Podongtruzie
## 2009      Issipisiii
## 2010      callmedkgf
## 2011     beensobabey
## 2012         xudiary
## 2013       ujigenius
## 2014     jo_shuahong
## 2015      e_scoupshi
## 2016    ikonicpunani
## 2017       hansknnie
## 2018  CabacangHannah
## 2019        putzzelo
## 2020    caratwolchez
## 2021      tinaneylon
## 2022    Bella_Bebe99
## 2023   bestboywoozi_
## 2024         lkim084
## 2025 TheEducatedBarb
## 2026  EuniceGentolio
## 2027       gyuilatte
## 2028      yoonssilvr
## 2029      chingurl96
## 2030     rubyjaniste
## 2031    dreamyjunhui
## 2032    mingyunism__
## 2033     itsmiramee_
## 2034      jackiesaku
## 2035         lkim084
## 2036       m1n9yu_ku
## 2037       liezldhin
## 2038      geonububby
## 2039        hiheesng
## 2040      Yo0nnation
## 2041      nanasev7en
## 2042       dyeyahne1
## 2043        i015snoe
## 2044 servicesbydonna
## 2045        hiheesng
## 2046      caratphile
## 2047        hiheesng
## 2048        hiheesng
## 2049        ksyhozhi
## 2050        hiheesng
## 2051       notchew18
## 2052    noona_dohyon
## 2053          jstsvt
## 2054      _dannyieee
## 2055     krizhielgwy
## 2056  sebongie1woo17
## 2057       m1n9yu_ku
## 2058 wondercheol9158
## 2059      jagiiii95z
## 2060      prioscoups
## 2061    jjong_hannie
## 2062    seuniesideup
## 2063   rayofsunkyeom
## 2064          jcf_aa
## 2065        ASAAVEEN
## 2066    mingfthao_17
## 2067     breadchenle
## 2068    mingfthao_17
## 2069   sousdictature
## 2070      armengggay
## 2071     PammyTrashy
## 2072          krz4ry
## 2073      JEONSNlGHT
## 2074 BeaExolaghcarat
## 2075          krz4ry
## 2076      KayeMissss
## 2077          615kwn
## 2078       ellexjeon
## 2079         _4btsvt
## 2080      Omi_Dollah
## 2081      addicTINEE
## 2082  NCT127_Dreamer
## 2083        JJENST4R
## 2084         zjhadey
## 2085         riIiple
## 2086 unexpectedcarat
## 2087        maymaeey
## 2088     windylearns
## 2089         nonusyi
## 2090 SeokjinOurMoon_
## 2091       Ricee____
## 2092     AlistairAli
## 2093    itss_tasiaaa
## 2094       hypeshota
## 2095     rockwithkoo
## 2096     windylearns
## 2097          gemsvt
## 2098       deboizone
## 2099         clowjfs
## 2100  cheonsannyeong
## 2101  wonuseungcheol
## 2102    jjong_hannie
## 2103        haoniste
## 2104   wonsollovebot
## 2105       SofhiaB19
## 2106  wonhanseoksoon
## 2107   Julia26954994
## 2108 unexpectedcarat
## 2109          gemsvt
## 2110   Julia26954994
## 2111        rindrina
## 2112      oohmakeuya
## 2113 unexpectedcarat
## 2114        maymaeey
## 2115  wonuseungcheol
## 2116     moonwen1996
## 2117      icecoupsoo
## 2118        jwwluuvs
## 2119  singgibanggi_7
## 2120          kezRmr
## 2121      skyxmhwjh_
## 2122          gemsvt
## 2123   horanghaehana
## 2124        jnwoowoo
## 2125        mimyumin
## 2126       boosksksk
## 2127 shua_1230315__y
## 2128          qscynr
## 2129         skhmjcw
## 2130 Kurotsuchi_____
## 2131          gemsvt
## 2132    berrymelonxx
## 2133     hongnotkong
## 2134        maymaeey
## 2135        rawrtast
## 2136        ahengeef
## 2137     soonchanlvr
## 2138        Romisk17
## 2139 CutieDokyeommie
## 2140 julietmontero11
## 2141  EuniceGentolio
## 2142 julietmontero11
## 2143   geochimeobshi
## 2144     joueuriwons
## 2145    Jincheollie8
## 2146       yaying_jf
## 2147  EuniceGentolio
## 2148 CutieDokyeommie
## 2149    cheolitopapi
## 2150    seongwujimin
## 2151    cheolitopapi
## 2152       l4l4milla
## 2153        jeonnbum
## 2154      byourhythm
## 2155        kw0nSarl
## 2156   bangteezkids_
## 2157      svntnzshua
## 2158        heebeans
## 2159          gemsvt
## 2160         dfordk_
## 2161    Seokjihanwon
## 2162          WH_OT7
## 2163    baekjeomahhh
## 2164   jhoannabeeeee
## 2165     just_pingu5
## 2166       l4l4milla
## 2167    hosh_hoshing
## 2168      mia_bbyuuu
## 2169  watanabaeparky
## 2170      KatsukiSel
## 2171     yoonzino_23
## 2172  lovesoonwooboo
## 2173     kimbokjooke
## 2174   wonranghaeee_
## 2175      pitcheolin
## 2176       NonieKoo_
## 2177     wonwoojoshy
## 2178    whore4marrow
## 2179       chwentchw
## 2180        shisoons
## 2181  hanniehaedaddu
## 2182       l4l4milla
## 2183    hancheolshii
## 2184     Evelin_6366
## 2185 92jenlisafanboy
## 2186     FatimaGail1
## 2187        jujuxvii
## 2188        ah_joshu
## 2189        ah_joshu
## 2190    fangirlll_19
## 2191       iloveesvt
## 2192        ah_joshu
## 2193 cutiejeonghan04
## 2194        B4NDSBOI
## 2195       LyzzznWon
## 2196        ah_joshu
## 2197       iloveesvt
## 2198          gemsvt
## 2199      mingyuIomI
## 2200      kyeowonwoo
## 2201  cherryberryhae
## 2202 JeonHwangSinKo1
## 2203     beensobabey
## 2204        ah_joshu
## 2205         aygchwe
## 2206       iloveesvt
## 2207     joueuriwons
## 2208         chwewei
## 2209    kerseyforyou
## 2210    cxexexjxaxyx
## 2211      otthirteen
## 2212          gemsvt
## 2213 JeonHwangSinKo1
## 2214       iloveesvt
## 2215         13ngyuu
## 2216      shishiyooo
## 2217  withshuaminwon
## 2218      yjeongh4an
## 2219     soulfullyst
## 2220      pfugallery
## 2221        x_xndzsy
## 2222       Eclipxe_s
## 2223   h3ll0_exoteen
## 2224         majaehs
## 2225        soft4ksy
## 2226        notjwonu
## 2227      imdeekayyy
## 2228       iloveesvt
## 2229       TOXX_XXOT
## 2230     jaz_beomjun
## 2231        seoksoar
## 2232          sjyvze
## 2233       iloveesvt
## 2234     cactusmunch
## 2235  17goldenbanana
## 2236       luv4cheol
## 2237         luna5ky
## 2238        nahyukie
## 2239  Cierracrouch91
## 2240       wonu_twou
## 2241        krshlvrn
## 2242      gethelight
## 2243 ridewithminaj__
## 2244      KWON_HANII
## 2245      kyeowonwoo
## 2246         17bbang
## 2247      DokyeomiaM
## 2248      nayeliii_a
## 2249       wonuluvsz
## 2250         lee_fy1
## 2251      _aichaaann
## 2252       binniee_4
## 2253      shishiyooo
## 2254     HIT0RIJANAI
## 2255       Almameni2
## 2256        eninisei
## 2257 Charlie86261337
## 2258    jjongjjingie
## 2259       qtpiewonu
## 2260        LOR3NLE1
## 2261      shishiyooo
## 2262       ahbabiboo
## 2263       haniinunu
## 2264    daphneleigh_
## 2265 sparklingcarat_
## 2266       iloveesvt
## 2267      shishiyooo
## 2268   svnchillhoons
## 2269         joshvtz
## 2270     iamyomonday
## 2271       palthe_17
## 2272         wonuwwj
## 2273         sskylwt
## 2274          kezRmr
## 2275         sskylwt
## 2276         gyusinn
## 2277        eninisei
## 2278         smdebus
## 2279         lee_fy1
## 2280        eninisei
## 2281       HyukELF93
## 2282      YunitaIsna
## 2283        jeonxena
## 2284         sskylwt
## 2285   uri_se7enteen
## 2286        hylnshua
## 2287   caiiipingul17
## 2288       imrj_0412
## 2289        chemiyow
## 2290         sskylwt
## 2291        nctzsvtz
## 2292       HyukELF93
## 2293       ehmmtasty
## 2294      mingyuIomI
## 2295        eninisei
## 2296         sskylwt
## 2297         sskylwt
## 2298      caratphile
## 2299         cesumss
## 2300         sskylwt
## 2301   marvelous_adi
## 2302 everyone____naa
## 2303    wonusdumdumb
## 2304    wonunuhannie
## 2305         sskylwt
## 2306         ilyramn
## 2307         sskylwt
## 2308   sanisanistore
## 2309  KimMingyuJapan
## 2310    JELLYJUNNl3S
## 2311         xumhlvr
## 2312   sohui20578605
## 2313         niexzly
## 2314      cloudkwon_
## 2315      8winenight
## 2316 Giovann67851767
## 2317  ExolSaythename
## 2318         sskylwt
## 2319 gyuldaengrideul
## 2320       jo_choisc
## 2321    salmiahali11
## 2322 BlanquizaMariel
## 2323   Hoosier_Diddy
## 2324         sskylwt
## 2325 margajuliamarga
## 2326      hanquookka
## 2327        hanieeun
## 2328         sskylwt
## 2329  chiechiechie02
## 2330         sskylwt
## 2331     leeeeyaaaah
## 2332        GuchinoJ
## 2333  whippedformgyu
## 2334     Angel030202
## 2335     DianHyunWoo
## 2336    gyucheolatte
## 2337        RojGinez
## 2338    jjongjjingie
## 2339      haulygraye
## 2340         bcnjake
## 2341         gyusinn
## 2342     DizonElaisa
## 2343     carat_hazel
## 2344     gam3bo1wonu
## 2345    eriyaxsebong
## 2346         huito_o
## 2347       hoshdiwon
## 2348     MooseKnight
## 2349  chiechiechie02
## 2350          bxvcgt
## 2351         O2_Zein
## 2352       kaiwonkat
## 2353   minghaocheol_
## 2354         mansaes
## 2355       minhobi32
## 2356         chwewei
## 2357  svtstinkerbell
## 2358       ha00linxx
## 2359    btsvt_myhome
## 2360     jjongdol_xx
## 2361    TaeGookieTan
## 2362          Ms0T13
## 2363       dinounits
## 2364       ellexjeon
## 2365     jungwoogfie
## 2366      smellarbee
## 2367 WonuDSoundMaker
## 2368       ChiiLee12
## 2369         ssolchw
## 2370  thixinhdep1312
## 2371      CaratHong_
## 2372     ArraAlexxaa
## 2373     nyenyen_ien
## 2374      CaeberCruz
## 2375   jenbrthdayb0y
## 2376         featsch
## 2377       nic_roxas
## 2378       heykimgyu
## 2379      handycoups
## 2380       heykimgyu
## 2381         gyusinn
## 2382     cheoliemoja
## 2383     milkuddalgi
## 2384      sophiicart
## 2385        aluvrlol
## 2386      radiantsjy
## 2387         kwonvay
## 2388     SVT_PHCarat
## 2389        qkuncart
## 2390 etherealhraeth_
## 2391        aluvrlol
## 2392        mmgg_svt
## 2393   seokiechievie
## 2394    makachiseo_k
## 2395        qkuncart
## 2396       binniee_4
## 2397  KSJsweetpotato
## 2398       iiamjanne
## 2399        Hosehel7
## 2400     wonungieeee
## 2401       _jjkyuala
## 2402  MichealSolis16
## 2403    dadduhannie_
## 2404       binniee_4
## 2405       leebubu24
## 2406       _featdlno
## 2407  vanillabluetae
## 2408      chanieyeom
## 2409      ilove_gyuu
## 2410     micchievous
## 2411  chim_ft_sebong
## 2412      missin_9yu
## 2413         gyusinn
## 2414    wubianxiwang
## 2415       doominsun
## 2416        SViTkraM
## 2417        ahluvgyu
## 2418 JeonHwangSinKo1
## 2419   wonsollovebot
## 2420   collie_plus_8
## 2421       mry_latte
## 2422       _wonuhoon
## 2423       _featdlno
## 2424          jjs_jh
## 2425        _sailene
## 2426          jjeyha
## 2427       kixxibixi
## 2428   mingyu_kyu411
## 2429      wonseoksgf
## 2430   Hajeongwoo123
## 2431 goingleftnright
## 2432        _sailene
## 2433     Gentlesexy7
## 2434          mwseyy
## 2435     scjnjh_9405
## 2436 SamSamloveDKhae
## 2437   min9yuahjussi
## 2438          Ieah05
## 2439      triplechb_
## 2440      gyurrified
## 2441    stellonlyyou
## 2442       nasolunar
## 2443  itsmntflcklare
## 2444     baekhyuaena
## 2445 ia_the_elfcarat
## 2446        10VET4LK
## 2447     _hanihae101
## 2448    gam3rhyunwoo
## 2449       jo_choisc
## 2450      wonypottee
## 2451      viaellehyc
## 2452          jjs_jh
## 2453       howanghee
## 2454       hypeshota
## 2455        _sailene
## 2456        maemeluv
## 2457      wonmariwoo
## 2458     yellooow_02
## 2459       hoshiiest
## 2460          al2ama
## 2461 eunice_boohanie
## 2462      heyyydarya
## 2463      MoonJianne
## 2464  _meowmeowrayne
## 2465  starlight_0807
## 2466     eightstar__
## 2467  ashlee68868054
## 2468          kmglty
## 2469     mingyusuaIs
## 2470         gyusinn
## 2471      arcel_chwe
## 2472   seokmin121722
## 2473      fansince14
## 2474      acheolnice
## 2475     RaphaFourth
## 2476     kenyasbodin
## 2477      wonmariwoo
## 2478      carrotkaik
## 2479  hanniefication
## 2480 katie_seventeen
## 2481    justdeekaaay
## 2482      snoopyhaul
## 2483       ehmmtasty
## 2484        dalyahao
## 2485   pure_be_kind1
## 2486     alexaxoxo__
## 2487  Ashley19533156
## 2488    my_justsmile
## 2489 mymymymymywaaay
## 2490     ronikosmoss
## 2491   winrosycheeks
## 2492       hoshiiest
## 2493      _yenyenyen
## 2494     wone_woonly
## 2495    gfsvtbzlover
## 2496   pure_be_kind1
## 2497           eixyr
## 2498         _dkutie
## 2499       charwong2
## 2500           eixyr
## 2501        handoks_
## 2502    swaggyhoshii
## 2503           eixyr
## 2504          96_UZI
## 2505    rumaishaahza
## 2506        odetovou
## 2507    jeongcheolbb
## 2508          yj_bbh
## 2509   weakforjoshua
## 2510   sunnykyeommie
## 2511    my_justsmile
## 2512 in2sebongs4ever
## 2513    Crescent0624
## 2514          bcgaes
## 2515    BroccoliGyuu
## 2516      leejchanie
## 2517   lovjeongcheol
## 2518          618444
## 2519       yuchicart
## 2520       reditulab
## 2521       ceryiskan
## 2522       reditulab
## 2523       reditulab
## 2524       spideekay
## 2525  _meowmeowrayne
## 2526       reditulab
## 2527      150499_jpg
## 2528        sshxxxbi
## 2529 SweetVixenMusic
## 2530     wonuvobohan
## 2531     nojeell0128
## 2532       MYLUCKYDK
## 2533     mingyushibe
## 2534       binniee_4
## 2535     kimjeonsimp
## 2536    my_justsmile
## 2537        shiahaee
## 2538  _twothreeerica
## 2539 MichelleAnglic7
## 2540         Tsaalit
## 2541    makachiseo_k
## 2542         na77y_p
## 2543    makachiseo_k
## 2544         _aki_re
## 2545 hobsunshinecart
## 2546  _meowmeowrayne
## 2547       jzheshoon
## 2548    anjo_monstax
## 2549          srzhyn
## 2550       OmimiZero
## 2551    shinkibanggi
## 2552       ehmmtasty
## 2553       hoshiiest
## 2554   sunnykyeommie
## 2555        xiubrows
## 2556       jwonumeow
## 2557         UtaunaH
## 2558     Lou82189528
## 2559    yourcaratzen
## 2560    shinkibanggi
## 2561      kaileee_01
## 2562       hoshiiest
## 2563  retroviralodds
## 2564       hoshiiest
## 2565         rv__svt
## 2566     nielleja_24
## 2567       jkscatkvn
## 2568   geochimeobshi
## 2569  foreverwithus7
## 2570  taekookietrash
## 2571       ellexjeon
## 2572      MariGuiMo_
## 2573  Jeon_WonwooMin
## 2574 happyjoanavirus
## 2575     kiraya_mita
## 2576 Cristin44278071
## 2577   _wonuniverse_
## 2578   sunnykyeommie
## 2579    mr_dumbell10
## 2580   _wonderfulwoo
## 2581      sunric_twt
## 2582      jj81185070
## 2583       ellexjeon
## 2584 happyjoanavirus
## 2585  minghaolicious
## 2586       AzzaWindi
## 2587     Angel030202
## 2588      sssssseee_
## 2589     Mnemoiselle
## 2590      KWON_HANII
## 2591         forsvt9
## 2592  _meowmeowrayne
## 2593        elynd1sh
## 2594 Mariana00381568
## 2595     Lou82189528
## 2596    baekjeomahhh
## 2597    Claudiavc121
## 2598          J1HOON
## 2599  Seventeen_17_3
## 2600        yuarinea
## 2601         jnhrsnn
## 2602  saythesebentin
## 2603          prynn0
## 2604      svtscrispy
## 2605   saythename_JP
## 2606        0129buys
## 2607      jooshuuuji
## 2608         ptrkavs
## 2609      renkumikun
## 2610          ZrlRah
## 2611       k_fancyuh
## 2612     Lou82189528
## 2613          ZrlRah
## 2614  saythesebentin
## 2615     scjnjh_9405
## 2616        sayitbnx
## 2617     haojimalago
## 2618        0129buys
## 2619  saythesebentin
## 2620  saythesebentin
## 2621      rinaiombak
## 2622        sayitbnx
## 2623   saythename_JP
## 2624   saythename_JP
## 2625      svttannies
## 2626   saythename_JP
## 2627     Mnemoiselle
## 2628     kiraya_mita
## 2629        Faxfalay
## 2630       SofaCat26
## 2631          ossalp
## 2632   saythename_JP
## 2633         eysabff
## 2634       AeArnirah
## 2635       ti9erkwon
## 2636    akitasounddd
## 2637        Faxfalay
## 2638       jjowashua
## 2639       Chxmskxns
## 2640    _firstluvsvt
## 2641       wonshua95
## 2642       ti9erkwon
## 2643      woojirangi
## 2644           swjki
## 2645  sierra_soleilx
## 2646       Suun_seok
## 2647         gyusinn
## 2648  coupranghaeisa
## 2649         SyubAmy
## 2650      MySunMoon2
## 2651         sskylwt
## 2652       EL_ICAAAA
## 2653        sayitbnx
## 2654         sskylwt
## 2655          JW9705
## 2656         sskylwt
## 2657         sskylwt
## 2658      kaileee_01
## 2659        sayitbnx
## 2660       Chxmskxns
## 2661       minggurie
## 2662   mayoonminkook
## 2663       deekaeisa
## 2664        monaevis
## 2665 techmidschteach
## 2666       hourlyebi
## 2667      WheeInfant
## 2668 in2sebongs4ever
## 2669     markkeuu028
## 2670       yugtenhao
## 2671       hoshiiest
## 2672 EpicMahonelover
## 2673       hobilvrsz
## 2674       yachi6666
## 2675     withgtseven
## 2676   hansolkrakers
## 2677  saythesebentin
## 2678       yupuwulan
## 2679       ChiiLee12
## 2680  saythesebentin
## 2681   hansolkrakers
## 2682         hwakuna
## 2683      florinedbd
## 2684  taeskookieshop
## 2685   hansolkrakers
## 2686        pergyuwu
## 2687       Jhanniyyy
## 2688       hoshiiest
## 2689          cydorj
## 2690       kaizerxyr
## 2691       wonshua95
## 2692     wickterrell
## 2693       ellexjeon
## 2694        tsay2120
## 2695         gyurese
## 2696    tuananikalix
## 2697    odetochannie
## 2698 Fernand90778248
## 2699 katie_seventeen
## 2700      icedminwon
## 2701       hanlikive
## 2702       kaizerxyr
## 2703         mwchnjn
## 2704   dohwanbestboi
## 2705       binniee_4
## 2706      shoeahsshi
## 2707       hoshiiest
## 2708         namxo_o
## 2709        yanah_17
## 2710    tuananikalix
## 2711      imbluehour
## 2712     realsvtshua
## 2713      booricano_
## 2714       hoshiiest
## 2715  kpop_love13_17
## 2716        huiluv17
## 2717     lee_seulbi1
## 2718  morancachorrao
## 2719  saythesebentin
## 2720    tuananikalix
## 2721        pergyuwu
## 2722       ChiiLee12
## 2723       ichimmyyy
## 2724      icedminwon
## 2725        yanah_17
## 2726     mahal5_0430
## 2727       wonu_twou
## 2728 martyna_koniara
## 2729    tuananikalix
## 2730  SEVENTEENINFO1
## 2731        yanah_17
## 2732    tuananikalix
## 2733  dailyoungkhaye
## 2734 EpicMahonelover
## 2735        sserasol
## 2736        r_u_nice
## 2737         _aiioo_
## 2738        niw__new
## 2739      svtscrispy
## 2740       dmdefiore
## 2741     fairyhaoshi
## 2742      fordeoboyz
## 2743       hoeshijun
## 2744         bri_lrq
## 2745         chhyraa
## 2746  saythesebentin
## 2747       mrjhnllyd
## 2748        ravtoyou
## 2749         chhyraa
## 2750  SEVENTEENINFO1
## 2751    unodostrizz_
## 2752      wonutiktik
## 2753    United4Pinks
## 2754       Chxmskxns
## 2755    daphneleigh_
## 2756      Chilboni11
## 2757         teume2u
## 2758     withgtseven
## 2759      furcoathao
## 2760       Chxmskxns
## 2761       doominsun
## 2762 katie_seventeen
## 2763      mullenbe11
## 2764 geniusmoonvante
## 2765      AbbyMccord
## 2766  sierra_soleilx
## 2767        monbewon
## 2768           _r4i9
## 2769    deeekaaayyy_
## 2770      kaiiii_abl
## 2771       hoshiiest
## 2772   kidemaharanii
## 2773  SEVENTEENINFO1
## 2774    wonuwoocartt
## 2775        hikunsuk
## 2776       jiseokhao
## 2777  shu_nyamik_0o0
## 2778       hoshiiest
## 2779      Going_1woo
## 2780 geniusmoonvante
## 2781    artist_jhope
## 2782  SEVENTEENINFO1
## 2783  SEVENTEENINFO1
## 2784       hoshiiest
## 2785         mwchnjn
## 2786  SEVENTEENINFO1
## 2787      hozicheolo
## 2788    xumingha_o17
## 2789     lololoveuto
## 2790     alovelyfan_
## 2791       moonikwan
## 2792  maxineeehannie
## 2793       Chxmskxns
## 2794  saythesebentin
## 2795          96_UZI
## 2796     yow_sopyaaa
## 2797    zinnzalabim_
## 2798       sssebbbb_
## 2799  saythesebentin
## 2800  ChinkyutieOT12
## 2801         W1gmund
## 2802   dohwanbestboi
## 2803       _AnnVera_
## 2804    nanamshaliee
## 2805    hanniejeongz
## 2806     coupsloverr
## 2807  saythesebentin
## 2808  ChinkyutieOT12
## 2809         gyusinn
## 2810    nanamshaliee
## 2811     imwithjjong
## 2812   yusansunshine
## 2813  saythesebentin
## 2814        wonuupie
## 2815    hanniejeongz
## 2816        wonuupie
## 2817  SnowSunshineee
## 2818         msbston
## 2819       binniee_4
## 2820       rinsykwon
## 2821   tigerhoshiiii
## 2822   H0RANGHAEY00N
## 2823         chadzlt
## 2824      shiho_kim_
## 2825           gyuw_
## 2826       cheolt4ng
## 2827     coupsloverr
## 2828     itsmemarsea
## 2829        jnshuhaa
## 2830        jnshuhaa
## 2831       joonzino_
## 2832    nanamshaliee
## 2833       iluvponyo
## 2834        meowjnh_
## 2835    SinogbaAngel
## 2836   HOSHlFlCATlON
## 2837     ryushokupan
## 2838   xprssnsbymela
## 2839      woojirangi
## 2840 EpicMahonelover
## 2841       Chxmskxns
## 2842       binniee_4
## 2843      cart4taebi
## 2844   joshuasboyfie
## 2845         cyksivz
## 2846     chilcheol17
## 2847       somizitos
## 2848      shiho_kim_
## 2849     amor_neesha
## 2850          stthsn
## 2851   shiningdkyeom
## 2852 chocolexeascart
## 2853       ProZoneGD
## 2854      cart4taebi
## 2855     MINWHOMSTve
## 2856       Chxmskxns
## 2857      hozicheolo
## 2858  smilingdokyeom
## 2859  saythesebentin
## 2860    giuliaaaaa01
## 2861         fpdls_v
## 2862       Rj1Stacia
## 2863        61wonu_u
## 2864        fool4svt
## 2865    ArlethGiron4
## 2866     KimKaaIndri
## 2867    BamBamsBABYY
## 2868         GDKAI20
## 2869 jincrystalvoice
## 2870     seokgyukart
## 2871 Syarifah_Aini98
## 2872        jwwcloud
## 2873      booricano_
## 2874       LynRogero
## 2875   shiningdkyeom
## 2876  sierra_soleilx
## 2877     jo_shuahong
## 2878        iseoubel
## 2879        Brnrd_12
## 2880      booricano_
## 2881        jnghn410
## 2882   shiningdkyeom
## 2883  smilingdokyeom
## 2884     luciaelle25
## 2885        bunycatz
## 2886    SinogbaAngel
## 2887     wooshistick
## 2888      dokmingwoo
## 2889       8contents
## 2890     minimalbaca
## 2891  thixinhdep1312
## 2892     kenyasbodin
## 2893   shiningdkyeom
## 2894    sportsgeek42
## 2895   AdikPledis_17
## 2896      wwonuyoung
## 2897     kenyasbodin
## 2898       yoonjhany
## 2899       KylaKysha
## 2900      cheolsinta
## 2901    yo_onjeongha
## 2902 skskskskksgyuuu
## 2903        yjhvnnie
## 2904  coupranghaeisa
## 2905      addicTINEE
## 2906     mikalvision
## 2907          stthsn
## 2908       cherreale
## 2909 Lillian79976312
## 2910       _ravenboo
## 2911   shiningdkyeom
## 2912        2kay2kay
## 2913         gyusinn
## 2914   AdikPledis_17
## 2915        jijung31
## 2916     kenyasbodin
## 2917   lovjeongcheol
## 2918     meaniedraft
## 2919     _Horangrace
## 2920  itsmntflcklare
## 2921      _JJKLOVE__
## 2922      cloudkwon_
## 2923      ikaingaldo
## 2924    honeyjoo0514
## 2925     JenKasper81
## 2926       leerraeel
## 2927       Eclipxe_s
## 2928      jodilbeers
## 2929  nox_et_stellae
## 2930 yoongisdompling
## 2931  prdsdefprncss_
## 2932  sierra_soleilx
## 2933      kyeomispov
## 2934 yoonjeonghannny
## 2935          prynn0
## 2936    avocadoeluvs
## 2937    yoon_woo_soo
## 2938       ustwonwoo
## 2939   softboiwonwoo
## 2940       Eclipxe_s
## 2941       Eclipxe_s
## 2942        atin1918
## 2943  Jana_Horanghae
## 2944       ustwonwoo
## 2945         str_ony
## 2946     into_SooHui
## 2947       maristaas
## 2948    avocadoeluvs
## 2949          _dy178
## 2950     featscoupss
## 2951      kaileee_01
## 2952    avocadoeluvs
## 2953 OktavianiSinta3
## 2954       KylaKysha
## 2955     itsmemarsea
## 2956          stthsn
## 2957   DarkchocoJean
## 2958     sebongtinin
## 2959      jshcllngif
## 2960   blessie_lampa
## 2961     Lou82189528
## 2962   blessie_lampa
## 2963    seokchanhoon
## 2964     daehyungwim
## 2965    onlyoonchoi_
## 2966   DarkchocoJean
## 2967    seokchanhoon
## 2968       seonghyks
## 2969       faketobio
## 2970         _lovgyu
## 2971 wonseokuniverse
## 2972     hantydumpty
## 2973      dokmingwoo
## 2974    chaeyoungnna
## 2975      myskrrrrrt
## 2976 jeonjungcooky01
## 2977         jiswgyu
## 2978     SVT_xxshuaa
## 2979    lovemaze1992
## 2980          lwlla4
## 2981       ddaddu_17
## 2982     dinonara_15
## 2983  miura364082557
## 2984      mileunashi
## 2985 katie_seventeen
## 2986   javemeareason
## 2987     gam3bo1wonu
## 2988         mmt2431
## 2989       zy_wonsol
## 2990       Eclipxe_s
## 2991        e0heung_
## 2992     SVT_xxshuaa
## 2993 Lillian79976312
## 2994    ddaengdaebak
## 2995       ajunkkyyu
## 2996         shu8hae
## 2997       hani_cc17
## 2998         xuThe_8
## 2999        pwonkwan
## 3000       Kimjineda
## 3001 teatimewiththe8
## 3002       wonuskmin
## 3003     anajanine14
## 3004      _JJKLOVE__
## 3005   blessie_lampa
## 3006        9yuramen
## 3007    poottee_wonu
## 3008      koominiee_
## 3009         _dkutie
## 3010     orionandyou
## 3011     yousaranksj
## 3012       MeraLYS7N
## 3013      jimim_luvr
## 3014     s2nochikara
## 3015        eisazone
## 3016      ReinaKim06
## 3017     bitenbitter
## 3018      cheolsinta
## 3019      PABLOistic
## 3020      moonjunwin
## 3021       aviderrrr
## 3022  enjellovesyoon
## 3023        elyxcart
## 3024 Lillian79976312
## 3025   lorraineriego
## 3026  i_lightbeamers
## 3027      addicTINEE
## 3028 Lillian79976312
## 3029     sebongtinin
## 3030         jiestos
## 3031  AugustaHollywd
## 3032   ValentinaBSTV
## 3033    Nbodylistens
## 3034    sweetanime99
## 3035  Roberta_Lostia
## 3036       lil_meooo
## 3037      riri_eresh
## 3038  shuaranghaeeee
## 3039    gauri_always
## 3040        birulawt
## 3041  Roberta_Lostia
## 3042  sarcasticpaulo
## 3043   wonuuthankyou
## 3044 StewartSmithTwt
## 3045      stillbamie
## 3046        ospaxpop
## 3047         dkavinn
## 3048         niaeowz
## 3049        vrnnqtie
## 3050    sweetanime99
## 3051        shyuabun
## 3052    woncheolonly
## 3053         dangjwu
## 3054      stillbamie
## 3055       cheolt4ng
## 3056      thecheorry
## 3057 NickThiwerspoon
## 3058      thecheorry
## 3059       Doahae_17
## 3060       ketuabemm
## 3061      breadhao_o
## 3062      seungppiri
## 3063      hoshihtzuu
## 3064        tsay2120
## 3065   aladream31258
## 3066 katie_seventeen
## 3067        grrshxxx
## 3068    seokminroyal
## 3069       cheollryy
## 3070      cloudedbyu
## 3071    hanniejeongz
## 3072   ramyeonshikie
## 3073 theworldofshery
## 3074     jhhjantiera
## 3075      marieyaaee
## 3076        lamyeonz
## 3077 katie_seventeen
## 3078       us_writes
## 3079     ENGENEEEEE3
## 3080 theworldofshery
## 3081  Littlelambseat
## 3082       howanghee
## 3083   jihanificient
## 3084      carathae96
## 3085        elyxcart
## 3086   jihanificient
## 3087       chwentchw
## 3088 theworldofshery
## 3089  Roberta_Lostia
## 3090      _JJKLOVE__
## 3091        9yuramen
## 3092  Jana_Horanghae
## 3093          prynn0
## 3094      _JJKLOVE__
## 3095    lyonsagility
## 3096       wonyubuys
## 3097    sweetanime99
## 3098     wonurisoons
## 3099        kwoneisa
## 3100         taleofg
## 3101       wonyubuys
## 3102      hoonlights
## 3103  Jana_Horanghae
## 3104       wonyubuys
## 3105         m_khs11
## 3106     kyeomshijun
## 3107      svt_Moochi
## 3108     jhhjantiera
## 3109      cart4taebi
## 3110        junjolii
## 3111 CL0UDYSKIES_JPG
## 3112      joshy_buys
## 3113      cart4taebi
## 3114 Lillian79976312
## 3115       ksnfxyO17
## 3116   patchots_cart
## 3117  shuaranghaeeee
## 3118       ksnfxyO17
## 3119     Den61164492
## 3120      eisahyegi_
## 3121      DokyeomiaM
## 3122          oiiau1
## 3123        chattase
## 3124          AJSRNJ
## 3125   Lalalalisabp1
## 3126        tbqltbql
## 3127    JaiParonable
## 3128        mingy0_o
## 3129      DokyeomiaM
## 3130        mingy0_o
## 3131      sugarjeans
## 3132       dokyeowo_
## 3133     _hanabibiii
## 3134    JaiParonable
## 3135       jikoohaul
## 3136      btsvt_OT20
## 3137        wsecarat
## 3138     wonurisoons
## 3139         jng_hun
## 3140 bangtan_vorahae
## 3141  rsqrtzserenity
## 3142    lazybear1783
## 3143   sweetieonewoo
## 3144  Roberta_Lostia
## 3145        svtxtini
## 3146     meloree_713
## 3147   kyunsdaydream
## 3148         hcshinx
## 3149      pqpolitics
## 3150       kichanie_
## 3151         hcshinx
## 3152 sunwoonoona0412
## 3153      btsvt_OT20
## 3154        96WONWON
## 3155 hanniecheolieee
## 3156        9yuramen
## 3157    nanamshaliee
## 3158          skeym_
## 3159 onyourj_eonghan
## 3160        svtxtini
## 3161     byrvnmrthvn
## 3162  Roberta_Lostia
## 3163        jijung31
## 3164        9yuramen
## 3165   SamRoseWatson
## 3166     cua_yolanda
## 3167    jagi_baeksoo
## 3168     Coenffl0514
## 3169    svtquerencia
## 3170      addicTINEE
## 3171      triplechb_
## 3172       meanieral
## 3173         _shuahi
## 3174       FthScoups
## 3175    kim_vannetae
## 3176       KarenTKD2
## 3177       the8cheng
## 3178      comicsoons
## 3179        96WONWON
## 3180    svtquerencia
## 3181   cia_kyeomshua
## 3182    dokyeomhanie
## 3183      shuahyunle
## 3184  imyourhope_jhs
## 3185   HollyAnderson
## 3186   yjhanniepyong
## 3187      yawnonewoo
## 3188  cheolcheollie_
## 3189   meongitemjeon
## 3190        catvrnon
## 3191      cart4taebi
## 3192   meongitemjeon
## 3193       iyoimiyai
## 3194      wonnosleep
## 3195       itsieworm
## 3196 min_gyuldaengie
## 3197        jponze24
## 3198      Adalid1004
## 3199        wsecarat
## 3200  jodohnyaksoo12
## 3201      bookishian
## 3202        chattase
## 3203 min_gyuldaengie
## 3204        pedzz_bd
## 3205          kezRmr
## 3206        lm1004th
## 3207        mistycsc
## 3208      gyulovelyy
## 3209   junoneplusone
## 3210    hanii_noonie
## 3211   junoneplusone
## 3212       GukMatoki
## 3213      s_scoups95
## 3214   saturnsorbit_
## 3215 favcheolcolatte
## 3216  lightcherrybee
## 3217 taro_marshmallo
## 3218        wsecarat
## 3219    piriwonpiris
## 3220     JE0NGINFLRT
## 3221   threetwonewoo
## 3222        JEON96WO
## 3223        wsecarat
## 3224     JE0NGINFLRT
## 3225   threetwonewoo
## 3226    arinnoexiste
## 3227     JE0NGINFLRT
## 3228  hoRANGHAEshiii
## 3229        wsecarat
## 3230       adean2025
## 3231        arys_mbb
## 3232     curimansi88
## 3233 hanniecheolieee
## 3234         _cxjayy
## 3235      urityongie
## 3236          cjclvs
## 3237    gyuseokhao97
## 3238        _intosvt
## 3239    girlstar_MBb
## 3240 krystalicznosc_
## 3241  Jana_Horanghae
## 3242     vvsoonyoung
## 3243 OktavianiSinta3
## 3244         ave5177
## 3245         xpjjkth
## 3246     kate_rach12
## 3247        iamsisha
## 3248      drowsyyy95
## 3249       the8cheng
## 3250      blankblush
## 3251        odetovou
## 3252    JiHannie0430
## 3253   thesnapshoots
## 3254    OxSvtEnhaSkz
## 3255       allowasky
## 3256        arumdyni
## 3257  Itsmepeeyyyttt
## 3258      Iyabenteen
## 3259       din0logy_
## 3260    sweetanime99
## 3261        iamsisha
## 3262        wowoozi_
## 3263    sweetanime99
## 3264        bcd_siew
## 3265  prdsdefprncss_
## 3266   liliiiiiiii_0
## 3267    niyarhmdny61
## 3268        boosboo_
## 3269      renjuntink
## 3270   uarmyprincess
## 3271  onetwosvnsquad
## 3272      najaeminax
## 3273  1004_Cheonghan
## 3274         zvndruh
## 3275        knjdkjww
## 3276     eightstar__
## 3277   addtocarteume
## 3278   liliiiiiiii_0
## 3279     minxhoshilv
## 3280        x_xndzsy
## 3281        catvrnon
## 3282   seoksoominwon
## 3283       allowasky
## 3284    DKHOSHISVT17
## 3285         vndump1
## 3286  HolyVandSuga03
## 3287     shiashishii
## 3288        wowoozi_
## 3289     junniemoon_
## 3290     kithicdames
## 3291   4darksunsets_
## 3292      hoebynight
## 3293        wowoozi_
## 3294      _imacarrot
## 3295 anyeongHOSHIyow
## 3296         Ayeroha
## 3297       btsvtlife
## 3298        wowoozi_
## 3299      hoebynight
## 3300          SHNLVI
## 3301 cheonsaimnidaaa
## 3302        wowoozi_
## 3303      shuashuji_
## 3304     wonwoncheol
## 3305       qtpiewonu
## 3306       iyoimiyai
## 3307      hoebynight
## 3308    moonchiIdhan
## 3309      carrotdeul
## 3310 cheollierancher
## 3311     ri_yomiaka_
## 3312       iyoimiyai
## 3313      _imacarrot
## 3314     ri_yomiaka_
## 3315      _imacarrot
## 3316     ri_yomiaka_
## 3317      via_is_avi
## 3318        halowonu
## 3319      _imacarrot
## 3320     kwonjeology
## 3321  Jana_Horanghae
## 3322  qwertaeyawnzzn
## 3323    JaiParonable
## 3324      _imacarrot
## 3325     ri_yomiaka_
## 3326   addtocarteume
## 3327  orianademierda
## 3328    JaiParonable
## 3329       joollylee
## 3330          dkymii
## 3331  Jana_Horanghae
## 3332     wonwoncheol
## 3333  Jana_Horanghae
## 3334   addtocarteume
## 3335  minghaosgiggle
## 3336       weannmxix
## 3337  teteplusgoogie
## 3338         bibivmt
## 3339     flos_osseus
## 3340  itsmntflcklare
## 3341         vntaexv
## 3342  Jana_Horanghae
## 3343 4v6ku4bmcJ7vHLy
## 3344       ibexenina
## 3345    dmpilgnfrncn
## 3346       ibexenina
## 3347 in2sebongs4ever
## 3348       ibexenina
## 3349  1004_Cheonghan
## 3350         vsqzc__
## 3351      JVOBADNEWS
## 3352        rvelmina
## 3353 Lillian79976312
## 3354        yowcoups
## 3355 Lillian79976312
## 3356 in2sebongs4ever
## 3357 ambiguous_amica
## 3358        kaiaxiii
## 3359       notchew18
## 3360        wowoozi_
## 3361   prodleejihoon
## 3362 Lillian79976312
## 3363       cain_fiel
## 3364         vsyouri
## 3365      Erkdizon25
## 3366   formingyu0208
## 3367     sartojoycee
## 3368       dinounits
## 3369       wonyubuys
## 3370    JaiParonable
## 3371 ruuubbbyyyyyyy4
## 3372      DokyeomiaM
## 3373      meaniewon_
## 3374      q_eenlopez
## 3375        wowoozi_
## 3376     lalaine_svt
## 3377    wildfirechae
## 3378       tiivvaaaa
## 3379       wonyubuys
## 3380 Lillian79976312
## 3381     _tzudorimin
## 3382      seok_jinam
## 3383   __WINTERMNJNG
## 3384  kyeommiedoremi
## 3385        wowoozi_
## 3386 Lillian79976312
## 3387  Jana_Horanghae
## 3388  teteplusgoogie
## 3389     25hupfendes
## 3390     VerbaSophia
## 3391 in2sebongs4ever
## 3392    dokyeomsvt10
## 3393   addtocarteume
## 3394       jeykey918
## 3395      koominiee_
## 3396  The_Drink_King
## 3397  rsqrtzserenity
## 3398       us_writes
## 3399 lovingmarinette
## 3400  personaltrashy
## 3401  moonjunhuihehe
## 3402        chattase
## 3403      hoshi_ky17
## 3404        eupauria
## 3405        wowoozi_
## 3406       aeieio_08
## 3407     nunbitterie
## 3408 Lillian79976312
## 3409     _tzudorimin
## 3410        hohuishi
## 3411  1004_Cheonghan
## 3412    amorabrienne
## 3413       fdxlla_na
## 3414     BOOTIEJESUS
## 3415    nanamshaliee
## 3416   addtocarteume
## 3417        xLeeKimx
## 3418  seokminoodles_
## 3419 in2sebongs4ever
## 3420        wowoozi_
## 3421 cheollierancher
## 3422      haydee199x
## 3423      jeonghan00
## 3424      hoebynight
## 3425        elnsxx07
## 3426 in2sebongs4ever
## 3427       kelimansi
## 3428    nanamshaliee
## 3429        tala_eri
## 3430       liza2196_
## 3431 acoustic_jisoo_
## 3432        markbium
## 3433       strawshua
## 3434 in2sebongs4ever
## 3435   FLOWERBOYSVTN
## 3436        kaiaxiii
## 3437   rkiveprettygf
## 3438     Santyyoo_97
## 3439   rkiveprettygf
## 3440    moonchiIdhan
## 3441  thundeeercloud
## 3442       wo_okyeom
## 3443        XRPdad23
## 3444         wonji96
## 3445    kyeomdaisies
## 3446       hopanness
## 3447      luvielilyv
## 3448     8makes1crab
## 3449  shuaashushushu
## 3450         wonji96
## 3451       _ravenboo
## 3452  shuaashushushu
## 3453        noraehey
## 3454      SasaHwang_
## 3455       ellie1700
## 3456  shuaashushushu
## 3457 in2sebongs4ever
## 3458    dmpilgnfrncn
## 3459    Coco07841857
## 3460 in2sebongs4ever
## 3461 in2sebongs4ever
## 3462   DwiNurlaeli11
## 3463 in2sebongs4ever
## 3464         hkaiove
## 3465 AnaSofa85784392
## 3466    dmpilgnfrncn
## 3467    Coco07841857
## 3468 SVTs_CARAT_YMMD
## 3469        _sojubuu
## 3470   FLOWERBOYSVTN
## 3471     lalawonshua
## 3472    dmpilgnfrncn
## 3473    GuiangAndrea
## 3474 in2sebongs4ever
## 3475      najaeminax
## 3476       luv__wonu
## 3477    dmpilgnfrncn
## 3478          huiblg
## 3479          NTO3OK
## 3480 in2sebongs4ever
## 3481    woozisplanet
## 3482    jeydinalways
## 3483         jisocyn
## 3484 in2sebongs4ever
## 3485      beahdaaay_
## 3486 in2sebongs4ever
## 3487    dmpilgnfrncn
## 3488   theotrickmann
## 3489        heyckffl
## 3490   dawgcommander
## 3491    dmpilgnfrncn
## 3492     _hanabibiii
## 3493        _imkkung
## 3494        noraehey
## 3495 Kim_AppleJinnie
## 3496    dmpilgnfrncn
## 3497         jusw_yo
## 3498      najaeminax
## 3499  jangseowon0506
## 3500       mrlnjnyzq
## 3501        _martski
## 3502  minghaosgiggle
## 3503   cia_kyeomshua
## 3504        jchukims
## 3505     han_keychan
## 3506       mrlnjnyzq
## 3507     beejungkook
## 3508    dmpilgnfrncn
## 3509     Malia_liine
## 3510      wonmariwoo
## 3511          bffswm
## 3512          bffswm
## 3513       strawshua
## 3514   uriPirateKing
## 3515       mrlnjnyzq
## 3516   kio_batumbaks
## 3517       mrlnjnyzq
## 3518     _LovelyMini
## 3519      moonmonggu
## 3520   uriPirateKing
## 3521         RiLo_08
## 3522         _kixyaa
## 3523      hoshijashy
## 3524  anne_yeong1004
## 3525         RiLo_08
## 3526       mrlnjnyzq
## 3527       jdynn1299
## 3528    dmpilgnfrncn
## 3529        zairawrr
## 3530      jjhuembp10
## 3531   rkiveprettygf
## 3532    svtdkwhipped
## 3533   rkiveprettygf
## 3534       huiluna17
## 3535        djsuh_10
## 3536      akukaratan
## 3537         justhvc
## 3538   jjeonghannxie
## 3539       CASVT_315
## 3540  starrysectorep
## 3541       Kateez_01
## 3542   loveskyeomshu
## 3543   rkiveprettygf
## 3544  aprilabsyuu6SJ
## 3545         Xelliy1
## 3546       mrlnjnyzq
## 3547     Chrishaynee
## 3548      minmo_onie
## 3549       strawshua
## 3550 _angelavidaloca
## 3551 JudyAnn28655971
## 3552    alyce_layden
## 3553        kyeomzyo
## 3554     han_keychan
## 3555 MCrisisTraveler
## 3556       schpsych8
## 3557         fpdls_v
## 3558    happyangelar
## 3559   moonjunhuisgf
## 3560         gyutuaI
## 3561      _taestytae
## 3562  spanishlatthe8
## 3563   hellevator67_
## 3564   rkiveprettygf
## 3565      akukaratan
## 3566        alynhbui
## 3567        j_soohwa
## 3568      jannayyyyy
## 3569   rkiveprettygf
## 3570    hannieficent
## 3571       ellie1700
## 3572      hanquookka
## 3573       mrlnjnyzq
## 3574      akukaratan
## 3575      dinoe_1999
## 3576       chrxphiyu
## 3577     25hupfendes
## 3578     sunrise_def
## 3579       wonwoost_
## 3580       mrlnjnyzq
## 3581        zairawrr
## 3582      dinoe_1999
## 3583          aeceyy
## 3584         c750123
## 3585     sartojoycee
## 3586      MichWen548
## 3587       rjthbags_
## 3588       mrlnjnyzq
## 3589    happyangelar
## 3590       meanieral
## 3591       rjthbags_
## 3592    dmpilgnfrncn
## 3593       zxcvbn248
## 3594     xpeacyjuns_
## 3595    dmpilgnfrncn
## 3596          jjs_jh
## 3597         zands_a
## 3598      hanquookka
## 3599 jeongcheolmahar
## 3600    dmpilgnfrncn
## 3601       ahloveyew
## 3602  starrysectorep
## 3603    btsvt_myhome
## 3604        eeaeauea
## 3605     Mandyamour3
## 3606       CASVT_315
## 3607   loveskyeomshu
## 3608     CaratxTeume
## 3609     _tzudorimin
## 3610    dmpilgnfrncn
## 3611        nomaesce
## 3612   loveskyeomshu
## 3613      hanquookka
## 3614 fitrianashinoda
## 3615   soft4ensvtexo
## 3616          HAN1RM
## 3617        zairawrr
## 3618         zands_a
## 3619      hobiiicart
## 3620    daphneleigh_
## 3621  svtdaydreaming
## 3622      hanquookka
## 3623       vobosquad
## 3624    dmpilgnfrncn
## 3625     rajjaameer1
## 3626    wonhaogyuhui
## 3627    treasuremaru
## 3628      dinasami22
## 3629       CASVT_315
## 3630   loveskyeomshu
## 3631    CurtneyloveB
## 3632    CurtneyloveB
## 3633    CurtneyloveB
## 3634       jdynn1299
## 3635        jchukims
## 3636  istrinyascoups
## 3637       CASVT_315
## 3638   Dulce51033154
## 3639   MoonSupport_1
## 3640     AHL0VECHE0L
## 3641      dinoe_1999
## 3642       notchew18
## 3643        jchukims
## 3644       SickSide3
## 3645    moonchiIdhan
## 3646        fuhaesun
## 3647        bstvst__
## 3648        jchukims
## 3649  anne_yeong1004
## 3650     Atinybebe62
## 3651        kim_zeph
## 3652      venusgleam
## 3653      seolforgyu
## 3654   kihyunroyalty
## 3655    shannabonbon
## 3656   loveskyeomshu
## 3657 namjooningrkive
## 3658       ksywangja
## 3659        ttoinks_
## 3660     coupshanshi
## 3661 sophiadas_neves
## 3662   s_cutie_cheol
## 3663     gyeomseokie
## 3664   loveskyeomshu
## 3665    tarabeach123
## 3666     soulfullyst
## 3667     17ismylife3
## 3668      LynT19_SVT
## 3669 zenitramynnej14
## 3670  anne_yeong1004
## 3671     IgneousRose
## 3672        MSeoksoo
## 3673      sadturxnus
## 3674   HeyIamCamille
## 3675  myharujjongshu
## 3676     cparkclaims
## 3677     leeeeyaaaah
## 3678        jchukims
## 3679         det_tan
## 3680      cb97staner
## 3681         sjywonu
## 3682      hooniechwe
## 3683  forjungwononly
## 3684   loveskyeomshu
## 3685      JHaniToast
## 3686     pedantichoe
## 3687       GukMatoki
## 3688  reginachagon19
## 3689       wwoncartz
## 3690         400461i
## 3691       Hanihae92
## 3692   loveskyeomshu
## 3693    svtquerencia
## 3694         400461i
## 3695       _minguu_k
## 3696      jannayyyyy
## 3697    hondrada_bea
## 3698         lee_fy1
## 3699    wowamawijjjj
## 3700  GardenFairy_WW
## 3701       shujipaui
## 3702       esecupsee
## 3703       wonufolla
## 3704     dumplingyuu
## 3705        daypill6
## 3706       lovelyyjn
## 3707          Mrsbc7
## 3708    cruel_cupidd
## 3709        hunyohui
## 3710       JEON96WON
## 3711          byuldk
## 3712        ariesksj
## 3713     whenuusleep
## 3714   MoonSupport_1
## 3715    ReyAntonio73
## 3716          kezRmr
## 3717       jdynn1299
## 3718     sebongsHae_
## 3719      8winenight
## 3720    NOVIEXNICKII
## 3721          i2wons
## 3722    MaryMary0414
## 3723  SeptemberMorn4
## 3724    _ForLalisa_m
## 3725    nikkoupstatu
## 3726       sihstress
## 3727    kyeomdaisies
## 3728 jeongcheolmahar
## 3729      dinoe_1999
## 3730      akiiidult_
## 3731      ynaloves17
## 3732      youngbriar
## 3733     everyownwoo
## 3734   madrona_ciara
## 3735      dinoe_1999
## 3736         400461i
## 3737   cheolranghae_
## 3738         400461i
## 3739       sheiwoo92
## 3740      youngbriar
## 3741   Emerald007007
## 3742    nikkoupstatu
## 3743     myonlywoozi
## 3744      shuaa_jizy
## 3745  anne_yeong1004
## 3746       _95jhyoon
## 3747       userlili_
## 3748     gianeromano
## 3749        jeykeeyz
## 3750    catheeeeeey_
## 3751          rgskmm
## 3752       qoh93_aus
## 3753 rosymikrokosmos
## 3754     myonlywoozi
## 3755   sunoobonjbonj
## 3756    carats052615
## 3757         1UVAZR4
## 3758   maiochiruhani
## 3759  ItsAwa99216003
## 3760        Ath1201R
## 3761  anne_yeong1004
## 3762      via_is_avi
## 3763   s_cutie_cheol
## 3764   learntolive09
## 3765       jaywonlov
## 3766         yu_haos
## 3767      Chwe_Loren
## 3768     soonchanlvr
## 3769         the8flr
## 3770   s_cutie_cheol
## 3771   YG_WATERMELON
## 3772      yjeongh4an
## 3773  seokminoodles_
## 3774        lottoten
## 3775       yzafanacc
## 3776       haeshinny
## 3777    ching_min024
## 3778     KwanSolChan
## 3779 thatseokjinstan
## 3780   Real_Estate18
## 3781  Orangeblobaloo
## 3782       wwoncartz
## 3783   sunoobonjbonj
## 3784        hoshwidk
## 3785    kyeomdaisies
## 3786       dh_qorgks
## 3787         ngla444
## 3788     myungholine
## 3789   Soonding_0615
## 3790       LMAbigwin
## 3791      kadzunia76
## 3792      cloudywon_
## 3793        Amorrhey
## 3794      kihyunsjay
## 3795        txtyun__
## 3796   eyxseungcheol
## 3797      dinoe_1999
## 3798    chcjhn_hhjin
## 3799 KiannaJ52205189
## 3800      aaronjacko
## 3801     MylaGA17SVT
## 3802    BadyahHassan
## 3803     Mysmoothie_
## 3804     kylareiiwoo
## 3805    chakojamthme
## 3806   cia_kyeomshua
## 3807  aly_as_a_carat
## 3808  iloveyooallday
## 3809     kylareiiwoo
## 3810     markgf_1999
## 3811    PredesJingle
## 3812        rnjnamor
## 3813       shujipaui
## 3814   Alisonkyutie2
## 3815 BarryHo02721730
## 3816        kaeyishi
## 3817  annyeongjinnie
## 3818          tuwpic
## 3819       kyeomijie
## 3820       woomygosh
## 3821 BarryHo02721730
## 3822       athe8naaa
## 3823     bjyxYizhan_
## 3824 BarryHo02721730
## 3825     minorlysour
## 3826     curimansi88
## 3827     staywithran
## 3828  bambinicologne
## 3829         _archao
## 3830 sinclairzehriah
## 3831     cheoldeushi
## 3832  KwanHoshua_uji
## 3833         _archao
## 3834        nomaesce
## 3835       novnoophi
## 3836         _archao
## 3837  KwanHoshua_uji
## 3838         sexyIeo
## 3839       Baoxiao15
## 3840  KwanHoshua_uji
## 3841        soontokk
## 3842   eyxseungcheol
## 3843  BetheSunKidult
## 3844        nomaesce
## 3845      _chrstianm
## 3846      akiiidult_
## 3847        ningatsu
## 3848      _colemaybe
## 3849   seungerinelee
## 3850         _archao
## 3851      boominshua
## 3852          70_037
## 3853  Tabletop_Deals
## 3854       Ree_raeee
## 3855    owhxkeyboard
## 3856        rnjnamor
## 3857   caratfrogfaye
## 3858 sinclairzehriah
## 3859 sinclairzehriah
## 3860  Mystery_Girl14
## 3861        lidu2703
## 3862        amebeoms
## 3863      dinoe_1999
## 3864 Kets_SVTreasure
## 3865    caratsince17
## 3866        _sojubuu
## 3867       yjhsmiles
## 3868        yngishua
## 3869 teardrops_angel
## 3870      moonmonggu
## 3871      shuajkingz
## 3872     kylareiiwoo
## 3873  anne_yeong1004
## 3874    C0DE_W4RR10R
## 3875  seventeen_samm
## 3876      daisyaloe_
## 3877       Baoxiao15
## 3878  yunhosbackwash
## 3879      S_Coupshi3
## 3880  seventeen_samm
## 3881 D9oVXHupec9njCc
## 3882  Mystery_Girl14
## 3883        hwajinss
## 3884      dinoe_1999
## 3885   Wonranghae216
## 3886        chirvxmy
## 3887      moonmonggu
## 3888      dinoe_1999
## 3889       kiwiboong
## 3890      dinoe_1999
## 3891   caratfrogfaye
## 3892       wwoncartz
## 3893   svtwonufan_96
## 3894       Baoxiao15
## 3895  enhypenseven__
## 3896 DisrespectedThe
## 3897    hanniebubbie
## 3898  hunnii_creamii
## 3899      busanboiss
## 3900       bldrvqwri
## 3901      pauuprints
## 3902  starrysectorep
## 3903   caratfrogfaye
## 3904        dailynrk
## 3905        MbbElise
## 3906     moon_junels
## 3907        RIRIBB1T
## 3908    PRECI0UXTEEZ
## 3909         NQK0021
## 3910   sittiayeeesha
## 3911      _colemaybe
## 3912        kim_zeph
## 3913    kyeominology
## 3914     LewisPherne
## 3915         jiestos
## 3916        RIRIBB1T
## 3917   TaeRaiMinSeok
## 3918     Sebong_cham
## 3919      joshujibwi
## 3920          tehjul
## 3921      minwooshi8
## 3922    yourcaratzen
## 3923       warmwooyu
## 3924    dokyeomsfool
## 3925   threetwonewoo
## 3926     bjyxYizhan_
## 3927        soontokk
## 3928     bjyxYizhan_
## 3929     bjyxYizhan_
## 3930        svtfltrs
## 3931        nomaesce
## 3932     bjyxYizhan_
## 3933       hanscapes
## 3934        kyu0325s
## 3935       hanscapes
## 3936       hanscapes
## 3937        jpeb1010
## 3938         kmgyupi
## 3939       hanscapes
## 3940        withgyu2
## 3941     Teamsebongs
## 3942       athe8naaa
## 3943     Teamsebongs
## 3944    hyuckiebussy
## 3945  PatoInYourArea
## 3946     Teamsebongs
## 3947   dindin_ttattu
## 3948     Teamsebongs
## 3949     Sting_Bee24
## 3950        en_btsvt
## 3951      LoverJHale
## 3952  crisdistortion
## 3953   RoseMaeDavis1
## 3954       warmwooyu
## 3955   FLOWERBOYSVTN
## 3956     Teamsebongs
## 3957  anne_yeong1004
## 3958 booty_sooperior
## 3959      uji_hannie
## 3960      imadone___
## 3961  anne_yeong1004
## 3962      _colemaybe
## 3963         21897ls
## 3964    _ForLalisa_m
## 3965  fllsnsunflower
## 3966     nanasfavb27
## 3967    jjshuahonggg
## 3968  fllsnsunflower
## 3969         zands_a
## 3970  fllsnsunflower
## 3971     Teamsebongs
## 3972 moonlightgguks_
## 3973         mgllgzn
## 3974  kea13seventeen
## 3975 julietmontero11
## 3976     itsmelanday
## 3977    Pirateez_mbb
## 3978 Karla_Ledesma_A
## 3979 theworldofshery
## 3980        wwrideu1
## 3981 theworldofshery
## 3982         Xyyyuna
## 3983    rajinmembaca
## 3984     Aurora7Moon
## 3985     melui_chann
## 3986  fllsnsunflower
## 3987       wwoncartz
## 3988    kangslayhyun
## 3989  fllsnsunflower
## 3990  fllsnsunflower
## 3991         Xyyyuna
## 3992     itsmelanday
## 3993  sebongie_love_
## 3994        TazadeT7
## 3995     call_me_cay
## 3996  fllsnsunflower
## 3997         96leeji
## 3998    theeseoklace
## 3999      pijanna_24
## 4000       emcoupseu
## 4001      meanie1717
## 4002        nomaesce
## 4003      horanggigi
## 4004      jayethangs
## 4005         yjhdawn
## 4006        Melady_2
## 4007 theworldofshery
## 4008    WDTGTPodcast
## 4009    HOODlESEAZON
## 4010        loIihobi
## 4011         loevrgh
## 4012       nickIuver
## 4013 theworldofshery
## 4014       SEHUNGlRL
## 4015      joshuaweyy
## 4016     apples_boos
## 4017       SEHUNGlRL
## 4018   seungkwannie_
## 4019  SVTPOLLSNDEALS
## 4020  SVTPOLLSNDEALS
## 4021     AlmeraCanda
## 4022           ljaz_
## 4023   AshleyMinaj71
## 4024   coupsofnoodle
## 4025     exposewrite
## 4026  SVTPOLLSNDEALS
## 4027     purpIerose_
## 4028   ShineGoldBaby
## 4029  SVTPOLLSNDEALS
## 4030 shuayangshuabar
## 4031      izzuerishu
## 4032   rayofsunkyeom
## 4033  SVTPOLLSNDEALS
## 4034         loevrgh
## 4035  SVTPOLLSNDEALS
## 4036  SnowSunshineee
## 4037  SVTPOLLSNDEALS
## 4038           Yj3nh
## 4039      Thetriiish
## 4040         loevrgh
## 4041  chim_ft_sebong
## 4042  _jujuondabeat_
## 4043      shuaa_jizy
## 4044    KatsukiIzumi
## 4045       hoshitaey
## 4046      lmnayeonnn
## 4047     soonchanlvr
## 4048   rayofsunkyeom
## 4049 moonlightgguks_
## 4050       wwoncartz
## 4051          _hchn6
## 4052       wwoncartz
## 4053     kylareiiwoo
## 4054     ThV92475801
## 4055  218_JungHoseok
## 4056  mingyurangieyo
## 4057     dopeyoongii
## 4058   FeigenJaxCape
## 4059   FLOWERBOYSVTN
## 4060     ThV92475801
## 4061     ThV92475801
## 4062       sheiwoo92
## 4063       athe8naaa
## 4064       hoshiiest
## 4065     ThV92475801
## 4066      jhnshua_17
## 4067    scoupidoyoon
## 4068  jasonlambertSF
## 4069  sahi_jwoo_ruto
## 4070       feverwonu
## 4071   coupsofnoodle
## 4072      shuaa_jizy
## 4073       lovelyyjn
## 4074      wonu_babie
## 4075         loevrgh
## 4076       jkscatkvn
## 4077    junhui_actor
## 4078         horawr_
## 4079        nomaesce
## 4080       choihyvne
## 4081  naevis_calling
## 4082      kyeomirang
## 4083 kendelleeugenio
## 4084  naevis_calling
## 4085  everyday_iwonu
## 4086   jeonderfulwon
## 4087      iwonyou_17
## 4088  OnikaTMarajFan
## 4089         yourkm1
## 4090     ThV92475801
## 4091       hoshiiest
## 4092     __hannieboo
## 4093       grapesgyu
## 4094     ThV92475801
## 4095       grapesgyu
## 4096       grapesgyu
## 4097         yunsaur
## 4098        RojGinez
## 4099      Jnorotsky1
## 4100       grapesgyu
## 4101 kendelleeugenio
## 4102   coupsofnoodle
## 4103    fruittel_lia
## 4104       dinoshair
## 4105    fruittel_lia
## 4106      beadyjoshy
## 4107       athe8naaa
## 4108         Gab4ndy
## 4109   JunhuihuiStar
## 4110     yoonzino_23
## 4111     soonchanlvr
## 4112   MingyusDoctor
## 4113         featljc
## 4114 loveleesanghyuk
## 4115          mix5hi
## 4116        kim_zeph
## 4117       dinoshair
## 4118         featljc
## 4119   startigerhosh
## 4120      shinobinnn
## 4121      Kalinoskrt
## 4122      svts_bxnny
## 4123         kaipaiw
## 4124        _ggyukyu
## 4125     ohmymyjihan
## 4126      notUbitchh
## 4127         sjineok
## 4128         loevrgh
## 4129    Joshuajiji95
## 4130    BernieDoesIt
## 4131     itsmelanday
## 4132 kendelleeugenio
## 4133       hozikyeom
## 4134     just_pingu5
## 4135     carateu_jed
## 4136        kim_zeph
## 4137     soonchanlvr
## 4138     cart4hoonie
## 4139       Saraa1262
## 4140     softyrenjun
## 4141      tokkiverse
## 4142    tyrannodi_17
## 4143      redrosieey
## 4144   patatamarbles
## 4145        143ssamu
## 4146     ThV92475801
## 4147      azenith028
## 4148       yoongimtv
## 4149       feistycsc
## 4150   definitelywon
## 4151      kwandarine
## 4152     Chrishaynee
## 4153  einfallslosgio
## 4154   svtwonufan_96
## 4155         loevrgh
## 4156       wwoncartz
## 4157       kyeomiee_
## 4158         r5_dnce
## 4159         loevrgh
## 4160     rosepark997
## 4161  intersvtellarr
## 4162   naevismy1love
## 4163        oumingyu
## 4164   s_wonhuikyeom
## 4165 athenasophiahsk
## 4166    mincoupschwe
## 4167    mincoupschwe
## 4168   coupsofnoodle
## 4169         micxie6
## 4170     cairoubing1
## 4171     choejisug10
## 4172         mickf65
## 4173  gracepalomo_21
## 4174   uuwikayjunhui
## 4175        _weixvii
## 4176       meanierae
## 4177         loevrgh
## 4178        f_wonsoo
## 4179  jerapahandsome
## 4180    yesitsmeguis
## 4181  prettyblessyne
## 4182   FLOWERBOYSVTN
## 4183   chimmychachii
## 4184       hozikyeom
## 4185         kaipaiw
## 4186    eyybibiwayem
## 4187      woowonwooo
## 4188   coupsofnoodle
## 4189        fool4svt
## 4190         Yenaiib
## 4191     donwilly01_
## 4192      giatayka10
## 4193         loevrgh
## 4194     sienbeuntin
## 4195   screamfaceguy
## 4196         kaipaiw
## 4197         loevrgh
## 4198         luvwvri
## 4199         wonblvd
## 4200      wonsoonhan
## 4201      hagemacuru
## 4202        enchugoo
## 4203   coupsofnoodle
## 4204      Rabbygyu10
## 4205         kaipaiw
## 4206         voboko_
## 4207    horangdanwin
## 4208  intersvtellarr
## 4209         yesreii
## 4210      Sheee_anne
## 4211  victoriaben170
## 4212         kaipaiw
## 4213  MikaelisHannah
## 4214        nyla_v0n
## 4215         21897ls
## 4216      NJaygreen_
## 4217     ThV92475801
## 4218    TheMingmings
## 4219         loevrgh
## 4220      Rabbygyu10
## 4221    hongdepyonim
## 4222       shin_ngel
## 4223      Rabbygyu10
## 4224        urhaven_
## 4225          ohclin
## 4226   coupsofnoodle
## 4227    seokatscoups
## 4228          ohclin
## 4229         kaipaiw
## 4230       mela_uchi
## 4231     SELENATORSS
## 4232          ohclin
## 4233          dzfndy
## 4234    MaxAngeles16
## 4235      Rabbygyu10
## 4236        kittinzi
## 4237       run2wonie
## 4238        _sojubuu
## 4239    wOn_ranghaey
## 4240       milkmanjk
## 4241   theinfinity8_
## 4242    seokatscoups
## 4243      Rabbygyu10
## 4244  intothemoonzxc
## 4245      dalkyeomie
## 4246         loevrgh
## 4247   coupsofnoodle
## 4248  gracepalomo_21
## 4249      Rabbygyu10
## 4250          ohclin
## 4251      kyeomirang
## 4252        sshi_joy
## 4253          ohclin
## 4254        kimmia28
## 4255          ohclin
## 4256      Rabbygyu10
## 4257         kaipaiw
## 4258          MYEZER
## 4259         luvwvri
## 4260        wonuweaf
## 4261    Jujuhuhu3456
## 4262    17svt27bp134
## 4263         _shx_xn
## 4264        miadlrsr
## 4265   coupsofnoodle
## 4266      ashyeonbin
## 4267     amabelleeyy
## 4268  17eenrighthere
## 4269   francisamongo
## 4270 DancingMoonKore
## 4271        jjklvour
## 4272   supremewonwoo
## 4273         loevrgh
## 4274    _intopjseong
## 4275         aesvtea
## 4276         loevrgh
## 4277      _luvmeanie
## 4278   coupsofnoodle
## 4279   harajuku_bxrb
## 4280     amabelleeyy
## 4281 Song_Of_MoonJin
## 4282    won_everyone
## 4283       kwaniehao
## 4284        jjklvour
## 4285  intothemoonzxc
## 4286         zands_a
## 4287    gyumybestboy
## 4288         aesvtea
## 4289    itsmeeeAivee
## 4290   FLOWERBOYSVTN
## 4291 Song_Of_KoreJin
## 4292       LynRogero
## 4293       eyahann13
## 4294    won_everyone
## 4295        evr1_woo
## 4296        kiganon1
## 4297         loevrgh
## 4298    mincoupschwe
## 4299      fazli_zali
## 4300        RojGinez
## 4301        W0NUJE0N
## 4302   Renjana_rindu
## 4303   theinfinity8_
## 4304    17svt27bp134
## 4305    mahae_athena
## 4306       shin_ngel
## 4307   FLOWERBOYSVTN
## 4308       shin_ngel
## 4309    Ririnmailani
## 4310      HEALWITHDK
## 4311        _ggyukyu
## 4312    mahae_athena
## 4313       shin_ngel
## 4314        sned7don
## 4315        mx_svt17
## 4316  darrylinfernan
## 4317         hymnjnh
## 4318      inaraezaki
## 4319   maria_criscel
## 4320   sansanshiber2
## 4321         hymnjnh
## 4322      azraeliant
## 4323         95JNGHN
## 4324      azraeliant
## 4325  _marshmallow88
## 4326      azraeliant
## 4327  kidultseoksoon
## 4328 AnggitaKusumaD7
## 4329      azraeliant
## 4330      azraeliant
## 4331        chwepuff
## 4332     svvvvvt0526
## 4333   prasasti_rini
## 4334       patatasx_
## 4335 bembigyuseokwon
## 4336 noultsmultistan
## 4337     murdrofcrow
## 4338       imrj_0412
## 4339      tokkiverse
## 4340      Ankita_m19
## 4341       hoonbIiss
## 4342 magic_shop_0613
## 4343        Bherlin8
## 4344       enhasualz
## 4345 noultsmultistan
## 4346 jeonghanaya_c13
## 4347      tokkiverse
## 4348     CHOIZIARCHV
## 4349   FLOWERBOYSVTN
## 4350  esveeteeimnida
## 4351        miadlrsr
## 4352 noultsmultistan
## 4353      YourShop19
## 4354    gyuverwonhan
## 4355        miadlrsr
## 4356   FLOWERBOYSVTN
## 4357 noultsmultistan
## 4358          SHNLVI
## 4359       enhasualz
## 4360   dahyuns_chair
## 4361         aptwinx
## 4362      azraeliant
## 4363       lovelyyjn
## 4364   FLOWERBOYSVTN
## 4365      kmin9yu___
## 4366       4SVTJIHAN
## 4367  photo_by_hoshi
## 4368  GaelleSmolders
## 4369     minie_carat
## 4370     chwehuiglum
## 4371      Jazmccann1
## 4372   sansanshiber2
## 4373    iemcaguioa03
## 4374     yoonjjangel
## 4375         ennix21
## 4376        miadlrsr
## 4377   FLOWERBOYSVTN
## 4378    hoshieuteamo
## 4379     heybabydeul
## 4380  craigwoods1888
## 4381 noultsmultistan
## 4382       _uarmyjin
## 4383        bikbik__
## 4384    shiloah_magu
## 4385 milkteateanigyu
## 4386     aboutccheol
## 4387          yrwon_
## 4388   Soonding_0615
## 4389        bikbik__
## 4390        bikbik__
## 4391    sxnflowxrmbb
## 4392   woonderfulday
## 4393        bikbik__
## 4394    1h3artsoobin
## 4395     aboutccheol
## 4396        k1mpang_
## 4397      icedminwon
## 4398    reverie_0102
## 4399      popstarhui
## 4400    ceri_jubilee
## 4401    INNERBEAR_95
## 4402  miniminsfilter
## 4403       lovelyyjn
## 4404  dokyeomtcjimin
## 4405  forsvtpurposes
## 4406       punyamoci
## 4407      inscarness
## 4408   FLOWERBOYSVTN
## 4409        JJENST4R
## 4410 noultsmultistan
## 4411  dokyeomtcjimin
## 4412        jess1962
## 4413      aselafics_
## 4414      Sheee_anne
## 4415   Anthr0p0m0rph
## 4416          mkltrb
## 4417  id_potatochips
## 4418     imwithjjong
## 4419      doremihaoo
## 4420   FLOWERBOYSVTN
## 4421     VerbaSophia
## 4422       imnylenor
## 4423   cheolito_faye
## 4424    ceri_jubilee
## 4425    ceri_jubilee
## 4426    Tommylaostar
## 4427    ceri_jubilee
## 4428        enchugoo
## 4429      hannie_kaa
## 4430     aboutccheol
## 4431  shininghamstar
## 4432     _woozihoon_
## 4433       TOXX_XXOT
## 4434     justmeysaaa
## 4435      hannie_kaa
## 4436       heyembeey
## 4437       luvbyblue
## 4438        chwxbits
## 4439     aboutccheol
## 4440      ownedbygyu
## 4441    leinafangirl
## 4442     VerbaSophia
## 4443    ceri_jubilee
## 4444       TIGERCHWE
## 4445     duhneyscart
## 4446    millie102685
## 4447          pup9yu
## 4448      hannie_kaa
## 4449     archer_1202
## 4450       __hajwoox
## 4451     VerbaSophia
## 4452  allforyjwxwzi_
## 4453      thysawsage
## 4454       iHeartKR1
## 4455   rs_qrtz_srnty
## 4456  shininghamstar
## 4457      jeongbless
## 4458         jeonvvw
## 4459      mufhim2937
## 4460     VerbaSophia
## 4461  allforyjwxwzi_
## 4462      wildgo5rae
## 4463        lmjattwo
## 4464      carrot2209
## 4465        RojGinez
## 4466         voboko_
## 4467    ceri_jubilee
## 4468     minie_carat
## 4469 merrybaedending
## 4470     VerbaSophia
## 4471    perfect4blue
## 4472      bIondejuns
## 4473 atin_charmainee
## 4474      carrot2209
## 4475     aboutccheol
## 4476      gyu_dalton
## 4477        cel_izia
## 4478    sound_of_jen
## 4479   coupsofnoodle
## 4480          xiches
## 4481             0ok
## 4482     duhneyscart
## 4483     aboutccheol
## 4484     lalaine_svt
## 4485 katie_seventeen
## 4486      anniexosoo
## 4487          xiches
## 4488     aboutccheol
## 4489       Candy_Vii
## 4490 seventeensunbae
## 4491        maraj_ky
## 4492     VerbaSophia
## 4493       shywoniee
## 4494         ultsvnt
## 4495 katie_seventeen
## 4496        scouptat
## 4497 jeonghanaya_c13
## 4498  kidultgyucheol
## 4499 dinoscheekmoles
## 4500   AugustMCarats
## 4501 dinoscheekmoles
## 4502   SerenitaBelen
## 4503 dinoscheekmoles
## 4504     aboutccheol
## 4505       ujibaragi
## 4506 dinoscheekmoles
## 4507   Barbiexonika2
## 4508       tbell1968
## 4509     aboutccheol
## 4510     VerbaSophia
## 4511      KM33957890
## 4512  el_foreverglow
## 4513      soojinnn00
## 4514     cheoliemoja
## 4515       Deirene06
## 4516       H0RCHANTA
## 4517     xix_fungurl
## 4518       H0RCHANTA
## 4519      busanboiss
## 4520       H0RCHANTA
## 4521         yesreii
## 4522  gracepalomo_21
## 4523   myzero_oclock
## 4524   rs_qrtz_srnty
## 4525    ttikkeul1004
## 4526       H0RCHANTA
## 4527      kihyunsjay
## 4528  gracepalomo_21
## 4529        wonulayf
## 4530        Duday_13
## 4531  gracepalomo_21
## 4532       younghaho
## 4533     sungh00n_01
## 4534      wonlygyurs
## 4535      aselafics_
## 4536     aboutccheol
## 4537   queenexodus12
## 4538       ujibaragi
## 4539     aboutccheol
## 4540    17svt27bp134
## 4541   rs_qrtz_srnty
## 4542     aboutccheol
## 4543 CaratZen1533112
## 4544  gracepalomo_21
## 4545        soft4ksy
## 4546      shuamistry
## 4547  gracepalomo_21
## 4548    seokatscoups
## 4549   PixelPecanPie
## 4550       sheiwoo92
## 4551        yuarinea
## 4552     odetonyoung
## 4553  ThomasMtonga20
## 4554  id_potatochips
## 4555    17svt27bp134
## 4556        KIanePua
## 4557     hanniehailz
## 4558     aboutccheol
## 4559     hanniehailz
## 4560         4MNGHAO
## 4561       h0ngpimpa
## 4562     hanniehailz
## 4563     aboutccheol
## 4564 Honey_Angel1004
## 4565     nicoleeeltg
## 4566      ahmedsaine
## 4567     hanniehailz
## 4568  minghaolicious
## 4569        hyucart_
## 4570        d_ddeane
## 4571   AdelineOulala
## 4572         4697kmg
## 4573    sv_tjeonghan
## 4574     horangtaeee
## 4575     eishamichan
## 4576   lesserafim1TT
## 4577    rk_chocob0ba
## 4578  jww_enthusiast
## 4579      shuamistry
## 4580    bootiful1998
## 4581 Patrici41922965
## 4582     zhaddysgirl
## 4583       4SVTJIHAN
## 4584     xix_fungurl
## 4585  taekookietrash
## 4586     aboutccheol
## 4587     ronikosmoss
## 4588        mingy0_o
## 4589    pewdiesendri
## 4590    skzbrowniess
## 4591      wonwufilms
## 4592     rckstarseok
## 4593     maeleraquel
## 4594     aboutccheol
## 4595 Butterscotch98_
## 4596       cwistwina
## 4597    sound_of_jen
## 4598        Duday_13
## 4599     Arosevia_Go
## 4600     rckstarseok
## 4601     aboutccheol
## 4602    dongbeidageo
## 4603        Yjhnihae
## 4604          yshuae
## 4605      hnbnkim131
## 4606 Butterscotch98_
## 4607 MoonJeon_wonhui
## 4608    seokatscoups
## 4609   3rachasfarmer
## 4610        bestnsdk
## 4611   yupsheskitten
## 4612          RalYui
## 4613     rckstarseok
## 4614 MoonJeon_wonhui
## 4615 Butterscotch98_
## 4616         yunsaur
## 4617     babyjiisung
## 4618       shin_ngel
## 4619        Duday_13
## 4620 Butterscotch98_
## 4621     chuuseulism
## 4622          RalYui
## 4623 Butterscotch98_
## 4624          yshuae
## 4625      luvss_shua
## 4626 xclusively4Lisa
## 4627  taekookietrash
## 4628         4MNGHAO
## 4629        aiszcart
## 4630        lunalutw
## 4631     aboutccheol
## 4632       min9yused
## 4633     aboutccheol
## 4634  AcharyaRoshnee
## 4635     aboutccheol
## 4636       yeoshuaa_
## 4637    moonchiIdhan
## 4638    sound_of_jen
## 4639    AntolihaoZam
## 4640     aboutccheol
## 4641         17y0_0n
## 4642  BeMy_SeoulMate
## 4643    AntolihaoZam
## 4644        afnidwii
## 4645    AntolihaoZam
## 4646       yoshinhho
## 4647      Candy61801
## 4648     Pershi_1083
## 4649     rckstarseok
## 4650   summerlight15
## 4651         luvksw_
## 4652   rayofsunkyeom
## 4653  taekookietrash
## 4654        dell0227
## 4655    moonchiIdhan
## 4656     fastpacingg
## 4657     chiizukeiki
## 4658    AntolihaoZam
## 4659    AntolihaoZam
## 4660     17ismyyouth
## 4661    AntolihaoZam
## 4662       jinxiejae
## 4663     rckstarseok
## 4664    17svt27bp134
## 4665 gyuldaengrideul
## 4666        Sidlexik
## 4667      june_sunoo
## 4668      june_sunoo
## 4669    AntolihaoZam
## 4670      june_sunoo
## 4671    AntolihaoZam
## 4672         luvksw_
## 4673  lilfairyseokie
## 4674    AntolihaoZam
## 4675   eyxseungcheol
## 4676    AntolihaoZam
## 4677         luvksw_
## 4678 gyuldaengrideul
## 4679        bestnsdk
## 4680         luvksw_
## 4681     polishgal11
## 4682         luvksw_
## 4683          baamgu
## 4684        Soniaso_
## 4685    AntolihaoZam
## 4686 defendthearctic
## 4687          baamgu
## 4688         raice_b
## 4689      svtsflover
## 4690    AntolihaoZam
## 4691   eyxseungcheol
## 4692       ChrysAS04
## 4693   goingyellooow
## 4694       shin_ngel
## 4695   _SKZ8lovestay
## 4696        evr1_woo
## 4697   eyxseungcheol
## 4698      Desi_Ladki
## 4699    AntolihaoZam
## 4700      yepthemsvt
## 4701    babyhoneykoo
## 4702    wonuhannie17
## 4703   goingyellooow
## 4704        mrfrvnss
## 4705     thvsopecart
## 4706      PeachyShai
## 4707   sound_of_joyy
## 4708      joshuji505
## 4709       mcj_riaaa
## 4710       aleks2900
## 4711     onlyfor_one
## 4712       vania3011
## 4713   goingyellooow
## 4714   17caratsebong
## 4715   sound_of_joyy
## 4716   shinggishirei
## 4717 8finitywiththe8
## 4718   nov_seventeen
## 4719       naju_rice
## 4720  taekookietrash
## 4721       haniinunu
## 4722       studio_gy
## 4723       yakitaiku
## 4724      _colemaybe
## 4725     H0RANG1H05H
## 4726       ilov4dery
## 4727   joshuasboyfie
## 4728  TreasureTMaker
## 4729       ilov4dery
## 4730    dani_ella_02
## 4731       ilov4dery
## 4732      _colemaybe
## 4733           P28sj
## 4734       ilov4dery
## 4735      haruwoniee
## 4736     mysticalsua
## 4737       strawshua
## 4738  fallingforshua
## 4739         _joy_98
## 4740   jeon_roseline
## 4741      kihyunsjay
## 4742  moonhannieyoon
## 4743    StarskyPaul1
## 4744     wonuissweet
## 4745   goingyellooow
## 4746       itsabee14
## 4747        Yjhnihae
## 4748 graciousstefh13
## 4749     aboutccheol
## 4750       vania3011
## 4751         _joy_98
## 4752       JADOREHAN
## 4753       haniinunu
## 4754     dreamscap3r
## 4755         _joy_98
## 4756      wonutiktik
## 4757          baamgu
## 4758 Lizzy1296419104
## 4759        Yjhnihae
## 4760        gam5sung
## 4761      MineVoidMC
## 4762    wOn_ranghaey
## 4763        YesQuake
## 4764 seungcherrymina
## 4765     geneger_car
## 4766    17svt27bp134
## 4767         wonweom
## 4768   goingyellooow
## 4769 gyuldaengrideul
## 4770      kihyunsjay
## 4771        odetovou
## 4772  Brochacha4Evah
## 4773      kihyunsjay
## 4774   goingyellooow
## 4775 part_time_cl0wn
## 4776      kihyunsjay
## 4777      kihyunsjay
## 4778  shadowcloudsss
## 4779     zhaddysgirl
## 4780     yeolliewons
## 4781   goingyellooow
## 4782     syalsyal_uu
## 4783     boolobooloo
## 4784     17ismyyouth
## 4785   goingyellooow
## 4786      MicsMics07
## 4787      Katarynkas
## 4788 PrincesGallanas
## 4789        sexun_qi
## 4790        Soniaso_
## 4791         wonweom
## 4792         heonbee
## 4793    wonhoonsoons
## 4794    17svt27bp134
## 4795      Katarynkas
## 4796 gyuldaengrideul
## 4797      caratiny23
## 4798        snsdbaco
## 4799      caratiny23
## 4800    moonchiIdhan
## 4801        _sojubuu
## 4802   goingyellooow
## 4803      seokhangel
## 4804     nathynunnes
## 4805     johnnyeolie
## 4806        _sojubuu
## 4807       kittyk0o0
## 4808  Brochacha4Evah
## 4809   goingyellooow
## 4810 PrincesGallanas
## 4811      MicsMics07
## 4812          ncylhc
## 4813 taurusaffection
## 4814     Ieeminhyuku
## 4815       direklexi
## 4816   goingyellooow
## 4817    profboos_twt
## 4818      prettyo_on
## 4819         CcAkela
## 4820    moonchiIdhan
## 4821        wonuuO_O
## 4822  AnnaCampbelloz
## 4823         ennix21
## 4824      yoonsskies
## 4825         sunvrrs
## 4826     Mnbvcxz6141
## 4827      MicsMics07
## 4828       user78018
## 4829     rckstarseok
## 4830 katie_seventeen
## 4831 delirando_sozin
## 4832     cosmicgyus_
## 4833        eya_lele
## 4834       _lemonlee
## 4835  svt4yeongwonhi
## 4836   goingyellooow
## 4837       brielives
## 4838     rckstarseok
## 4839   goingyellooow
## 4840     woozfactory
## 4841 DeannaN40600706
## 4842   goingyellooow
## 4843   JulieFerrer20
## 4844 soonchanranghae
## 4845 katie_seventeen
## 4846   goingyellooow
## 4847     yoonchanist
## 4848   goingyellooow
## 4849       cianakyli
## 4850  intersvtellarr
## 4851     rckstarseok
## 4852   goingyellooow
## 4853       pekenoirt
## 4854    moonchiIdhan
## 4855   goingyellooow
## 4856  intersvtellarr
## 4857         manspjy
## 4858 soonchanranghae
## 4859     cocoaamelon
## 4860        seoknay_
## 4861     DELULURACHA
## 4862        deeya_aa
## 4863     cocoaamelon
## 4864      luvielilyv
## 4865          SVTAU9
## 4866        _sojubuu
## 4867     lixtokerist
## 4868    jihancheol88
## 4869       youiodedx
## 4870        _sojubuu
## 4871       euscenery
## 4872     rckstarseok
## 4873      techysaavy
## 4874      seokryuhyo
## 4875          SVTAU9
## 4876     _taendipity
## 4877  pushandpulljlm
## 4878       meanierae
## 4879         Min6gy0
## 4880    gohnbabygohn
## 4881     rckstarseok
## 4882  minghaolicious
## 4883    JackSoutar04
## 4884   Akari51494221
## 4885    underratedtw
## 4886   Akari51494221
## 4887 EpicMahonelover
## 4888         Min6gy0
## 4889   Akari51494221
## 4890       mcj_riaaa
## 4891       hoshtoyou
## 4892         1UVAZR4
## 4893   Akari51494221
## 4894 EpicMahonelover
## 4895       meanierae
## 4896 EpicMahonelover
## 4897   Akari51494221
## 4898    seungcherryy
## 4899        Yjhnihae
## 4900         Shrvti_
## 4901   Akari51494221
## 4902        cb97kart
## 4903         Shrvti_
## 4904      AlyloonyPH
## 4905    everyone_lou
## 4906      __svtcarat
## 4907    fabylousfaby
## 4908         Shrvti_
## 4909      __svtcarat
## 4910  minghaolicious
## 4911       Almameni2
## 4912         Shrvti_
## 4913   Akari51494221
## 4914      kimgyuxvii
## 4915        mingy0_o
## 4916   Akari51494221
## 4917      kimgyuxvii
## 4918   Akari51494221
## 4919      kimgyuxvii
## 4920      kimgyuxvii
## 4921      kimgyuxvii
## 4922      tornadosuy
## 4923      kimgyuxvii
## 4924     bluewyne_45
## 4925      kimgyuxvii
## 4926  intersvtellarr
## 4927         Shrvti_
## 4928 recyclerofblank
## 4929      kimgyuxvii
## 4930    mahae_athena
## 4931 chikoritamolala
## 4932      kimgyuxvii
## 4933          ZeGcgh
## 4934      kimgyuxvii
## 4935        ar4takye
## 4936      kimgyuxvii
## 4937      kimgyuxvii
## 4938          SVTAU9
## 4939       wb3gxwham
## 4940      kimgyuxvii
## 4941      kimgyuxvii
## 4942    loveujhopebb
## 4943      kimgyuxvii
## 4944       meanierae
## 4945      kimgyuxvii
## 4946        ujiloevr
## 4947    ji_aurchives
## 4948      koosrkivee
## 4949      kimgyuxvii
## 4950     chansbucket
## 4951      kimgyuxvii
## 4952   goingyellooow
## 4953      kimgyuxvii
## 4954        Yjhnihae
## 4955         Shrvti_
## 4956   ATEEZloverrrr
## 4957 LailaMaeSantos2
## 4958      kimgyuxvii
## 4959         Shrvti_
## 4960      kimgyuxvii
## 4961        mingy0_o
## 4962      kimgyuxvii
## 4963  intersvtellarr
## 4964  naevis_calling
## 4965      hakyusanic
## 4966       _lemonlee
## 4967    RandomSwervy
## 4968      thatboyjww
## 4969      kimgyuxvii
## 4970      kimgyuxvii
## 4971      hakyusanic
## 4972      kimgyuxvii
## 4973    matchabensoo
## 4974      kimgyuxvii
## 4975 LailaMaeSantos2
## 4976      kimgyuxvii
## 4977      Kenthzzzzz
## 4978 miya_caratlnd13
## 4979      kyeomirang
## 4980      kimgyuxvii
## 4981      kimgyuxvii
## 4982        miadlrsr
## 4983        miadlrsr
## 4984      kimgyuxvii
## 4985       0NDATRACK
## 4986        miadlrsr
## 4987        Be7angel
## 4988        miadlrsr
## 4989        jssysimp
## 4990      kimgyuxvii
## 4991     chansbucket
## 4992      kimgyuxvii
## 4993      kimgyuxvii
## 4994     bububunny__
## 4995      kimgyuxvii
## 4996     _______ayla
## 4997      kimgyuxvii
## 4998      shuarkived
## 4999 kristinesosad88
## 5000      kimgyuxvii
## 5001      kimgyuxvii
## 5002          mvjds_
## 5003    somervilleny
## 5004      kimgyuxvii
## 5005   shuafications
## 5006      kimgyuxvii
## 5007    reese_050908
## 5008       hanniewts
## 5009      kimgyuxvii
## 5010      verywonwoo
## 5011      kimgyuxvii
## 5012       hanniewts
## 5013      kimgyuxvii
## 5014    minseoksoon_
## 5015  intersvtellarr
## 5016        forwwynn
## 5017       lovexosvt
## 5018        miadlrsr
## 5019         MBaddst
## 5020        miadlrsr
## 5021       hanniewts
## 5022       ravioolio
## 5023     gotsvt_0922
## 5024          jhcn08
## 5025         mvyyyy_
## 5026        miadlrsr
## 5027      mingyubbyy
## 5028      sunoo_john
## 5029    xumingha_o17
## 5030  intersvtellarr
## 5031      mingyubbyy
## 5032  matchacreamdsk
## 5033       hanniewts
## 5034 Glasgow20775825
## 5035  intersvtellarr
## 5036       hanniewts
## 5037        svnIixie
## 5038         pamimbb
## 5039      svncouphae
## 5040       hanniewts
## 5041    cocodelivers
## 5042        luvxrexo
## 5043        miadlrsr
## 5044   Hellevatorlix
## 5045        miadlrsr
## 5046  beomkaizbasket
## 5047       Cf7Angela
## 5048      kggemperor
## 5049   PalJunRanghae
## 5050        wwooyuns
## 5051     Jinnies_bae
## 5052     paledrivers
## 5053       Cf7Angela
## 5054      luvss_shua
## 5055  intersvtellarr
## 5056       meanierae
## 5057        Nephenne
## 5058    hoseokiekyun
## 5059      altarcrush
## 5060     nuestswhore
## 5061      seokjinira
## 5062       hanniewts
## 5063  birthday_boyyz
## 5064      hochimails
## 5065      altarcrush
## 5066   JustMyself91_
## 5067       _lemonlee
## 5068  enigmaticdaisy
## 5069        yngishua
## 5070  hansol66062443
## 5071   tigerhorangae
## 5072       engine000
## 5073       engine000
## 5074         mvyyyy_
## 5075  tmnbndsntnghlf
## 5076       hanniewts
## 5077   tiklopkaywonu
## 5078       kyeomochi
## 5079 starwberrymoonn
## 5080    mr_hanwonhao
## 5081   goingyellooow
## 5082 kristinesosad88
## 5083       horawrshi
## 5084      svtbtsmoo1
## 5085         Shrvti_
## 5086      nabong8215
## 5087      rosieshuji
## 5088       hanniewts
## 5089        neeeloys
## 5090    gfsvtbzlover
## 5091   goingyellooow
## 5092       hanniewts
## 5093   goingyellooow
## 5094   Julia26954994
## 5095      krystelssi
## 5096      kookangels
## 5097 Scoupsdaddu1713
## 5098     _mingoobear
## 5099       gyulora97
## 5100 Scoupsdaddu1713
## 5101       hanniewts
## 5102     lourdesiree
## 5103  asulnabuwan08_
## 5104    soonhoonbuys
## 5105      ranyjulek_
## 5106      ranyjulek_
## 5107       seoIhyunz
## 5108      ranyjulek_
## 5109     annieeeeeyo
## 5110   goingyellooow
## 5111  AlikaNavarro97
## 5112       gyulora97
## 5113  AlikaNavarro97
## 5114  AlikaNavarro97
## 5115    xumingha_o17
## 5116 MichelleRetuer4
## 5117       gyulora97
## 5118  AlikaNavarro97
## 5119       gyulora97
## 5120    17svt27bp134
## 5121 stream_darling_
## 5122       gyulora97
## 5123       GukMatoki
## 5124  wondaandcoswoo
## 5125    _unknownarmy
## 5126   linea93agustD
## 5127       meehehehe
## 5128        lizarj04
## 5129    stayupnaddie
## 5130        wayvbubs
## 5131        cheolwuu
## 5132    cherrybae095
## 5133   maura_willing
## 5134        lizarj04
## 5135 katie_seventeen
## 5136         yu_haos
## 5137  leicallenreese
## 5138      kimgyuxvii
## 5139     maeilsolace
## 5140       ljn_puppy
## 5141       cchihouse
## 5142  bangbangtanfam
## 5143     comeab4cate
## 5144      yn_yawnzzn
## 5145          mezxig
## 5146         pr1vsxm
## 5147 JINlangmalakas5
## 5148      katsushii_
## 5149      creamcarat
## 5150       GukMatoki
## 5151        hi_zekii
## 5152       nodiwifey
## 5153      ScottishFr
## 5154      CaraTuemeS
## 5155    formulaurora
## 5156    GelPimchanok
## 5157     junhaocaart
## 5158  leicallenreese
## 5159      demiratchu
## 5160      seokjinira
## 5161        chunsa_k
## 5162     loveforheee
## 5163     junhaocaart
## 5164    ghostingyeon
## 5165  ScottInglisEFM
## 5166     coupranghan
## 5167      seokjinira
## 5168    junghobi218_
## 5169         sjineok
## 5170  taetae_ujicart
## 5171 woozintheclouds
## 5172        hi_zekii
## 5173 JINlangmalakas5
## 5174    seokminroyal
## 5175       svt__xiii
## 5176    cherishl1408
## 5177       GukMatoki
## 5178     EulogioMary
## 5179       dokeyomie
## 5180        YuoKan__
## 5181 meanduinflowers
## 5182    stxrlightwoo
## 5183     nabi_hong26
## 5184 Mariell55005823
## 5185 SoonHanarebabie
## 5186 SoonHanarebabie
## 5187    mingfthao_17
## 5188      crywithmeh
## 5189    yourcaratzen
## 5190      seokjinira
## 5191        chunsa_k
## 5192     cheoliecart
## 5193        Riom_328
## 5194    sassymerman_
## 5195        hi_zekii
## 5196    _wonurideul_
## 5197         dhraxis
## 5198        Tuna4Jin
## 5199  Saleem28092135
## 5200  Saleem28092135
## 5201       Daniluxii
## 5202      luciaylena
## 5203   JulieFerrer20
## 5204     sunnlantern
## 5205      sseokimchi
## 5206 taurusaffection
## 5207     nabi_hong26
## 5208      svtbtsmoo1
## 5209      sseokimchi
## 5210 joshujispongowu
## 5211    ImSagonoy_14
## 5212      svntenhysk
## 5213        jasbtsvt
## 5214   goingyellooow
## 5215      felbinghaw
## 5216      svtbtsmoo1
## 5217       ww_asachi
## 5218   goingyellooow
## 5219   goingyellooow
## 5220     lalaaliloo1
## 5221   JulieFerrer20
## 5222 SoonHanarebabie
## 5223      katsushii_
## 5224 yeppuen_BORAHAE
## 5225   goingyellooow
## 5226         yxgstan
## 5227   goingyellooow
## 5228       CaelumGom
## 5229   JulieFerrer20
## 5230        lovlieys
## 5231     geIiventura
## 5232     sunnlantern
## 5233        myang712
## 5234      aceveryone
## 5235     sunnlantern
## 5236         dhraxis
## 5237       JW_vergyu
## 5238     VerbaSophia
## 5239      kookangels
## 5240     127crystals
## 5241  strwbryjoongie
## 5242    xumingha_o17
## 5243        lovlieys
## 5244     sunnlantern
## 5245 katie_seventeen
## 5246   loneamaryllis
## 5247       kiwicheol
## 5248         yu_haos
## 5249         dhraxis
## 5250   geochimeobshi
## 5251         ho_ongf
## 5252   MDavidSchwarz
## 5253  ashlee68868054
## 5254  ashlee68868054
## 5255          FerL67
## 5256       smile_mkl
## 5257       r3njunsbf
## 5258     sunnlantern
## 5259     sunnlantern
## 5260      laurinee30
## 5261        nizyanz_
## 5262     sunnlantern
## 5263 katie_seventeen
## 5264  AlikaNavarro97
## 5265 Rayniel86965441
## 5266    hello_ddeonu
## 5267      fallen_pur
## 5268  mapOf_eternity
## 5269    everyone_yuu
## 5270        svtdgt01
## 5271        aciw071_
## 5272      wwscjsyoon
## 5273  jovilyn_orpela
## 5274     sunnlantern
## 5275    dokyeoms1004
## 5276     sunnlantern
## 5277  jovilyn_orpela
## 5278      unique1344
## 5279     sunnlantern
## 5280       yracrasl_
## 5281     _Saraharmy_
## 5282       scwzverse
## 5283        613_jack
## 5284     sunnlantern
## 5285       JW_vergyu
## 5286    supremecoups
## 5287    triplets_ofc
## 5288    oOtaelatteoO
## 5289      jsnanana7g
## 5290    luminouswonu
## 5291      Junnie1006
## 5292    luminouswonu
## 5293    luminouswonu
## 5294     sunnlantern
## 5295      Desi_Ladki
## 5296  lovelyseokmine
## 5297   itz_linda1213
## 5298       m58014387
## 5299     sunnlantern
## 5300      jllnbauson
## 5301     DELULURACHA
## 5302      katrinah03
## 5303      tartaxruga
## 5304         ybel013
## 5305       nonie0218
## 5306         5Youngy
## 5307         ybel013
## 5308     sebongidmds
## 5309      sheruu_rck
## 5310        scouptat
## 5311       mochimeoe
## 5312    DelacruzRoda
## 5313         ybel013
## 5314         ybel013
## 5315    everyone_wow
## 5316  thegalaxybyINE
## 5317        seizemik
## 5318         ybel013
## 5319        haeyiens
## 5320    minseoksoon_
## 5321   itz_linda1213
## 5322     sunnlantern
## 5323        jimineix
## 5324        jimineix
## 5325     sunnlantern
## 5326 acoustic_jisoo_
## 5327      katrinah03
## 5328      jllnbauson
## 5329      atekpopfan
## 5330  catlover_4life
## 5331     sunnlantern
## 5332  wwhands0me_jin
## 5333       faketobio
## 5334  AlikaNavarro97
## 5335      M00NCHLDVS
## 5336          altsvt
## 5337  wwhands0me_jin
## 5338      kyeomshuuu
## 5339         Narns16
## 5340         mvyyyy_
## 5341     honeyylatte
## 5342     z_marie1702
## 5343       strawshua
## 5344     tenrenfinds
## 5345   itz_linda1213
## 5346    horanghaeshi
## 5347        _mogwoon
## 5348        kth_axie
## 5349    DelacruzRoda
## 5350 osaka_seventeen
## 5351   seokhaniyoo_n
## 5352       jeyangsfw
## 5353     hash_trsr15
## 5354    stuffedbear8
## 5355       kiwicheol
## 5356       mysteano1
## 5357        SHAE_twt
## 5358 Katheri31086249
## 5359       SvtShazam
## 5360       faeiryoon
## 5361       SvtShazam
## 5362      _bolu_love
## 5363    _denziegomez
## 5364     honeyylatte
## 5365  futurekpopdino
## 5366     sunnlantern
## 5367     ck_armystay
## 5368      kookangels
## 5369       kiwicheol
## 5370    coupsbestboy
## 5371  PatoInYourArea
## 5372    coupsbestboy
## 5373     sunnlantern
## 5374  shilin40702038
## 5375    notesonwoozi
## 5376        sapsolee
## 5377     sunnlantern
## 5378     Pewpew_1111
## 5379       AlexCM290
## 5380       ririesse_
## 5381    _wonurideul_
## 5382        jwoooonu
## 5383       sebongs00
## 5384    DelacruzRoda
## 5385   goingyellooow
## 5386       ummmyyy10
## 5387        jwoooonu
## 5388     sunnlantern
## 5389      patricia9x
## 5390        babujjkv
## 5391   snapshootshua
## 5392   ChogiWoW_Jams
## 5393    love_kyunnie
## 5394        kth_axie
## 5395       pllames06
## 5396        02_heeee
## 5397      KaruSullca
## 5398       4SVTJIHAN
## 5399    TheKoolcat01
## 5400        HappxBoo
## 5401   urigamanna___
## 5402     sunnlantern
## 5403       clrbprzly
## 5404     sunnlantern
## 5405  ykislifehelp11
## 5406 Yunjaedrey_0610
## 5407        kth_axie
## 5408    lifewithsvt_
## 5409      Desi_Ladki
## 5410   yumarksbaddie
## 5411    cinnamoshuas
## 5412  ashlee68868054
## 5413       _meowchii
## 5414       _psycoups
## 5415        JJENST4R
## 5416  RainhaRafaLeia
## 5417  sooseoksoonver
## 5418     sunnlantern
## 5419          asrh70
## 5420      YyangL1010
## 5421  coupranghaeisa
## 5422      fallen_pur
## 5423   jessyksilva29
## 5424    cinnamoshuas
## 5425   narishushushu
## 5426          asrh70
## 5427   im_atinyatiny
## 5428       mnmamazed
## 5429    minholly2142
## 5430     windylearns
## 5431        wonueisa
## 5432   goingyellooow
## 5433      seokminpop
## 5434     sunnlantern
## 5435     dadducheoll
## 5436     my_mo_onjun
## 5437    sing_seungch
## 5438          L1s498
## 5439       _psycoups
## 5440     sunnlantern
## 5441        yoitland
## 5442     sunnlantern
## 5443   xuminghaoluvr
## 5444    HOODlESEAZON
## 5445   oddeyesnorkle
## 5446    kkukkungie__
## 5447  YangYangsFairy
## 5448   goingyellooow
## 5449  YangYangsFairy
## 5450     sunnlantern
## 5451     sunnlantern
## 5452       yeoshuaa_
## 5453       malen_mbb
## 5454    weneebebe186
## 5455       lilamriie
## 5456     sunnlantern
## 5457  1004_Cheonghan
## 5458  ykislifehelp11
## 5459     sunnlantern
## 5460     junhaocaart
## 5461   mustofa_maida
## 5462    minholly2142
## 5463     sunnlantern
## 5464         micxie6
## 5465       yeoshuaa_
## 5466   goingyellooow
## 5467 bowerbirdsjewel
## 5468     hoshiskyeom
## 5469       lululabuw
## 5470        SEOkidss
## 5471   Ab66ixAb66ix1
## 5472    mr_kimmingyu
## 5473     aboutceltic
## 5474       seokgreen
## 5475   Banda37412384
## 5476    mr_kimmingyu
## 5477  1004_Cheonghan
## 5478       luv__wonu
## 5479       qtpiewonu
## 5480 danielharris151
## 5481    mamo_natacha
## 5482     junniedachi
## 5483     do_hyung_gi
## 5484   goingyellooow
## 5485        MANIIC11
## 5486       wwonuyaaa
## 5487  veryawesomevav
## 5488  lunameetsvenus
## 5489    kyeoms_pizza
## 5490       Monwe_H1K
## 5491    cherishcheka
## 5492   moomO_Oabby23
## 5493  1004_Cheonghan
## 5494         huiimxu
## 5495     kyeomavenue
## 5496       sebongs00
## 5497       shywoniee
## 5498       KTEZXYS20
## 5499     sunnlantern
## 5500         BAMC4TS
## 5501    min_youkyung
## 5502     kyeomavenue
## 5503    min_youkyung
## 5504 Benazir59556198
## 5505         uriwony
## 5506       mimareads
## 5507        diaidiia
## 5508     sunnlantern
## 5509       meckcahhh
## 5510     kyeomavenue
## 5511 17_prince_hoshi
## 5512    paulashaynee
## 5513     kidult_wonu
## 5514       play_bebe
## 5515       chaeeboki
## 5516       bellzqtie
## 5517 8finitywiththe8
## 5518     andreamhay6
## 5519    kkukkungie__
## 5520     kyeomavenue
## 5521       chokergyu
## 5522     sunnlantern
## 5523   jhchwwzflower
## 5524     everyownwoo
## 5525       mimareads
## 5526     Dillatron95
## 5527  MS_CARBONARaAa
## 5528      random_srh
## 5529      random_srh
## 5530  bangbangtanfam
## 5531      random_srh
## 5532      random_srh
## 5533 this_winterbear
## 5534   goingyellooow
## 5535      Junnie1006
## 5536        littykei
## 5537      yowtopsyuh
## 5538     gaycheollie
## 5539  Ashraf46753364
## 5540    cheskaelizze
## 5541     cheersbysvt
## 5542 luniver23843459
## 5543        kwannhao
## 5544    pebblesnibam
## 5545       ellexjeon
## 5546        nrkcolls
## 5547 SummerFriday_16
## 5548       _lemonlee
## 5549       nickIuver
## 5550     alexaxoxo__
## 5551       woozitrbl
## 5552      17ismyhome
## 5553       coleen_nn
## 5554      LesloMx7SJ
## 5555     sunnlantern
## 5556   JOHNNYSFAVHOE
## 5557          kmxnaj
## 5558   yangiethepooh
## 5559       lovesvntn
## 5560       _lemonlee
## 5561     kyeomavenue
## 5562     _hseungilht
## 5563        _mogwoon
## 5564   Ab66ixAb66ix1
## 5565        yeriloft
## 5566   Ab66ixAb66ix1
## 5567        yeriloft
## 5568      dalkyeomie
## 5569       _lemonlee
## 5570       shywoniee
## 5571     stansvt13__
## 5572          wzidle
## 5573   WhitSeungZaya
## 5574       imdeekay_
## 5575  mahalsiminghao
## 5576      shoeahsshi
## 5577        luisaiel
## 5578      dreamofyuu
## 5579   Wonuwonu_1704
## 5580      caricerica
## 5581     pattydump04
## 5582    schatzikyeom
## 5583  ashlee68868054
## 5584         pmbakid
## 5585   _chiaroscurow
## 5586      JohndMeyer
## 5587   DonaldJeromeF
## 5588     windylearns
## 5589      yabitterie
## 5590       dokingmin
## 5591      random_srh
## 5592        soojicpa
## 5593   Lovejisoohong
## 5594    cheollietang
## 5595       _lemonlee
## 5596      jeonwwscat
## 5597        hanieeun
## 5598 ultralordxyehet
## 5599   Lovejisoohong
## 5600        odetovou
## 5601      BSSEOKMARS
## 5602         chum164
## 5603      _chipmunki
## 5604      BSSEOKMARS
## 5605    cheollietang
## 5606        Mariamxo
## 5607    BPBlinkisrev
## 5608    cheollietang
## 5609  LEZAH_ACOUST1C
## 5610   karendrinkard
## 5611  ho5hi_____kwon
## 5612      pledishits
## 5613     wo_oziverse
## 5614      migoymochi
## 5615       apaolaa11
## 5616        svtbz_Q8
## 5617  prettycherryli
## 5618    soonyoungHee
## 5619    luminouswonu
## 5620       yjeonghn_
## 5621      svts_bxnny
## 5622         ratikmm
## 5623    INNERBEAR_95
## 5624      jingminssi
## 5625       jisdomino
## 5626       yjeonghn_
## 5627          Zemyla
## 5628      jingminssi
## 5629      woozi_time
## 5630          _nnamm
## 5631        odetovou
## 5632       jisdomino
## 5633  noemouqueirwin
## 5634          jjs_jh
## 5635         4_7teen
## 5636       seokgreen
## 5637        fendinaj
## 5638   sunnyvernon17
## 5639       jisdomino
## 5640 ShreyaseeDutta1
## 5641 12uselesshyungs
## 5642       jisdomino
## 5643   WhitSeungZaya
## 5644    ImSagonoy_14
## 5645       sebongren
## 5646       HOSHIPOGl
## 5647   Ab66ixAb66ix1
## 5648        YANGUUWO
## 5649  thinkinboutjun
## 5650      monsoleilX
## 5651        odetovou
## 5652          nrjin1
## 5653      jingminssi
## 5654      bubbleriki
## 5655      jingminssi
## 5656   secretkpopfan
## 5657       wooahae01
## 5658       qtpiewonu
## 5659          jeouwv
## 5660        jenosgbf
## 5661        odetovou
## 5662      TanyAmaya5
## 5663       gyushiwoo
## 5664 teatimewiththe8
## 5665  bodylike3racha
## 5666  LEZAH_ACOUST1C
## 5667       gyushiwoo
## 5668      migoymochi
## 5669       wooahae01
## 5670       wooahae01
## 5671      jhluversvt
## 5672       wooahae01
## 5673   goingyellooow
## 5674    WonderKiko12
## 5675       wooahae01
## 5676         4_7teen
## 5677  seventeen_1718
## 5678          coenky
## 5679 SoulReaprWeapon
## 5680      ssa_shaaaa
## 5681        jenosgbf
## 5682  aseulwenjoyrii
## 5683 part_time_cl0wn
## 5684        MXSMKHJI
## 5685      Iostsvmmer
## 5686   for17soonchan
## 5687     pent_ela7ly
## 5688   ReneeKniiight
## 5689     taehyuncore
## 5690  LEZAH_ACOUST1C
## 5691   goingyellooow
## 5692    Bluemoon__17
## 5693         leichve
## 5694       haorenity
## 5695      MX_BrandPR
## 5696        ygspingu
## 5697       world4jin
## 5698   aslaniharonnn
## 5699   goingyellooow
## 5700         gimo_au
## 5701        chngkihh
## 5702 part_time_cl0wn
## 5703         boosfav
## 5704      svncouphae
## 5705       missjeyd_
## 5706 part_time_cl0wn
## 5707     woojoodollz
## 5708    cheollietang
## 5709       softgyux9
## 5710     seolarenjun
## 5711 httpnicoulechoi
## 5712      EH_coutour
## 5713 everyoneluvswoo
## 5714  christinejoy_i
## 5715        odetovou
## 5716   kihyunenjoyer
## 5717  joshuashuashii
## 5718   SeriousSpidey
## 5719         yu_haos
## 5720     jinniestuna
## 5721        sohshort
## 5722    SPIDERMINGYU
## 5723  joaquinpalma29
## 5724      sseyesmile
## 5725      natsuki_s0
## 5726    coupsttattoo
## 5727           atzpv
## 5728  YangYangsFairy
## 5729  YangYangsFairy
## 5730  YangYangsFairy
## 5731 cheollierancher
## 5732      bebeyanggg
## 5733        sseubtin
## 5734  YangYangsFairy
## 5735 katie_seventeen
## 5736 chocolexeascart
## 5737    wonuyoongles
## 5738         fmx__97
## 5739         ahleliy
## 5740      hoeranghey
## 5741        Monsoul3
## 5742   sunshinemangi
## 5743       DarawadiN
## 5744 Paulina12649088
## 5745       quirkaaaa
## 5746         ahleliy
## 5747      horienghae
## 5748        Lilolan2
## 5749      hoeranghey
## 5750 everyoneluvswoo
## 5751       quirkaaaa
## 5752         chwepop
## 5753  ourleadersfatu
## 5754    EnasSuliman3
## 5755      JTH_Kook24
## 5756  1004_Cheonghan
## 5757      Iostsvmmer
## 5758        odetovou
## 5759        meh_rong
## 5760       jhanshua_
## 5761   YJHapologists
## 5762 MonstaXVotingSQ
## 5763   pheebeeeeeeee
## 5764      Seok_kim92
## 5765      bigbabygyu
## 5766     HowardC_Sea
## 5767       quirkaaaa
## 5768        AstroYuw
## 5769       nat_ohnat
## 5770 everyoneluvswoo
## 5771 yoonjeonghannny
## 5772      jackiesaku
## 5773         beedect
## 5774 yoonjeonghannny
## 5775       iKillMnet
## 5776       weiesunoo
## 5777   hanjonggyumin
## 5778        sohshort
## 5779      hooneyrich
## 5780       jonewoo17
## 5781      Aprilia_48
## 5782      yllowloves
## 5783       KimGaia10
## 5784  bambinicologne
## 5785    jeonghanlvrz
## 5786       xaaanneee
## 5787       quirkaaaa
## 5788       KTEZXYS20
## 5789    wendy_rdvlvt
## 5790 PuntualAngelica
## 5791       MarSeal28
## 5792       sootrukai
## 5793        jenrauls
## 5794  falliinfl0wer_
## 5795    mingfthao_17
## 5796        eoia_min
## 5797    minchohannie
## 5798  falliinfl0wer_
## 5799       userlili_
## 5800       vobo_tiny
## 5801     julseokminn
## 5802   MelodieLouhae
## 5803 heavenscloud_07
## 5804   atinybebe3471
## 5805      soonwoonoo
## 5806       userlili_
## 5807      horienghae
## 5808  YangYangsFairy
## 5809  YangYangsFairy
## 5810  YangYangsFairy
## 5811   apricityhoshi
## 5812      gyudarling
## 5813         dkhaolv
## 5814       8starwonu
## 5815       voumeyszo
## 5816     ohmykwannie
## 5817   xuminghaonnie
## 5818  seventeen_samm
## 5819   cceruleanbluu
## 5820     ohmykwannie
## 5821       hanshuayo
## 5822   Ab66ixAb66ix1
## 5823         VenayaL
## 5824      sevening13
## 5825  LEZAH_ACOUST1C
## 5826    bunnyjjongie
## 5827      sevening13
## 5828        shuaoshi
## 5829  seventeen_samm
## 5830        shuaoshi
## 5831  ATINYBLACKROSE
## 5832   marialuvsthem
## 5833         wompirx
## 5834  ATINYBLACKROSE
## 5835        kyjwonp_
## 5836       yayahere2
## 5837       jojob2905
## 5838    moon_korejin
## 5839        lluvshua
## 5840      Onikaleads
## 5841 picknavariego11
## 5842     MINWHOMSTve
## 5843   KkaKkaMeoRI_8
## 5844   cheolscherrie
## 5845   si_shuarieeee
## 5846      svts_bxnny
## 5847 wanwisa62543055
## 5848    hwanderlusts
## 5849     svtournesol
## 5850  joaoalmeida193
## 5851  LovelSeventeen
## 5852        zZrenjun
## 5853    jinspoutylip
## 5854 cheollierancher
## 5855          jMez08
## 5856 jeonghannihaeee
## 5857   Ab66ixAb66ix1
## 5858        tuanzzy_
## 5859      rrainy_iny
## 5860      NuggetNJ15
## 5861        tuanzzy_
## 5862 cheollierancher
## 5863      sartia_stx
## 5864        tuanzzy_
## 5865       _lemonlee
## 5866           jcyh_
## 5867 cheollierancher
## 5868        tuanzzy_
## 5869     MINWHOMSTve
## 5870    Kurt30019940
## 5871      Tweety__96
## 5872   xuminghaonnie
## 5873        liya_wsj
## 5874    JeJeeNzZ_snw
## 5875      leamarieoh
## 5876       aggiepr73
## 5877       qtyhannie
## 5878        lilyzzn_
## 5879 cheollierancher
## 5880       hypeshota
## 5881      _mjdelgado
## 5882      princekwsy
## 5883      imhotlemon
## 5884      horienghae
## 5885   krae_minshuji
## 5886  milkycake_1010
## 5887        odetovou
## 5888   rayofsunkyeom
## 5889        odetovou
## 5890       horangren
## 5891       aiurscart
## 5892        Miyandoo
## 5893      horienghae
## 5894  kyeomapologist
## 5895   Horanghae__17
## 5896       keren__dr
## 5897         d00remi
## 5898     joshuji3014
## 5899      astrohajus
## 5900       myraa_st7
## 5901         _Jinius
## 5902      horienghae
## 5903       _95jhyoon
## 5904       intakgirl
## 5905         _xxflvx
## 5906      horienghae
## 5907  ChairiyahAyumi
## 5908        ashkliea
## 5909    GuiangAndrea
## 5910       quirkaaaa
## 5911       _1995mhai
## 5912         BB0YHAO
## 5913     COSMlCOWBOY
## 5914 cheollierancher
## 5915      soonwoonoo
## 5916        DPRWONU_
## 5917      lovelyyhae
## 5918 PuntualAngelica
## 5919     yooncoupsie
## 5920   rossdalemarie
## 5921        odetovou
## 5922        xshimmie
## 5923        odetovou
## 5924      coupelatte
## 5925  dokyeomoatmeal
## 5926   xuminghaonnie
## 5927       oniryczne
## 5928    mj_cherryfan
## 5929      horienghae
## 5930  vergara_carlhy
## 5931   minwonshiii13
## 5932      cheolocart
## 5933      kwanieeboo
## 5934  carateenclouds
## 5935      horienghae
## 5936       quirkaaaa
## 5937          dia9yu
## 5938          KYKpH1
## 5939     horangel713
## 5940    seventen_ten
## 5941      tbmoesha23
## 5942 chocolexeascart
## 5943 terjungkirbaliq
## 5944       oniryczne
## 5945      maliamaraa
## 5946    hoobifresita
## 5947         hjscare
## 5948        onujeonn
## 5949       oniryczne
## 5950       zel_lpmck
## 5951   minwonshiii13
## 5952    soonyounguji
## 5953       hoeshijun
## 5954          j17ung
## 5955       quirkaaaa
## 5956       boosadeez
## 5957    ceri_jubilee
## 5958   MyLoveJimin95
## 5959       hoshiiest
## 5960      tbmoesha23
## 5961     95linewhore
## 5962        onujeonn
## 5963     cheolsyeobo
## 5964        maze_jpg
## 5965    loveminhyukk
## 5966       ___jw_ano
## 5967       deariekyu
## 5968 EpicMahonelover
## 5969        chogirlx
## 5970     yooncoupsie
## 5971      skyxmhwjh_
## 5972       itzferyel
## 5973      jhanelamnl
## 5974 SumitaSwargiar7
## 5975    bonbonaia094
## 5976       chwenzhou
## 5977        CaryennG
## 5978        ashkliea
## 5979        CaryennG
## 5980  mapOf_eternity
## 5981       12mohstar
## 5982    haorangnabix
## 5983    biancaratzen
## 5984        soft4ksy
## 5985      cshndcheol
## 5986      sdrawiing_
## 5987     yooncoupsie
## 5988 horangyuranghae
## 5989    skskcutkebee
## 5990      gh0stpearl
## 5991  KittyCat210287
## 5992     evrbdyhngsm
## 5993 SabiLovesJoshua
## 5994      dinosfavgf
## 5995        soft4ksy
## 5996 cheollierancher
## 5997 cheollierancher
## 5998       JW_vergyu
## 5999      sevening13
## 6000 SabiLovesJoshua
## 6001     jason_yandi
## 6002 cheollierancher
## 6003 cheollierancher
## 6004        CaryennG
## 6005         96leeji
## 6006 MaryCal64272246
## 6007        CaryennG
## 6008     cheolsyeobo
## 6009        CaryennG
## 6010     yooncoupsie
## 6011        shuaists
## 6012        luwesugh
## 6013    baerubyjane_
## 6014     yooncoupsie
## 6015         17Apisa
## 6016     jincheolshi
## 6017  hussienezzat14
## 6018  kea13seventeen
## 6019  warriornun_mex
## 6020       ThisWooly
## 6021 ddycheolscherry
## 6022     lemmawonie_
## 6023         96leeji
## 6024        Mdj_4578
## 6025 PuntualAngelica
## 6026       lovesvntn
## 6027  Asmaeenriyan28
## 6028   Ahmed65435190
## 6029     softyrenjun
## 6030         17Apisa
## 6031    Nardibeomkai
## 6032       kidultacy
## 6033        meowoozy
## 6034   fauthevillain
## 6035     Pandshizuca
## 6036     dokyeokki17
## 6037        mwphilic
## 6038      alphamoles
## 6039         MoodzPh
## 6040       hoeshijun
## 6041 cheollierancher
## 6042        _hanamei
## 6043       JW_vergyu
## 6044        Hell_132
## 6045      jhanelamnl
## 6046      Esso_20_22
## 6047         JAEI_08
## 6048       mybbybooo
## 6049     RahmaEm1278
## 6050      lavenza_l1
## 6051      leejchanie
## 6052     yooncoupsie
## 6053       JW_vergyu
## 6054       jenoggukk
## 6055       a_mido500
## 6056        W1qwind_
## 6057 ndeyerokhaya795
## 6058     yooncoupsie
## 6059      henna_cole
## 6060       quirkaaaa
## 6061      skwanboo__
## 6062  icedandaaaaaan
## 6063     yooncoupsie
## 6064        withgyu2
## 6065     yooncoupsie
## 6066    hansoltriste
## 6067     lalisaswelt
## 6068  AlikaNavarro97
## 6069     sexyminghao
## 6070       JW_vergyu
## 6071  svtcaretvernon
## 6072         soadrio
## 6073     ryuuuu__fox
## 6074     jaredidadoo
## 6075  svtcaretvernon
## 6076         JAEI_08
## 6077     mingkitopia
## 6078    kidultwonshi
## 6079      sunbaek629
## 6080       shiro_406
## 6081 smplyfallinforu
## 6082        withgyu2
## 6083       zel_lpmck
## 6084   SayHi68686064
## 6085      pp_pichaaa
## 6086    kat_fanixczs
## 6087         oisimrn
## 6088       parkayedl
## 6089       lawolfyki
## 6090       zel_lpmck
## 6091  Moody147258369
## 6092 dsfnctnl_kpopie
## 6093        ScyeHong
## 6094     kwonhoshtar
## 6095     yooncoupsie
## 6096     yooncoupsie
## 6097   Nanabunnyyyy_
## 6098       kcchoding
## 6099   CheolWonMinDk
## 6100     yooncoupsie
## 6101     yooncoupsie
## 6102     yooncoupsie
## 6103        lisugart
## 6104     yooncoupsie
## 6105 katie_seventeen
## 6106        worksalt
## 6107     _______ayla
## 6108    kimpossiblue
## 6109       lovesvntn
## 6110        gyulaabi
## 6111   windha17_jeon
## 6112 KarimAh93780462
## 6113    coupranghaae
## 6114    k_winterbear
## 6115         ae7teen
## 6116     Arosevia_Go
## 6117    echographyyy
## 6118   windha17_jeon
## 6119    notesonwoozi
## 6120    loveminhyukk
## 6121        stxrhope
## 6122   windha17_jeon
## 6123        He___012
## 6124 onyourj_eonghan
## 6125     coupsyberry
## 6126     AnneliesiaL
## 6127       auratelxo
## 6128   windha17_jeon
## 6129       jdynn1299
## 6130   windha17_jeon
## 6131      ashyeonbin
## 6132     softyrenjun
## 6133       lyssheesn
## 6134       NPipireta
## 6135      mynghaoshi
## 6136        TOKKIIWl
## 6137      HOBlBERRY_
## 6138      romyndiaye
## 6139        TOKKIIWl
## 6140        sjyfairy
## 6141    changasoline
## 6142     yooncoupsie
## 6143   omnia88116637
## 6144        TOKKIIWl
## 6145 katie_seventeen
## 6146   missmafia0526
## 6147        TOKKIIWl
## 6148   sugawararlert
## 6149      romyndiaye
## 6150    changasoline
## 6151        Vip_Esso
## 6152   Mernayounis15
## 6153      Morgan_mw7
## 6154     geIiventura
## 6155         llvlyrs
## 6156    thinkpinkhoe
## 6157    seventen_ten
## 6158      ateezgggab
## 6159 americanowlinow
## 6160      jaywonistz
## 6161        thirdzon
## 6162       wonandshi
## 6163      fushiyuji_
## 6164     junyeochinn
## 6165      norenminaj
## 6166       Mynah4004
## 6167    callmefarida
## 6168     svtournesol
## 6169        withgyu2
## 6170      mhabbysama
## 6171       aislin679
## 6172         _acey18
## 6173     pocketzsmom
## 6174         _acey18
## 6175        junsmoa_
## 6176        withgyu2
## 6177     geIiventura
## 6178          mswtmn
## 6179     yooncoupsie
## 6180       kmgyuluvs
## 6181 NefretiriMacar1
## 6182         EIiaaia
## 6183       allforhui
## 6184          ccrz92
## 6185         kjwoo12
## 6186     wonwoozone1
## 6187         msyckae
## 6188     yooncoupsie
## 6189       porameiii
## 6190        onujeonn
## 6191    cheolforyouu
## 6192     Hoshi_eerie
## 6193       jdynn1299
## 6194      2_moka2006
## 6195 americanowlinow
## 6196      chamsrobin
## 6197         0OH0826
## 6198     evrbdyhngsm
## 6199        withgyu2
## 6200    gyuwooshihan
## 6201      ujiverse17
## 6202        withgyu2
## 6203  1004_Cheonghan
## 6204      teumekyuhi
## 6205  bullyangbaebae
## 6206      ujiverse17
## 6207 americanowlinow
## 6208          al_yjh
## 6209          ImYJez
## 6210        withgyu2
## 6211 ekspetasivisual
## 6212   smilesuminisa
## 6213   windha17_jeon
## 6214        withgyu2
## 6215    Redsam118_Jr
## 6216         kjwoo12
## 6217        withgyu2
## 6218     ayoseonghwa
## 6219      kyeomincuu
## 6220      mantinha23
## 6221 Jigglyp48196241
## 6222     soundofsvt_
## 6223 MEIMEICHEUNGGGG
## 6224        withgyu2
## 6225       seokhao_8
## 6226   windha17_jeon
## 6227      eIit3racha
## 6228   windha17_jeon
## 6229         kjwoo12
## 6230     yooncoupsie
## 6231        thirdzon
## 6232   windha17_jeon
## 6233     asahi_hmada
## 6234      JHHJ95cart
## 6235   windha17_jeon
## 6236      BarbiGangg
## 6237    giantdoodfus
## 6238      cheolocart
## 6239    your_earth_8
## 6240        thirdzon
## 6241     yooncoupsie
## 6242        shzukwan
## 6243        quteqirl
## 6244        shzukwan
## 6245     yooncoupsie
## 6246     _seokminshi
## 6247       zel_lpmck
## 6248       haoliehae
## 6249       JW_vergyu
## 6250          10Y4NG
## 6251      ujiverse17
## 6252   windha17_jeon
## 6253   krae_minshuji
## 6254        withgyu2
## 6255    coupssdrling
## 6256 ananmayw_6udayo
## 6257  Btsandtxtloves
## 6258 ananmayw_6udayo
## 6259  Btsandtxtloves
## 6260 ananmayw_6udayo
## 6261       lovesvntn
## 6262        julxteen
## 6263     jo_shuahong
## 6264    bellaAria_06
## 6265   unli9yuhanwoo
## 6266       svt_saki_
## 6267        shiahaee
## 6268       lovesvntn
## 6269      ujiverse17
## 6270  Btsandtxtloves
## 6271        miadlrsr
## 6272   seoksinthebox
## 6273       mikhoshii
## 6274        withgyu2
## 6275     mingyunvrse
## 6276        miadlrsr
## 6277        withgyu2
## 6278     jo_shuahong
## 6279   windha17_jeon
## 6280      BunnyChim_
## 6281    loveseocarat
## 6282   windha17_jeon
## 6283      wonugiee__
## 6284     CHERRYHAE17
## 6285     pwitygurlll
## 6286        miadlrsr
## 6287    shortqueenzb
## 6288   windha17_jeon
## 6289        miadlrsr
## 6290    GoatjamesLal
## 6291    coupssdrling
## 6292     hanniehao_o
## 6293      cottonbuut
## 6294      hoshicitos
## 6295   smilesuminisa
## 6296          svtbvc
## 6297       laviehuii
## 6298  Btsandtxtloves
## 6299        miadlrsr
## 6300        kyecmies
## 6301    coupssdrling
## 6302        w071796w
## 6303      heesunnie_
## 6304        rupokgyu
## 6305    itssammymaui
## 6306 HaveYouEver1998
## 6307       nat_ohnat
## 6308  minghaolicious
## 6309      rawrtigeRr
## 6310       KILLUAYAH
## 6311    k_winterbear
## 6312       _meeyyyyy
## 6313       KILLUAYAH
## 6314      Lizcarat17
## 6315   every_wonwo_o
## 6316    AgustDaniela
## 6317       zel_lpmck
## 6318         MAERIRl
## 6319    coupssdrling
## 6320   kw_nsoonyoung
## 6321         balca77
## 6322     wonwoo_main
## 6323        miadlrsr
## 6324    GioManzanoJr
## 6325       eriqueenh
## 6326  bambinicologne
## 6327     coupsyberry
## 6328       marycixky
## 6329       leeseoksy
## 6330     love_2_seok
## 6331       GemNicki_
## 6332      maliamaraa
## 6333     shuweethani
## 6334     ramenrulz8P
## 6335     yooncoupsie
## 6336  haruharuminwon
## 6337        miadlrsr
## 6338        l6veyoon
## 6339        miadlrsr
## 6340        phnamoon
## 6341        miadlrsr
## 6342    jcenthusiast
## 6343     hope_stream
## 6344        kyeomiqt
## 6345 Selenophile9396
## 6346   MelodieLouhae
## 6347       JW_vergyu
## 6348 yeppuen_BORAHAE
## 6349    GioManzanoJr
## 6350        miadlrsr
## 6351       crxstal01
## 6352        withgyu2
## 6353      Kiminamoka
## 6354        myoingie
## 6355  seokmin_mingyu
## 6356       SaraM_943
## 6357       dksimjake
## 6358    nana14081802
## 6359  Taekook_Hakkie
## 6360  Taekook_Hakkie
## 6361  JannahNikki419
## 6362  Taekook_Hakkie
## 6363   nirmine_salhi
## 6364        miadlrsr
## 6365     yooncoupsie
## 6366 ananmayw_6udayo
## 6367       dkpetista
## 6368        miadlrsr
## 6369      coupsdwrld
## 6370      mihanzxcv_
## 6371   lovekyeomiee_
## 6372   stelloveyou19
## 6373     filetminonn
## 6374       userh0shi
## 6375     IrisWoongie
## 6376    pootieniwonu
## 6377  sandatanielias
## 6378       SaraM_943
## 6379     cheollibeee
## 6380       lovesvntn
## 6381     yooncoupsie
## 6382        miadlrsr
## 6383    joshuranghae
## 6384       lovesvntn
## 6385   heytamagotchi
## 6386   lovekyeomiee_
## 6387   jnghansbanana
## 6388    dinopochacco
## 6389        sogala04
## 6390        ah_joshu
## 6391      gyuldaepah
## 6392       dkpetista
## 6393         Augsie_
## 6394       heywyclef
## 6395     yooncoupsie
## 6396   onigirimingyu
## 6397      dearsvteen
## 6398    incessantlou
## 6399        bestnsdk
## 6400   rawrnni4wonuu
## 6401       woozitrbl
## 6402       lovesvntn
## 6403 __prncsshnnhntn
## 6404    hannieyooo_n
## 6405   lovekyeomiee_
## 6406      skippidear
## 6407       woozitrbl
## 6408    lucrexiazura
## 6409        bestnsdk
## 6410       faeiryoon
## 6411       dkpetista
## 6412       kmgyuluvs
## 6413    dokyeomsfool
## 6414     eiiissaaa_a
## 6415       dkpetista
## 6416        miadlrsr
## 6417 acoustic_jisoo_
## 6418    moonchiIdhan
## 6419        miadlrsr
## 6420       0218__ldk
## 6421        miadlrsr
## 6422     yooncoupsie
## 6423  angel_and_liar
## 6424       0218__ldk
## 6425      m0onhuff_j
## 6426        vhooshik
## 6427      agentbap00
## 6428       dokeydoki
## 6429         heme242
## 6430         scoupwz
## 6431       0218__ldk
## 6432  1004_Cheonghan
## 6433     dreamoonjun
## 6434         dhraxis
## 6435  BtsFanStan1985
## 6436     hanniewifey
## 6437     yooncoupsie
## 6438   lovekyeomiee_
## 6439    itssammymaui
## 6440     yooncoupsie
## 6441    NICKIANGELIC
## 6442       0218__ldk
## 6443      jingminssi
## 6444       woozitrbl
## 6445    pootieniwonu
## 6446     fionablair_
## 6447 rodelyn_quinto1
## 6448       0218__ldk
## 6449        RagingAn
## 6450       zel_lpmck
## 6451   heytamagotchi
## 6452       0218__ldk
## 6453  yoon_hannihae_
## 6454 BonhoefferLives
## 6455       rins_moon
## 6456  taeguk_yojikyu
## 6457   _pamelaphiri_
## 6458       0218__ldk
## 6459         dhraxis
## 6460        gabateez
## 6461     jhchampagne
## 6462     purnamaRMDN
## 6463       kmgyuluvs
## 6464       0218__ldk
## 6465       juju_cart
## 6466     gentleshuan
## 6467       emizzz610
## 6468       benandbiu
## 6469       0218__ldk
## 6470    uremaaguilar
## 6471       wonsluver
## 6472       juju_cart
## 6473      jingminssi
## 6474     mosheymoshi
## 6475   lovekyeomiee_
## 6476    coupssdrling
## 6477    jihancheol88
## 6478    uremaaguilar
## 6479     HONGYUZILLA
## 6480     fionablair_
## 6481      ynaloves17
## 6482       jseunie07
## 6483   heytamagotchi
## 6484       snxwbloom
## 6485     25hupfendes
## 6486    coupssdrling
## 6487         gyvhans
## 6488   lovekyeomiee_
## 6489    coupssdrling
## 6490    uremaaguilar
## 6491    uremaaguilar
## 6492    uremaaguilar
## 6493    uremaaguilar
## 6494 acoustic_jisoo_
## 6495          chc_wn
## 6496 yourspringnoona
## 6497    Lavenderlee8
## 6498     hanniewifey
## 6499     yooncoupsie
## 6500       hoeshijun
## 6501       hoeshijun
## 6502         dhraxis
## 6503         mjhuism
## 6504       heywyclef
## 6505   smilesuminisa
## 6506    coupssdrling
## 6507     yooncoupsie
## 6508     WJBYEOLSHUA
## 6509      Bo_oLitssa
## 6510     Carat_W0rld
## 6511     hanniewifey
## 6512      marii_nhel
## 6513    wonwoondrous
## 6514   user_is_jaded
## 6515       lovesvntn
## 6516           z0crt
## 6517     yooncoupsie
## 6518      marii_nhel
## 6519    mingfthao_17
## 6520     kwonhoshtar
## 6521     yooncoupsie
## 6522 newbiecarathere
## 6523         scoupwz
## 6524     yooncoupsie
## 6525        svtlovxr
## 6526     NabellaAtyn
## 6527     yooncoupsie
## 6528     urfavhannie
## 6529     yooncoupsie
## 6530     yooncoupsie
## 6531   rayofsunkyeom
## 6532   joshuasboyfie
## 6533     safadillaaa
## 6534        dojakyun
## 6535    minghaolovee
## 6536     Pewpew_1111
## 6537     hanniewifey
## 6538 ruthybautista89
## 6539    jihancheol88
## 6540  jww_enthusiast
## 6541         dreijo_
## 6542 newbiecarathere
## 6543      Shabar_bar
## 6544       chemi_svt
## 6545    coupssdrling
## 6546           ptwsc
## 6547          XuSimp
## 6548     scoupstupos
## 6549    vminkook_vmk
## 6550      gyugyuwons
## 6551    Siri24741948
## 6552  sebongtannieee
## 6553      5huahaeeee
## 6554      IzzyChwe13
## 6555       vania3011
## 6556  wondaandcoswoo
## 6557    GerryAdamsSF
## 6558     CHERRYHAE17
## 6559    jihancheol88
## 6560      soshiakgae
## 6561     hanniewifey
## 6562   lovernihannie
## 6563 onyourj_eonghan
## 6564      marii_nhel
## 6565       mapa20031
## 6566     lvly_sMyles
## 6567     nielleja_24
## 6568    coupssdrling
## 6569     yooncoupsie
## 6570     moonhaniyoo
## 6571      marii_nhel
## 6572        hani3hae
## 6573          XuSimp
## 6574     yooncoupsie
## 6575   dre_seventeen
## 6576   onlyseungchoi
## 6577 __prncsshnnhntn
## 6578      iam_zeevia
## 6579  liltle_plantie
## 6580          XuSimp
## 6581     yooncoupsie
## 6582    nicheyoungie
## 6583       wonuyaa17
## 6584    huyngtaesimp
## 6585  liltle_plantie
## 6586        itzyrism
## 6587    nicheyoungie
## 6588       _1995mhai
## 6589    coupssdrling
## 6590      dearsvteen
## 6591       hopilov94
## 6592    jihancheol88
## 6593        eochanah
## 6594         kupasvt
## 6595         i4sunsu
## 6596       vania3011
## 6597  WeasleySivan16
## 6598  catchthesezzzs
## 6599  WeasleySivan16
## 6600       aegigian_
## 6601  WeasleySivan16
## 6602  WeasleySivan16
## 6603   joshuasboyfie
## 6604    coupssdrling
## 6605       lolakwan_
## 6606    infoinsync01
## 6607 Lillian79976312
## 6608          prynn0
## 6609     yooncoupsie
## 6610        96lTGlRL
## 6611          bbhjww
## 6612   moon1ndustry_
## 6613   TrumpsNewBoss
## 6614   joshuasboyfie
## 6615 hoonie_hoonieee
## 6616   moon1ndustry_
## 6617       eisashi_n
## 6618   moon1ndustry_
## 6619  enjellovesyoon
## 6620    joshuranghae
## 6621   moon1ndustry_
## 6622     ImChriseeth
## 6623    winkypinky_y
## 6624     bea_shuahae
## 6625 ndeyerokhaya795
## 6626         xxqttam
## 6627       CutiesKit
## 6628     yooncoupsie
## 6629      Iyahidoiii
## 6630    wonuichanggu
## 6631    kimceomingyu
## 6632    kimceomingyu
## 6633       _1995mhai
## 6634     yooncoupsie
## 6635     moonxchwita
## 6636     yooncoupsie
## 6637   janessssreidx
## 6638     sapphire6ix
## 6639    kimceomingyu
## 6640     yooncoupsie
## 6641    AriaDanyelle
## 6642  july_seventeen
## 6643 WangPuppy_852g7
## 6644     sapphire6ix
## 6645  coupsprotector
## 6646       eianxyoon
## 6647  neverwhalbeach
## 6648     PabloRams25
## 6649     yooncoupsie
## 6650    GioManzanoJr
## 6651    nicheyoungie
## 6652     Kiiimmyy_95
## 6653         nodichn
## 6654       danizyyyy
## 6655 mingyufever2020
## 6656      Bowiegrrl1
## 6657 WandaLissetteT2
## 6658 WangPuppy_852g7
## 6659   dindin_ttattu
## 6660       eisashi_n
## 6661       luvforjah
## 6662     yooncoupsie
## 6663  etherealkhoshi
## 6664 acoustic_jisoo_
## 6665     songbluenim
## 6666      Shxmiemie_
## 6667    AgustDaniela
## 6668        puifai_n
## 6669        hani3hae
## 6670  BlueCookieGal1
## 6671        _wonuyah
## 6672 svt_hanniemelon
## 6673      kidultpoca
## 6674      mochiwoo98
## 6675     yooncoupsie
## 6676 Lillian79976312
## 6677    coupssdrling
## 6678  Ahying20026254
## 6679     vkooknamngi
## 6680        xWonusvt
## 6681       TOXX_XXOT
## 6682       naevioo0o
## 6683        jshuwaa_
## 6684       CutiesKit
## 6685     gyupsie_rri
## 6686        soft4ksy
## 6687   lovernihannie
## 6688      mymarahuyo
## 6689     scoupstatts
## 6690       luvforjah
## 6691     sapphire6ix
## 6692      yoonhaliya
## 6693 lovethestanlife
## 6694    huyngtaesimp
## 6695        myoingie
## 6696      its4phire_
## 6697         yulchwe
## 6698     mingyu17ive
## 6699    Siri24741948
## 6700           cpdh_
## 6701      BaeJocie99
## 6702   jayu_wankhede
## 6703     sapphire6ix
## 6704       cheolzino
## 6705        SuGab888
## 6706    Siri24741948
## 6707   lovernihannie
## 6708    GioManzanoJr
## 6709  carrot_thinker
## 6710       luvforjah
## 6711        Calli_jd
## 6712     yooncoupsie
## 6713    kwanberryboo
## 6714     gyupsie_rri
## 6715     yooncoupsie
## 6716        iemks546
## 6717  95_lover_4ever
## 6718    blossomingoo
## 6719      om_tatamic
## 6720       pogiboo17
## 6721    blossomingoo
## 6722      jjongdoIIy
## 6723    blossomingoo
## 6724         mvnbleu
## 6725       jeon1w_oo
## 6726      0526things
## 6727    jihancheol88
## 6728      gyulovelyy
## 6729    blossomingoo
## 6730     Dwizzle2021
## 6731    myonlyonewoo
## 6732    blossomingoo
## 6733        keulise0
## 6734    blossomingoo
## 6735      kookangels
## 6736    blossomingoo
## 6737    blossomingoo
## 6738  0xBigwin19bibi
## 6739    blossomingoo
## 6740        ch4nong_
## 6741    blossomingoo
## 6742    blossomingoo
## 6743       Fai960609
## 6744    blossomingoo
## 6745    Podongtruzie
## 6746    blossomingoo
## 6747       LyzzznWon
## 6748    blossomingoo
## 6749       luvforjah
## 6750      bbclrmgn04
## 6751      softpsyche
## 6752         dprcigs
## 6753        hani3hae
## 6754      bbclrmgn04
## 6755    blossomingoo
## 6756       luvforjah
## 6757    tigerhosxhii
## 6758      bbclrmgn04
## 6759    blossomingoo
## 6760     yooncoupsie
## 6761  sebongtannieee
## 6762    blossomingoo
## 6763     yooncoupsie
## 6764    blossomingoo
## 6765 jazrandomreader
## 6766    blossomingoo
## 6767     yooncoupsie
## 6768    blossomingoo
## 6769     yooncoupsie
## 6770       luvforjah
## 6771  Wonjunshihandk
## 6772         eweecqt
## 6773      eevesdrops
## 6774    Siri24741948
## 6775     hanseokgyu_
## 6776     yooncoupsie
## 6777  ykislifehelp11
## 6778     yooncoupsie
## 6779     hanseokgyu_
## 6780    blossomingoo
## 6781       luvforjah
## 6782    blossomingoo
## 6783       shuastars
## 6784      bbclrmgn04
## 6785      bbclrmgn04
## 6786         dhraxis
## 6787     coupswonshi
## 6788      VIP_LC_SVT
## 6789          jjs_jh
## 6790  0xBigwin19bibi
## 6791   Alyssa_Jeon17
## 6792 HappyTixPasabuy
## 6793       luvforjah
## 6794     _boocherry_
## 6795         yulchwe
## 6796         yulchwe
## 6797     moonxchwita
## 6798         yulchwe
## 6799     mykitty__ww
## 6800         yulchwe
## 6801       notchew18
## 6802     mingyusuaIs
## 6803     moonxchwita
## 6804       luvforjah
## 6805        jkthssii
## 6806      tasty_desu
## 6807     moonxchwita
## 6808   hoeformeowonu
## 6809          wxnwzz
## 6810      tasty_desu
## 6811     Regvelvet20
## 6812     moonxchwita
## 6813       codejihan
## 6814   jenny80154120
## 6815       luvforjah
## 6816       sebongren
## 6817        maelkten
## 6818      Renethopia
## 6819      wmLhc66712
## 6820      userhanmin
## 6821     moonxchwita
## 6822      justhistar
## 6823      justhistar
## 6824       junwinhui
## 6825      justhistar
## 6826      justhistar
## 6827         Zaty23M
## 6828 99markjae_dkscw
## 6829      neogurywoo
## 6830  aslieverywhere
## 6831          IamZua
## 6832        jkminwon
## 6833    coupssdrling
## 6834  Wonjunshihandk
## 6835    jihancheol88
## 6836         newskzi
## 6837        xu_myngh
## 6838       _hosh1gyu
## 6839   ISHUCREAM1230
## 6840   YashitaVerma2
## 6841      _justadump
## 6842    MikroGIOsmos
## 6843       xvxchxnxp
## 6844      carrotgyuh
## 6845 jjungkookiee_97
## 6846 kaewkae66848999
## 6847      maincrahao
## 6848   ceuphoriazen1
## 6849      chefmingoo
## 6850        taekehys
## 6851     _marahuyooo
## 6852       luvforjah
## 6853    hestiacartz_
## 6854    coupssdrling
## 6855       _hosh1gyu
## 6856       liezldhin
## 6857         HJLUVRS
## 6858       luvforjah
## 6859       kukioreo_
## 6860        ErickFoo
## 6861      wenjunhuhu
## 6862    vikii_salina
## 6863    Manasawin_08
## 6864   carmycarmyesq
## 6865    Manasawin_08
## 6866      misswonooo
## 6867    stellarhueka
## 6868  naevis_calling
## 6869   carmycarmyesq
## 6870     Michele6360
## 6871       _hosh1gyu
## 6872        killa_ix
## 6873    coupssdrling
## 6874         xxqttam
## 6875        npxiesvt
## 6876          Diija9
## 6877    jihancheol88
## 6878       tjasa0412
## 6879 whatkindofcarat
## 6880         mmt2431
## 6881       _hosh1gyu
## 6882 whatkindofcarat
## 6883    echanechanie
## 6884    geeeennielyn
## 6885    jikoogicarts
## 6886       chanaa98_
## 6887     AlexaAlecxa
## 6888        Mahta_rr
## 6889         mmt2431
## 6890     AlexaAlecxa
## 6891    jihancheol88
## 6892  dokyeomtcjimin
## 6893     scheolwindy
## 6894       _hosh1gyu
## 6895         xxqttam
## 6896     Sunny032797
## 6897         dultta5
## 6898        kxxberry
## 6899    jihancheol88
## 6900     moon_bammie
## 6901       luvforjah
## 6902     wenplusone_
## 6903         wonulop
## 6904   minshuahanwoo
## 6905    MaxineAillah
## 6906        jshn__95
## 6907      ellii_twit
## 6908       _hosh1gyu
## 6909        wossellv
## 6910     ksunoopeach
## 6911      mihanzxcv_
## 6912   dumbabadumdum
## 6913         25Onang
## 6914   minshuahanwoo
## 6915       hongcoups
## 6916    jihancheol88
## 6917   _Deedandelion
## 6918           msnwu
## 6919       _beyygene
## 6920      cheesicart
## 6921         wonulop
## 6922        ___97gyu
## 6923      cheesicart
## 6924       _beyygene
## 6925 minyoongisugaBB
## 6926   dumbabadumdum
## 6927      luvhscartz
## 6928  smolkimseokjin
## 6929      greywonwoo
## 6930        HOSHane_
## 6931 dee_numerouno_k
## 6932        ella_mki
## 6933       luvmingoo
## 6934     leofangerls
## 6935        inna__nc
## 6936       _hosh1gyu
## 6937         2YZHer4
## 6938  PanDUHCourtney
## 6939       eyahann13
## 6940      artifaccts
## 6941         clowjfs
## 6942    jihancheol88
## 6943       _hosh1gyu
## 6944      greywonwoo
## 6945   by_soonminwon
## 6946        feat_jia
## 6947       luvforjah
## 6948       _hosh1gyu
## 6949          jwonwx
## 6950       _hosh1gyu
## 6951       minobeach
## 6952       yenaaaney
## 6953     imclarexx27
## 6954   minshuahanwoo
## 6955   kelvinreyes08
## 6956          nhh_rv
## 6957 Joshujibestiess
## 6958       _hosh1gyu
## 6959    MonalisaOT12
## 6960 Euphoria_angel_
## 6961          _96art
## 6962 PhillipLNorman3
## 6963       luvforjah
## 6964     casuallchwe
## 6965      KatsukiSel
## 6966         AJKwon_
## 6967    jihancheol88
## 6968      wonsoocart
## 6969     myHanniieee
## 6970 fernand26568085
## 6971      LOSTVC4USE
## 6972    hohohocheeks
## 6973         MinY901
## 6974   sweetbittermw
## 6975         25Onang
## 6976      woshikyeom
## 6977      KatsukiSel
## 6978   hwnghyunjeanz
## 6979        Cundunk1
## 6980      _btsvt1315
## 6981    imraciuu_svt
## 6982  ARTHURkYE0M_ll
## 6983       luvforjah
## 6984       lyyangiee
## 6985        Hobi_bbb
## 6986           msnwu
## 6987         luvrstk
## 6988    vminkook_vmk
## 6989     hannieqtp2t
## 6990       y_oonnics
## 6991     meiaiharafl
## 6992       barbfease
## 6993      SANDRUXISS
## 6994   kimhobiminjin
## 6995       _hosh1gyu
## 6996      iz5040iz61
## 6997  thatsly_jaymer
## 6998  Thisisieroween
## 6999      iz5040iz61
## 7000   bamtoriesggyu
## 7001    Ana_Gomez605
## 7002      iz5040iz61
## 7003       liezldhin
## 7004      iz5040iz61
## 7005     izadoraaziz
## 7006   minshuahanwoo
## 7007      CarinCamen
## 7008 kimmajdouline17
## 7009       _hosh1gyu
## 7010     seaseasonss
## 7011   kimhobiminjin
## 7012       cheolacee
## 7013      _______nm4
## 7014       _hosh1gyu
## 7015   kimhobiminjin
## 7016   allmyloveshua
## 7017  jeon_u_won2w00
## 7018 bruwetzualrisse
## 7019     vegastars99
## 7020    SeokHorseMin
## 7021      ewikaaashn
## 7022    tinyteez1024
## 7023       _hosh1gyu
## 7024     casuallchwe
## 7025    jihancheol88
## 7026       xtheoluvr
## 7027    geeeennielyn
## 7028       s_mi_ling
## 7029       _hosh1gyu
## 7030      takoyuutaa
## 7031 WfKeKjMYIbqR994
## 7032           msnwu
## 7033     swangel1004
## 7034         int0skz
## 7035       _hosh1gyu
## 7036   yjhanniepyong
## 7037       strawshua
## 7038        8149cart
## 7039         kmyshim
## 7040       strawshua
## 7041       moruuu_10
## 7042 newbiecarathere
## 7043         gyushus
## 7044  solboohaojjang
## 7045      heeliftror
## 7046   snowballexshi
## 7047      caratiny23
## 7048       moruuu_10
## 7049    letrang_elle
## 7050        j0yj0y__
## 7051 iammisscharlene
## 7052       moruuu_10
## 7053       no1boober
## 7054       moruuu_10
## 7055       bambizgf_
## 7056       _hosh1gyu
## 7057    wonuluckyboy
## 7058 whatkindofcarat
## 7059        aintleux
## 7060 very_horanghaey
## 7061  0xSimsiwinsxzs
## 7062       ktanniee_
## 7063 _seventeeeeen17
## 7064  EldritchAranea
## 7065    wonuluckyboy
## 7066    jihancheol88
## 7067      simmlaylaa
## 7068       _Yedamie7
## 7069        hollye_h
## 7070     gyucutietot
## 7071         400461i
## 7072     cocoaamelon
## 7073    krasshen_ezz
## 7074       _hosh1gyu
## 7075 RosaAng22672241
## 7076      caratiny23
## 7077    _treasure12_
## 7078    jihancheol88
## 7079        eclypsun
## 7080       sourarabi
## 7081      MoomSakuna
## 7082      pmariaaaaa
## 7083    RaynorRayn18
## 7084     marcodi1980
## 7085    dreamyjunhui
## 7086 very_horanghaey
## 7087      caratiny23
## 7088    RaynorRayn18
## 7089       yonmimimi
## 7090    RaynorRayn18
## 7091      jihan1995_
## 7092 BuenavistaAryan
## 7093    hobi39911409
## 7094     vilIainyves
## 7095         dojeaji
## 7096        dhphgthy
## 7097    thekpopvibes
## 7098      archveshua
## 7099   micksberry369
## 7100       bambizgf_
## 7101       spazz_svt
## 7102        hyuntdae
## 7103     sinaka_chow
## 7104         TYSAYPP
## 7105    wintercreati
## 7106          xvauyi
## 7107    RaynorRayn18
## 7108         PJHC4RT
## 7109        Soniaso_
## 7110  Biscoiteiratra
## 7111      paula21196
## 7112    tigerhosxhii
## 7113  shuaashushushu
## 7114       noissante
## 7115     fiqaschnlvr
## 7116      mihanzxcv_
## 7117         knjlmsd
## 7118       froghao_0
## 7119       _hosh1gyu
## 7120        jkhobi25
## 7121       atpstumii
## 7122        niinghao
## 7123    jeydinalways
## 7124      jeycodonat
## 7125      boojikyeom
## 7126     Sheengeleng
## 7127      takoyuutaa
## 7128     foxxcunning
## 7129      Asahibot20
## 7130       skwncartz
## 7131           _cmrj
## 7132    choicheollie
## 7133    shiloah_magu
## 7134   yoonjeongh4ns
## 7135        shuariea
## 7136    Rien01310371
## 7137       akflpffk_
## 7138  yeobojun447651
## 7139   tomyyouth_nus
## 7140     p_jones9001
## 7141         lkim024
## 7142 newbiecarathere
## 7143  enjellovesyoon
## 7144   kwonhoshicart
## 7145      benzschool
## 7146   yoonjeongh4ns
## 7147     snorlaxxxxe
## 7148    minhuiyeolie
## 7149       _beyygene
## 7150        Haning_j
## 7151        svt1012_
## 7152      mihanzxcv_
## 7153      _llaineeey
## 7154     777DKWonwoo
## 7155       xiaoeunnn
## 7156   itsmewannable
## 7157    jihancheol88
## 7158        tychooo_
## 7159       luvforjah
## 7160       desmileee
## 7161        jshn__95
## 7162 YoonGeorgiaHong
## 7163         weomonu
## 7164       myBlue218
## 7165     aronsolomon
## 7166        soft4ksy
## 7167      kyeomiexie
## 7168  vanillabluetae
## 7169      KatsukiSel
## 7170      anyonedrei
## 7171    twentywanbae
## 7172       xtinecart
## 7173    shiloah_magu
## 7174      itsandykim
## 7175      yoonsheeng
## 7176 abbellehong1017
## 7177    jihancheol88
## 7178  tazkiyahauliar
## 7179       hanniboni
## 7180  bloogirlfriend
## 7181       kayeiiiii
## 7182       ShitoTuki
## 7183    shiloah_magu
## 7184     SayWahuWahu
## 7185        hoshwidk
## 7186   dokyeeeooomie
## 7187       Dasheru_u
## 7188         Lucy91N
## 7189   mushroom_teen
## 7190      woshikyeom
## 7191          Xeismr
## 7192       mimaaaxxx
## 7193   itsmewannable
## 7194         _jcheol
## 7195    wildfloweral
## 7196       _nanakeyt
## 7197     bettychoi91
## 7198        minwonqt
## 7199      SushiiNg52
## 7200 coupshan_sebong
## 7201 moosamchanlover
## 7202  0xSimsiwinsxzs
## 7203   miss_svtmafia
## 7204          slip23
## 7205    hitorijanaye
## 7206      loveyoonjh
## 7207      wonjaecart
## 7208   bebeamoraaa14
## 7209       cheolacee
## 7210       froghao_0
## 7211      kihyunsjay
## 7212         lkim024
## 7213        rtjunwen
## 7214      marii_nhel
## 7215     chinginacca
## 7216      Beststan15
## 7217         V10L_et
## 7218    ssunnycloudy
## 7219      sebongtrsr
## 7220       athynna_a
## 7221      enstarbuns
## 7222      wishonasky
## 7223       luvforjah
## 7224 miya_caratlnd13
## 7225  askjsikcindyyy
## 7226  ARTHURkYE0M_ll
## 7227   diamondwonu17
## 7228        mxngyuxx
## 7229   SVT1004052615
## 7230    shiloah_magu
## 7231       rikuonime
## 7232           wzmg_
## 7233  everyone_wunoo
## 7234     eiiissaaa_a
## 7235         _cxjayy
## 7236  cathennalilith
## 7237    kathlengggyu
## 7238      ChoVhemmie
## 7239   tomyyouth_nus
## 7240        _gdncs13
## 7241         ynjyuk1
## 7242   joshushushuwu
## 7243       BaRk_r0wR
## 7244         eungyao
## 7245        knd17may
## 7246      kttywonwoo
## 7247        xu_myngh
## 7248       spazz_svt
## 7249          mjtf47
## 7250     ichoose_gyu
## 7251          cse843
## 7252        mmmookon
## 7253         ynjyuk1
## 7254     taehyuncore
## 7255       shhuuwwaa
## 7256     KathHorannn
## 7257          us4r97
## 7258     Mariyeaaaah
## 7259        _nathtwt
## 7260    sichengluvvr
## 7261       ulthoshua
## 7262 Joshujibestiess
## 7263       xtinecart
## 7264    shiloah_magu
## 7265     LunarSVT123
## 7266       sahifeels
## 7267 JamieCristo4306
## 7268       xxnomercy
## 7269    vminkook_vmk
## 7270 WonJaePilSanYeo
## 7271        9yushua_
## 7272        Aelarius
## 7273    wonunununuuu
## 7274          cyvll2
## 7275      Janna_L_17
## 7276        xu_myngh
## 7277  nathsssnathsss
## 7278        Yjhnihae
## 7279       harutulog
## 7280       jseunie07
## 7281        dda_dduu
## 7282       MissssssC
## 7283      dxborahh_2
## 7284 fueledfantasies
## 7285        snwuhoon
## 7286  sunflower_1802
## 7287     justmeysaaa
## 7288         eulxynx
## 7289   by_soonminwon
## 7290       yoongimtv
## 7291   _jeonghan_nie
## 7292  CaratJoeeeeeee
## 7293 svtreasureffect
## 7294      seungppiri
## 7295    rk_chocob0ba
## 7296       Chan19Lee
## 7297    SeleniumXVII
## 7298   _yoonjunghan_
## 7299      pmariaaaaa
## 7300       xasahinax
## 7301    imraciuu_svt
## 7302       Jayee3Mp4
## 7303       8haochive
## 7304     Hoshi_eerie
## 7305         evryw0n
## 7306        Gyu0328_
## 7307       btssvt713
## 7308       onlywons_
## 7309   bebeamoraaa14
## 7310    mingfthao_17
## 7311     _gyuhan2022
## 7312    _cherryberri
## 7313        itzaimae
## 7314       kxsoonhao
## 7315         400461i
## 7316        doyplace
## 7317    mariz_cblqnt
## 7318     dikeideikei
## 7319       ALucky925
## 7320      Joshongiie
## 7321       xiaoeunnn
## 7322  hanihaemii1004
## 7323       jiseokhao
## 7324      svts_bxnny
## 7325   bangtanjeejai
## 7326       Lu_Shia97
## 7327      SlLENTWAVE
## 7328    yoonbinshiho
## 7329        xcoups__
## 7330    sootspriting
## 7331         evryw0n
## 7332       kxsoonhao
## 7333    yourcaratzen
## 7334       warmwooyu
## 7335       pochiyeol
## 7336   hoeformeowonu
## 7337     yeahleechan
## 7338        K_Jeon96
## 7339     5sugarcones
## 7340 FannyAc01338370
## 7341    shiloah_magu
## 7342       jishoocho
## 7343     LunarSVT123
## 7344    letrang_elle
## 7345    yeosangrules
## 7346   by_soonminwon
## 7347      www_jeon17
## 7348        dkdnjfk_
## 7349      boojikyeom
## 7350       _hosh1gyu
## 7351         ujihun_
## 7352     LunarSVT123
## 7353      svts_bxnny
## 7354  svtforlife_ror
## 7355    breakerenids
## 7356         llabnlt
## 7357    coupssdrling
## 7358         wonooan
## 7359   justdeeekaayy
## 7360      sebongtrsr
## 7361  jjeonghanieyaa
## 7362         vernzis
## 7363        piscsdin
## 7364        jalehboo
## 7365   jeonghoneybae
## 7366 Michaela2762169
## 7367        9kmingyu
## 7368      choleytsom
## 7369         f4irykh
## 7370 jjongjjongiesri
## 7371 JoonIsAmazeYeah
## 7372  JijiAtinyAteez
## 7373  everyone_wunoo
## 7374    wintercreati
## 7375    SeleniumXVII
## 7376       YJH_zie99
## 7377      staytyuned
## 7378    rk_chocob0ba
## 7379         jnt_nwr
## 7380     skeeleetons
## 7381       bboyhao_o
## 7382  everyone_wunoo
## 7383    twentywanbae
## 7384         deonubu
## 7385  enjellovesyoon
## 7386       moonshuae
## 7387       onlywons_
## 7388    coupssdrling
## 7389       shhuuwwaa
## 7390       Stutiyoon
## 7391        jwmjj_17
## 7392      kttywonwoo
## 7393        itzaimae
## 7394       anneiyooo
## 7395  jjeonghanieyaa
## 7396       junehee99
## 7397  jjeonghanieyaa
## 7398       vobosquad
## 7399   wonwoneko1714
## 7400  jjeonghanieyaa
## 7401       orbwonwoo
## 7402       sylsvntn_
## 7403     twoteenseok
## 7404        Lattchwe
## 7405        ___97gyu
## 7406       junehee99
## 7407     shiningdias
## 7408    aishitxteru_
## 7409     murkleechan
## 7410        minwonqt
## 7411   itoohusername
## 7412     yeahleechan
## 7413     peachyyaaa_
## 7414  army_purpleu13
## 7415   _lovey_rabbit
## 7416        hoshimys
## 7417    ofspeachdino
## 7418      mihanzxcv_
## 7419          chc_wn
## 7420       jiseokhao
## 7421    Angel3331434
## 7422       Sani10112
## 7423     hermes_hoon
## 7424       anneiyooo
## 7425        Gyu0328_
## 7426        hwyounge
## 7427       junehee99
## 7428     hermes_hoon
## 7429  ChoiSeungShook
## 7430      takoyuutaa
## 7431     yeahleechan
## 7432      anyonedrei
## 7433   pistachiosJJJ
## 7434     sakuracarat
## 7435      yawnonewoo
## 7436        hsk_218_
## 7437 heartsvthirteen
## 7438          kim1wu
## 7439       fvrgyuhan
## 7440      chomamamas
## 7441       NiiniRuby
## 7442   wonwoneko1714
## 7443          xvauyi
## 7444      kyeowonwoo
## 7445  liatiny_dancer
## 7446       jiseokhao
## 7447       quartzhae
## 7448    uniqueornbby
## 7449     snorlaxxxxe
## 7450 heartsvthirteen
## 7451      alviazhrr_
## 7452      alviazhrr_
## 7453      alviazhrr_
## 7454  mine_seungkwan
## 7455   wonwoneko1714
## 7456 wiwiekkristanti
## 7457      anyonedrei
## 7458       luvmingoo
## 7459       Dodoljong
## 7460      jihan1995_
## 7461       8haochive
## 7462        JoyaaHae
## 7463  linzai03kisses
## 7464       titiiiuuu
## 7465  0xSimsiwinsxzs
## 7466       ikookgunj
## 7467    lolly_mudpie
## 7468 ThayaneCamarg14
## 7469         noinluv
## 7470     00110111kai
## 7471          ymlls_
## 7472     yjhanscloud
## 7473         won2hui
## 7474        dda_dduu
## 7475      jeycodonat
## 7476     boutyou_svt
## 7477          4M6H7W
## 7478         Xulyli_
## 7479       35_kookie
## 7480 very_horanghaey
## 7481    jihoonieruby
## 7482     MineofHoshi
## 7483  Clawdinee_exol
## 7484  minajbarbie078
## 7485     boutyou_svt
## 7486       _kimchivy
## 7487        unnnee__
## 7488     yjhanscloud
## 7489       uriminwon
## 7490    gyumybestboy
## 7491      kyeowonwoo
## 7492     gumusservvi
## 7493      seok_jihan
## 7494         PJHC4RT
## 7495     kimtakata__
## 7496         yyylexi
## 7497    JELLYJUNNl3S
## 7498  goods_toritori
## 7499  goods_toritori
## 7500      nekowonuuu
## 7501          _arsnh
## 7502  goods_toritori
## 7503       partyJITB
## 7504  goods_toritori
## 7505        kyeomwon
## 7506     choiseung95
## 7507     woozivers17
## 7508  0xSimsiwinsxzs
## 7509   yupsheskitten
## 7510      marii_nhel
## 7511    wonunununuuu
## 7512       icralover
## 7513   itoohusername
## 7514     777DKWonwoo
## 7515         rnjnity
## 7516    jeonjeongie_
## 7517  smAl1ValeriA22
## 7518    leechan__xin
## 7519       brokuroo_
## 7520       deeen_san
## 7521  babybetterforu
## 7522        minwonqt
## 7523 ShreyaseeDutta1
## 7524   bebeamoraaa14
## 7525   passthereplay
## 7526     kylareiiwoo
## 7527    lilislilgirl
## 7528          svtptv
## 7529   itoohusername
## 7530      nekowonuuu
## 7531   fernandez_vis
## 7532       MiMiewwii
## 7533           wzmg_
## 7534         ga3bo1s
## 7535       jeong2hao
## 7536      gyugyuxxii
## 7537 simpingoverkpop
## 7538     Sadsssszz__
## 7539 dustbinuniverse
## 7540     peachyyaaa_
## 7541   _BTSVTREASURE
## 7542 dustbinuniverse
## 7543       Virona091
## 7544      amedaifuku
## 7545   fernandez_vis
## 7546    bryleapilado
## 7547   jcssmwjhshvkc
## 7548      heyscoupse
## 7549     MayuMayu134
## 7550    minwonnownim
## 7551     seokwoogyuu
## 7552       shuanbaek
## 7553        itsjrytn
## 7554  vanillachaetea
## 7555 hawtmatchalatte
## 7556         hacitys
## 7557        the8file
## 7558   fernandez_vis
## 7559      shuabebito
## 7560 Akitheautmnnerd
## 7561        taytatee
## 7562 Akitheautmnnerd
## 7563       ABear0113
## 7564          1kfuyu
## 7565       allykwan_
## 7566       grrwonwoo
## 7567        Yjhnihae
## 7568      Joshongiie
## 7569    shiloah_magu
## 7570   HopeKhunRo_09
## 7571       grrwonwoo
## 7572        wzfanfan
## 7573        dcyouung
## 7574          Gice22
## 7575         oshikwn
## 7576   gentIe_joshua
## 7577         pedvanz
## 7578   itoohusername
## 7579      exoenhafan
## 7580      Joshongiie
## 7581          1kfuyu
## 7582      pmariaaaaa
## 7583   Gean_CarlosLL
## 7584        nahyukie
## 7585          _syopp
## 7586      swnishappy
## 7587        bewithbu
## 7588     eternalwonu
## 7589   ihatemaths777
## 7590   ihatemaths777
## 7591   HanieBee_sjnb
## 7592    orbitlaloona
## 7593      kihyunsjay
## 7594       luvmingoo
## 7595      kihyunsjay
## 7596  seungcheolised
## 7597      yoonsheeng
## 7598        imma_ema
## 7599      diskgyucci
## 7600  Cassie_ha_dong
## 7601         needef_
## 7602       0205haulz
## 7603         400461i
## 7604        dopinksy
## 7605     yeahleechan
## 7606        dcyouung
## 7607          TXTRYE
## 7608     lois4btssvt
## 7609        ctjy0811
## 7610     m_______yww
## 7611  snowlovescheol
## 7612 vEEGWP66VJ98hwX
## 7613  Saleem28092135
## 7614   foreverthewon
## 7615 mrsJamieHackney
## 7616    miso_ranghae
## 7617     m_______yww
## 7618         17y0_0n
## 7619 Daddu_Cheollito
## 7620 seoksol_0218_17
## 7621   itoohusername
## 7622        dcyouung
## 7623 seoksol_0218_17
## 7624       0205haulz
## 7625        chwehan5
## 7626    cheolmenteng
## 7627       haoluvsss
## 7628       minhui896
## 7629       0205haulz
## 7630 seoksol_0218_17
## 7631 seoksol_0218_17
## 7632        minwonqt
## 7633 Joshujibestiess
## 7634  rinwoniehoonie
## 7635         400461i
## 7636    mamo_natacha
## 7637    loveminhyukk
## 7638   RoseMaeDavis1
## 7639  rinwoniehoonie
## 7640      EBSVTCarat
## 7641       cesimnida
## 7642 Akitheautmnnerd
## 7643   contentedzayn
## 7644       NonieKoo_
## 7645        xyz23ssb
## 7646      mizumizuus
## 7647   gentIe_joshua
## 7648        shxxnini
## 7649        thirdzon
## 7650     Jeonnonugyu
## 7651   Jeong_Cheol95
## 7652       Aeppeaaep
## 7653   alanarchive16
## 7654    coupssdrling
## 7655   prettyfroilan
## 7656        F4STPACE
## 7657          0716AM
## 7658        gudimaan
## 7659        97shruti
## 7660 sarahfaithydiaz
## 7661    hoshiranghe_
## 7662    AlexaRod1024
## 7663        Ji123095
## 7664        thickhao
## 7665         17y0_0n
## 7666   wonwoneko1714
## 7667    coupssdrling
## 7668      chomamamas
## 7669         lkim024
## 7670     itsmemarsea
## 7671   gardenfairy1u
## 7672        lexswan2
## 7673    coupssdrling
## 7674    wonunununuuu
## 7675     into_SooHui
## 7676  Mystery_Girl14
## 7677     MineofHoshi
## 7678    hoshiranghe_
## 7679       0205haulz
## 7680     MineofHoshi
## 7681         Zylles2
## 7682   robotkeychain
## 7683       BaRk_r0wR
## 7684    coupssdrling
## 7685       0205haulz
## 7686     MineofHoshi
## 7687     mostlywonuu
## 7688         m4rshua
## 7689   JunhuihuiStar
## 7690       0205haulz
## 7691   HanieBee_sjnb
## 7692     Jeonnonugyu
## 7693         hjs7jww
## 7694 ayangseungcheol
## 7695        jadeeyo_
## 7696       0205haulz
## 7697     m_______yww
## 7698        Dalimarr
## 7699        ggukdolz
## 7700       0205haulz
## 7701     m_______yww
## 7702     AianNotAyan
## 7703        crylbnzn
## 7704     m_______yww
## 7705     lovescoups_
## 7706    seoyoungie27
## 7707         alsbar_
## 7708     m_______yww
## 7709   JunhuihuiStar
## 7710       wonucolls
## 7711       dkhoshlvr
## 7712      minwonehae
## 7713        LJervoso
## 7714      pmariaaaaa
## 7715     JINsjiguppm
## 7716     jaredidadoo
## 7717         Evakiee
## 7718     KingofClass
## 7719       0205haulz
## 7720     htowncougar
## 7721     m_______yww
## 7722         imhaegs
## 7723      MITSUL0VER
## 7724    belforwonwoo
## 7725        2403KSNW
## 7726    coupssdrling
## 7727         MJunH_s
## 7728  stargaxing_jun
## 7729      edrlynnnn_
## 7730   mariz_navarra
## 7731       sam26_svt
## 7732     jun35607245
## 7733       sam26_svt
## 7734      MingXiaoqt
## 7735       LIS_BLISA
## 7736   itoohusername
## 7737      HominNumin
## 7738     m_______yww
## 7739         i143lee
## 7740   lV_LeefcloVer
## 7741   kimyasmen3012
## 7742 bbygorlwooyoung
## 7743   sisiseventeen
## 7744       luh_rainn
## 7745 SatyamevaJaya18
## 7746      kttywonwoo
## 7747   foreverthewon
## 7748        _srvllr_
## 7749   gentIe_joshua
## 7750    seoyoungie27
## 7751   blueberryuyu_
## 7752     Hoshi_eerie
## 7753        ribbith8
## 7754        conivegi
## 7755     mikkochan71
## 7756    cutie_carats
## 7757      iztlmirahh
## 7758   gyuhoon_liker
## 7759     myHanniieee
## 7760     mikkochan71
## 7761      bardaguhan
## 7762      wongyuuhae
## 7763        itsjrytn
## 7764       sam26_svt
## 7765     hoshimeatsu
## 7766     ferriseris3
## 7767   itsmesaaammmy
## 7768        yunkisso
## 7769  NanaNannan2613
## 7770     choiseung95
## 7771   feat_dinonodi
## 7772        kly_sein
## 7773         cheolvz
## 7774      bardaguhan
## 7775    justcheol108
## 7776 Caratdeulzebong
## 7777    sayoonlangjh
## 7778      pmariaaaaa
## 7779     nanascart01
## 7780   souleylove800
## 7781      hobabiased
## 7782     rencsbencsi
## 7783         Xr1Army
## 7784        kozumart
## 7785       sam26_svt
## 7786      dkyeominho
## 7787     tinytiny629
## 7788        ruiz_rej
## 7789      bardaguhan
## 7790         tousdae
## 7791     mikkochan71
## 7792      luvsmarkun
## 7793       faeiryoon
## 7794        minwonqt
## 7795   smilesuminisa
## 7796      wonjaecart
## 7797    alvtaardngrm
## 7798     seoyang_bns
## 7799       _hosh1gyu
## 7800     Jeonnonugyu
## 7801     coupranghan
## 7802    rudedogreyes
## 7803   bornsarebloom
## 7804     ujiujiujioo
## 7805          1kfuyu
## 7806     leynagater_
## 7807        Lady0ice
## 7808          1kfuyu
## 7809    dou__shiyoka
## 7810        May04EXO
## 7811       exosone13
## 7812       Do_Minho_
## 7813  _seungcheolrry
## 7814  wonhanseoksoon
## 7815      yoonsheeng
## 7816         evechnt
## 7817      bardaguhan
## 7818       romy258hp
## 7819       Chaaaii18
## 7820      bardaguhan
## 7821  nathsssnathsss
## 7822     scoupstatts
## 7823      ChoVhemmie
## 7824        bamm_p7c
## 7825   caromiranda_s
## 7826        nikiwrId
## 7827        svt_exoL
## 7828        pldgngsn
## 7829     fahsaikaika
## 7830     m_______yww
## 7831    coupssdrling
## 7832 luckyli09301781
## 7833  purposeflaming
## 7834  TheAthleticCBB
## 7835  hobiiuarmyhope
## 7836  carrot___carat
## 7837   MarcellinJuno
## 7838     alileee_326
## 7839   bebeamoraaa14
## 7840 won_andonly_woo
## 7841      heyyydarya
## 7842        e99silog
## 7843      antokim960
## 7844   mr_jasonjones
## 7845     Jeonnonugyu
## 7846   jeonghoneybae
## 7847   itsmesaaammmy
## 7848        YE0T0PIA
## 7849    jhopescharts
## 7850     m_______yww
## 7851     m_______yww
## 7852 Daddu_Cheollito
## 7853       meanierae
## 7854      H_10041995
## 7855      boojikyeom
## 7856    coupssdrling
## 7857    kimjeoncheol
## 7858     jeweeelblnc
## 7859    Pepperling95
## 7860       aDenosita
## 7861      shesgracee
## 7862         alhanda
## 7863         Zaty23M
## 7864        jwmjj_17
## 7865   megaputri__nd
## 7866      thestangal
## 7867     HOSHIBECUTE
## 7868      dk_mg_1806
## 7869         Janglow
## 7870      dk_mg_1806
## 7871 lovethestanlife
## 7872    coupssdrling
## 7873     jeweeelblnc
## 7874         detcele
## 7875      jeycodonat
## 7876    asoulinexile
## 7877        mmmookon
## 7878        BLINKU14
## 7879   mushroom_teen
## 7880    peachandcats
## 7881   choiiicolatte
## 7882      Joshongiie
## 7883       Pashi1955
## 7884   diamondwonu17
## 7885        _sein_sk
## 7886     jungtaekken
## 7887        mxngyuxx
## 7888     Hoshi_eerie
## 7889    coupssdrling
## 7890      appleckity
## 7891  tinkerbellus46
## 7892       cocagyula
## 7893          Xeismr
## 7894     babymeangyu
## 7895    vernounsline
## 7896    SebongieOt13
## 7897     min9yubells
## 7898       fairieksy
## 7899        Sam_ooee
## 7900     mo_onyungie
## 7901    everyone_voo
## 7902     7svnwithyou
## 7903    hueningiegum
## 7904        mxngyuxx
## 7905    coupssdrling
## 7906        CmbSvt17
## 7907         Ehzrah3
## 7908       jxmxnalee
## 7909      AbdIzzudin
## 7910       liezldhin
## 7911   gentIe_joshua
## 7912          dkind_
## 7913      _lovessSKZ
## 7914    everyone_voo
## 7915    coupssdrling
## 7916         JEON1NU
## 7917    everyone_voo
## 7918      HUIMYEONGS
## 7919    everyone_voo
## 7920      Joshongiie
## 7921 man2saeipromis1
## 7922    kalatniwayji
## 7923      bardaguhan
## 7924    everyone_voo
## 7925     skeeleetons
## 7926         kinowol
## 7927      kttywonwoo
## 7928   SparklingMiii
## 7929    _treasure12_
## 7930       tyniverse
## 7931     cheolsbooty
## 7932  hiyahelloitsme
## 7933     katkatjoins
## 7934       sebting17
## 7935       myraa_st7
## 7936     JuneAcallar
## 7937     katkatjoins
## 7938      themoestro
## 7939         sdeveil
## 7940 vashappenxbiebs
## 7941   Boogyu__lover
## 7942      Lizlopitas
## 7943         lkim024
## 7944       myraa_st7
## 7945     katkatjoins
## 7946       myraa_st7
## 7947     katkatjoins
## 7948   armicaratbibi
## 7949 moonlightshxdxw
## 7950    CrizziaLopez
## 7951 park_sunooooo24
## 7952      skyuties09
## 7953     Solely_Ming
## 7954       svt_anawa
## 7955 seokjinemyangel
## 7956     jooheonchuu
## 7957         ShChttN
## 7958       wonooasis
## 7959    coupssdrling
## 7960 madison74067498
## 7961    fleurmedelis
## 7962        hotgyuwu
## 7963  hiyahelloitsme
## 7964     00110111kai
## 7965        dan_aeri
## 7966    snemarcellaa
## 7967      BossmanBMF
## 7968    wonunununuuu
## 7969    kyeomthinker
## 7970        hopiebid
## 7971    coupssdrling
## 7972     00110111kai
## 7973   cheollovezone
## 7974  falliinfl0wer_
## 7975      eianaticss
## 7976         SO0YUNH
## 7977  Anusha65313081
## 7978   sweetttt1t911
## 7979         dadduya
## 7980    andengimnida
## 7981      aquariusov
## 7982    Jwijwicarat2
## 7983    leejihoonie4
## 7984     KwonKartoon
## 7985    ghostingjjun
## 7986     Cookiessway
## 7987          kkndks
## 7988      kloepithet
## 7989     Cookiessway
## 7990     cheollibeee
## 7991    coupssdrling
## 7992         _acey18
## 7993  sunshineball18
## 7994  TheAthleticNBA
## 7995 madison74067498
## 7996    SeleniumXVII
## 7997     Cookiessway
## 7998       xasahinax
## 7999  hiyahelloitsme
## 8000       _nanakeyt
## 8001      SsoSsoMomy
## 8002  hobistreamclub
## 8003      chibcheeks
## 8004          cse843
## 8005     Cookiessway
## 8006         7chylly
## 8007     katlynhwang
## 8008   Kevin28779530
## 8009        hotgyuwu
## 8010        Gyu0328_
## 8011         hjs7jww
## 8012  Anusha65313081
## 8013        May04EXO
## 8014      bardaguhan
## 8015         wwonddu
## 8016         jeonqty
## 8017        itsjrytn
## 8018     chiestheone
## 8019  braille_morgan
## 8020     17Giggigzzz
## 8021       jeyyy_kyu
## 8022  1004_Cheonghan
## 8023  ARTHURkYE0M_ll
## 8024    coupssdrling
## 8025       EllbySouk
## 8026     naonaomine_
## 8027        Mu93Mami
## 8028   BananaLakatan
## 8029          17_zii
## 8030      noniemailZ
## 8031     katyjournal
## 8032    kathlengggyu
## 8033    coupssdrling
## 8034        wonskyui
## 8035        xiaiowen
## 8036        szllsssm
## 8037     katkatjoins
## 8038       KimSahira
## 8039    mj_cherryfan
## 8040         hobae96
## 8041        jcmhauls
## 8042      itsandykim
## 8043  _seungcheolrry
## 8044       Jayee3Mp4
## 8045       jhopesmio
## 8046   majesticbtsvt
## 8047    _winTAEmelon
## 8048         __kkk17
## 8049         SO0YUNH
## 8050     katkatjoins
## 8051     jmchim_chim
## 8052       suflowner
## 8053     coupranghan
## 8054 chickHannuggets
## 8055       hoshivolo
## 8056     katkatjoins
## 8057        ununs_12
## 8058     katkatjoins
## 8059 flyhightwenteen
## 8060       suflowner
## 8061     katkatjoins
## 8062     Solely_Ming
## 8063       oma_oma_1
## 8064      somnia_zen
## 8065    hyunwoonahhh
## 8066      minhosrain
## 8067     katkatjoins
## 8068    coupssdrling
## 8069     eiiissaaa_a
## 8070        mmmookon
## 8071       geliena18
## 8072      queenerry1
## 8073     katkatjoins
## 8074       mwone_woo
## 8075        _weixvii
## 8076        f_wonsoo
## 8077      _yenyenyen
## 8078    dokyeomsfool
## 8079      jundklover
## 8080       yjhaniyoo
## 8081       mimaaaxxx
## 8082    revelvelvets
## 8083      cherishjun
## 8084       luvmingoo
## 8085    dokyeomsfool
## 8086   _yoonjunghan_
## 8087       suflowner
## 8088   diamondwonu17
## 8089         eriynne
## 8090     katkatjoins
## 8091      caratshy_y
## 8092  iamangeliquexx
## 8093        itsjrytn
## 8094          mqkxxx
## 8095  OnceinanArmy17
## 8096   seoksoohorang
## 8097        _nathtwt
## 8098     _Lilychhani
## 8099     myHanniieee
## 8100    BLouMcMillan
## 8101    kazumadaniel
## 8102      wonuwonuwu
## 8103    kinghwiy0ung
## 8104        zyanxn_w
## 8105  everyone_wunoo
## 8106       mwone_woo
## 8107     WTNBEH4RUT0
## 8108         apochwe
## 8109       Sharicaaa
## 8110   chaezballuver
## 8111        smolhan_
## 8112         17y0_0n
## 8113   samoyedjenlee
## 8114        Honggbae
## 8115 PatrickASchmidt
## 8116       vobosquad
## 8117        Phineope
## 8118        Mp_Stamp
## 8119         f4irymh
## 8120      vyshusvt17
## 8121   getyouwhacked
## 8122   hannie_yoxiii
## 8123      loveyoonjh
## 8124     skeeleetons
## 8125     m_______yww
## 8126     katkatjoins
## 8127   snowballexshi
## 8128         Lookse_
## 8129     katkatjoins
## 8130     jmchim_chim
## 8131         bod9y_m
## 8132     haomingthe8
## 8133         evryw0n
## 8134    Siri24741948
## 8135  roseanneeeee03
## 8136   bobpulmilktea
## 8137           _uuji
## 8138      nananamcn_
## 8139      vyshusvt17
## 8140      expve_love
## 8141 onyourj_eonghan
## 8142        chewr218
## 8143      joshuji_93
## 8144      vyshusvt17
## 8145     into_SooHui
## 8146           _uuji
## 8147     jmchim_chim
## 8148        Phineope
## 8149     m_______yww
## 8150     serenityksy
## 8151   snowballexshi
## 8152        jecnghan
## 8153 mahalimAtin4evr
## 8154    mingfthao_17
## 8155      Caraxjune1
## 8156        093kartz
## 8157      icymoonhui
## 8158        8149cart
## 8159        itsjrytn
## 8160     katkatjoins
## 8161   bebeamoraaa14
## 8162      icymoonhui
## 8163      lucresia__
## 8164   jeonghan_stew
## 8165      fr3sh_m1lk
## 8166          h_wonu
## 8167      NEVERVMlND
## 8168      mihanzxcv_
## 8169    snemarcellaa
## 8170   _jeonghan_nie
## 8171    ultsungjeans
## 8172        KaiYou94
## 8173 onyourj_eonghan
## 8174       vobosquad
## 8175      hanniezel_
## 8176    GeneNiMingyu
## 8177       athynna_a
## 8178     katkatjoins
## 8179  porsche_porsha
## 8180       ellexjeon
## 8181         ynjyuk1
## 8182   HanieBee_sjnb
## 8183       jo_choisc
## 8184       jseunie07
## 8185       Luvyluv22
## 8186  suezyy_coupsie
## 8187  jangseowon0506
## 8188 woo_myeverthing
## 8189  porsche_porsha
## 8190        areinmyy
## 8191       allykwan_
## 8192       moonjunss
## 8193 cherrylovesyoon
## 8194         aimhden
## 8195   chengiebaobei
## 8196       anneiyooo
## 8197  lensof_minghao
## 8198     haomingthe8
## 8199   HanieBee_sjnb
## 8200   hwnghyunjeanz
## 8201        treteen_
## 8202  abhinavgoyal17
## 8203      icymoonhui
## 8204     myHanniieee
## 8205     fantasiizie
## 8206   miss_svtmafia
## 8207   itsmesaaammmy
## 8208      kttywonwoo
## 8209       air_kyeom
## 8210       JU_MW9697
## 8211    loving_coups
## 8212      luvielilyv
## 8213       haiena___
## 8214         Berinyx
## 8215     WTNBEH4RUT0
## 8216        makciat0
## 8217        no_okbye
## 8218       harutulog
## 8219  JannahNikki419
## 8220       MissssssC
## 8221      Joshongiie
## 8222       kxsoonhao
## 8223      aegicarrot
## 8224     katkatjoins
## 8225       shhuuwwaa
## 8226      minwontwts
## 8227  porsche_porsha
## 8228      choleytsom
## 8229        Ath1201R
## 8230        mmmookon
## 8231   sincerelyjwon
## 8232         apochwe
## 8233     katkatjoins
## 8234        mxngyuxx
## 8235      yjhangeljh
## 8236        itsjrytn
## 8237      minwontwts
## 8238        suchlose
## 8239      Sooha_abcd
## 8240         mywonss
## 8241         ynjyuk1
## 8242      kyeomiexie
## 8243  everyone_wunoo
## 8244          cyvll2
## 8245   itsmesaaammmy
## 8246     SayWahuWahu
## 8247   sarang_nunbit
## 8248        areinmyy
## 8249      wonuwonuwu
## 8250    _weewooonwoo
## 8251         _shihui
## 8252 ruuubbbyyyyyyy4
## 8253     katkatjoins
## 8254        wfcdsbhd
## 8255    chweeverkwan
## 8256       _Yedamie7
## 8257   h3ll0_exoteen
## 8258       melby_yes
## 8259       ggukscart
## 8260  porsche_porsha
## 8261       desmileee
## 8262     haomingthe8
## 8263        purplefy
## 8264     a_em_MissLP
## 8265      queenerry1
## 8266        wonskyui
## 8267       FongPingk
## 8268      aegicarrot
## 8269         newskzi
## 8270       jjamaymay
## 8271    yuki05260315
## 8272    rk_chocob0ba
## 8273      Joshongiie
## 8274     snowkhoshii
## 8275      tigerkwonn
## 8276     gaycheollie
## 8277        Gyu0328_
## 8278       xu_jo1230
## 8279       sahifeels
## 8280        chwenaaa
## 8281    SebongxTulsa
## 8282         lkim024
## 8283       JaeJinGyu
## 8284   joshushushuwu
## 8285       onlywons_
## 8286        ynmbltrn
## 8287     scjnjh_9405
## 8288  _shingi_bangi_
## 8289        Yjhnihae
## 8290        mars_svt
## 8291      wongyuuhae
## 8292       melby_yes
## 8293      WW_jinsome
## 8294        _Berry21
## 8295       hongcoups
## 8296   _jeonghan_nie
## 8297        Mp_Stamp
## 8298        sojake__
## 8299    imraciuu_svt
## 8300       xasahinax
## 8301       _hosh1gyu
## 8302         ynjyuk1
## 8303      heeliftror
## 8304       Chan19Lee
## 8305       suflowner
## 8306    sichengluvvr
## 8307    twentywanbae
## 8308    CrizziaLopez
## 8309        iamroe91
## 8310 seokminssoulmat
## 8311      ridgecarts
## 8312       vobosquad
## 8313     skeeleetons
## 8314      bbang_cart
## 8315         400461i
## 8316 coupshan_sebong
## 8317     moon_bammie
## 8318         km2igyu
## 8319     _gyuhan2022
## 8320   sojunghan_SVT
## 8321     KathHorannn
## 8322    leeminknowww
## 8323         ynjyuk1
## 8324 miya_caratlnd13
## 8325    Jincheollie8
## 8326      wonjaecart
## 8327         JJudisu
## 8328  shuaashushushu
## 8329       Luvyluv22
## 8330    CrizziaLopez
## 8331    coupranghaae
## 8332       btssvt713
## 8333        _gdncs13
## 8334    AliceGlass19
## 8335       Luvyluv22
## 8336      woshikyeom
## 8337       atpstumii
## 8338  rodriguez_anci
## 8339      Janna_L_17
## 8340    mariz_cblqnt
## 8341    krasshen_ezz
## 8342      hongfinity
## 8343        rairaiqt
## 8344        96WONWON
## 8345       yeoutsang
## 8346       yoongimtv
## 8347     justmeysaaa
## 8348         ynjyuk1
## 8349   maria_criscel
## 8350   itsmesaaammmy
## 8351     sweetiehosh
## 8352        itzaimae
## 8353      _llaineeey
## 8354     evrbdyhngsm
## 8355         1keeer_
## 8356          a2zthb
## 8357           _cmrj
## 8358 fueledfantasies
## 8359 yorsecretfanboy
## 8360     kwannieheyy
## 8361          17_zii
## 8362       alien__30
## 8363      dkyeominee
## 8364        vjkscart
## 8365   shiningorbits
## 8366   itsmesaaammmy
## 8367        baoxiuji
## 8368      Oishie_Hae
## 8369   mr_gilletteee
## 8370   itsmesaaammmy
## 8371     katkatjoins
## 8372   itsmesaaammmy
## 8373  sweetiepiesnow
## 8374          sy2min
## 8375     haomingthe8
## 8376 goddess_minerva
## 8377   itsmesaaammmy
## 8378     MakbeRocano
## 8379   gardenfaeirie
## 8380       koosad444
## 8381    every9yu_woo
## 8382   itsmesaaammmy
## 8383     gailujirong
## 8384   itsmesaaammmy
## 8385    chintadmtrzy
## 8386     myHanniieee
## 8387   itsmesaaammmy
## 8388      __kwonshii
## 8389      immaturiti
## 8390     WTNBEH4RUT0
## 8391      digibistud
## 8392        baoxiuji
## 8393       limstephh
## 8394    heidslomibao
## 8395      memoriesvt
## 8396  JannahNikki419
## 8397     mgyuberries
## 8398   itsmesaaammmy
## 8399        joshihao
## 8400         Zhen_x2
## 8401   itsmesaaammmy
## 8402        sohshort
## 8403     haomingthe8
## 8404        naurmatt
## 8405         cccyy_f
## 8406      memoriesvt
## 8407    55dayMam1045
## 8408     haomingthe8
## 8409        mxngyuxx
## 8410        she_obey
## 8411        wonrawrs
## 8412   itsmesaaammmy
## 8413     mgyuberries
## 8414      shua_daisy
## 8415   itsmesaaammmy
## 8416     haomingthe8
## 8417       jonfranks
## 8418   mingishibeo24
## 8419      24h_min9yu
## 8420   itsmesaaammmy
## 8421     haomingthe8
## 8422     haomingthe8
## 8423   chilefilomina
## 8424  mmargaretmary1
## 8425  _shingi_bangi_
## 8426    CrizziaLopez
## 8427  _shingi_bangi_
## 8428     WTNBEH4RUT0
## 8429 yorsecretfanboy
## 8430    tooruoinkawa
## 8431   itsmesaaammmy
## 8432     miyoungcart
## 8433     mgyuberries
## 8434       kimmmmtae
## 8435 hcskimchijjigae
## 8436      spikyhoshi
## 8437   gentIe_joshua
## 8438   cia_kyeomshua
## 8439    218DanceKing
## 8440    HaniHaoGyeom
## 8441     katkatjoins
## 8442      Oishie_Hae
## 8443 starry_mamamoo4
## 8444  christinejoy_i
## 8445       suflowner
## 8446         huihosh
## 8447        byeolboo
## 8448         huihosh
## 8449        naurmatt
## 8450         ka1_kim
## 8451    tooruoinkawa
## 8452  swifttaejinkoo
## 8453     sirleetyong
## 8454       btssvt713
## 8455         huihosh
## 8456 purpledaimondeu
## 8457   itsmesaaammmy
## 8458       wzrdprang
## 8459         huihosh
## 8460  chocopudding__
## 8461         tsimeya
## 8462  JannahNikki419
## 8463       MiMiewwii
## 8464   itsmesaaammmy
## 8465     WTNBEH4RUT0
## 8466       heartyuns
## 8467       luvmingoo
## 8468  JannahNikki419
## 8469   rayofsunkyeom
## 8470     WTNBEH4RUT0
## 8471       Ryu_MiHye
## 8472     haomingthe8
## 8473     megaphonedk
## 8474      jihan1995_
## 8475      carol19462
## 8476      cassiaxsvt
## 8477         RJY_miw
## 8478   gentIe_joshua
## 8479     soonchanlvr
## 8480       moomoomoa
## 8481     gailujirong
## 8482       Luvyluv22
## 8483   _rapgodmingyu
## 8484   itsmesaaammmy
## 8485     maxx_is_mad
## 8486     katkatjoins
## 8487    JiYayouknow7
## 8488        JamiBoaz
## 8489   pichulinology
## 8490       NPipireta
## 8491     haomingthe8
## 8492 flyhightwenteen
## 8493     haomingthe8
## 8494    heidslomibao
## 8495      kyliekim28
## 8496   QueenOnika007
## 8497     gailujirong
## 8498     WTNBEH4RUT0
## 8499       NPipireta
## 8500     JhopeGreena
## 8501        ryzdajab
## 8502      byunteneur
## 8503  KOKOSEMBAKO98_
## 8504         loysgyu
## 8505      KanhaRath4
## 8506     WOOYOUTOPIA
## 8507          syctxz
## 8508     sweetiehosh
## 8509   charina_ramos
## 8510     myflowerksy
## 8511      jeonwcnwoc
## 8512  vanillabluetae
## 8513  dreamymoondust
## 8514      every_9yuu
## 8515   itsmesaaammmy
## 8516      wonuwonuwu
## 8517        mxngyuxx
## 8518   cia_kyeomshua
## 8519      heyyydarya
## 8520   itsmewannable
## 8521          RSK477
## 8522  WeasleySivan16
## 8523        MAJINTA_
## 8524       Jjisanwoo
## 8525   dkdnscoupinia
## 8526  y_jeonghannnie
## 8527     woncheolcrt
## 8528         ynjyuk1
## 8529         wonwryy
## 8530         jwtsr96
## 8531     haomingthe8
## 8532     callmepooww
## 8533          slip23
## 8534      shinbboong
## 8535    seventhetics
## 8536 Byunjonginniiie
## 8537   dkdnscoupinia
## 8538 Daddu_Cheollito
## 8539  _shingi_bangi_
## 8540  Eisayeongpal08
## 8541       tastyy_00
## 8542      Oishie_Hae
## 8543        ryzdajab
## 8544     0318JINsofi
## 8545     haomingthe8
## 8546     Pewpew_1111
## 8547       meanierae
## 8548   wondrous_moon
## 8549   svtworldcarat
## 8550  svtdaydreaming
## 8551      damonlifer
## 8552    oki3dokiyeom
## 8553        ipeuncat
## 8554    CrizziaLopez
## 8555        3737san7
## 8556      cshndcheol
## 8557         mynttks
## 8558   gentIe_joshua
## 8559      jihan1995_
## 8560        kwiister
## 8561        Mp_Stamp
## 8562  svtdaydreaming
## 8563        Hongssi4
## 8564     girls_nonna
## 8565          riryle
## 8566     WTNBEH4RUT0
## 8567        axexdxbx
## 8568  Eisayeongpal08
## 8569       Enash2001
## 8570   wondrous_moon
## 8571     WTNBEH4RUT0
## 8572        Ath1201R
## 8573       ookeydkey
## 8574        elyzmin9
## 8575     katkatjoins
## 8576   cia_kyeomshua
## 8577           w9smt
## 8578    kwanberryboo
## 8579   ourwn_smusigh
## 8580       Enash2001
## 8581        fei_mluv
## 8582       luvmingoo
## 8583         ynjyuk1
## 8584 PerfectDilemma2
## 8585    butterfingyu
## 8586         a_ly_01
## 8587     voteforjhsw
## 8588     katkatjoins
## 8589       luvmingoo
## 8590        Ath1201R
## 8591    kwanberryboo
## 8592       boothinkz
## 8593     katkatjoins
## 8594       luvmingoo
## 8595         wonwryy
## 8596     katkatjoins
## 8597       xxnomercy
## 8598       luvmingoo
## 8599        hanleeaa
## 8600         ttokiij
## 8601       FromM3_2u
## 8602         sadlycy
## 8603   itsmesaaammmy
## 8604       luvmingoo
## 8605     katkatjoins
## 8606      yunhochans
## 8607         ttokiij
## 8608      ant_pianoo
## 8609      tarrakbear
## 8610        sarryna_
## 8611    applesagwa01
## 8612        soobinod
## 8613       luvmingoo
## 8614        Smin7i3a
## 8615 cherrycoups1022
## 8616      randomshua
## 8617        jos_h105
## 8618         jjzheni
## 8619      loavsjeonu
## 8620        chwenaaa
## 8621    blesstaeshua
## 8622    mytigerho5hi
## 8623    blesstaeshua
## 8624     northjamie_
## 8625      1nlovewtae
## 8626      joshiecart
##                                                                                                                                                                                 text
## 1                                RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2                                       RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3                                     RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4                                        RT @mindset_dive: Mark your calendars - JOSHUA of SEVENTEEN’s Mindset trailer premieres Tuesday 12/6 at 8 pm PST // Wednesday 12/7 1PM KST…
## 5                             RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6                                 RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7                                                                                             RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8                                  RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 9                                                                                    RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 10                            RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 11                                    RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 12                                         RT @mindset_dive: BIG news - JOSHUA of SEVENTEEN is joining Mindset next! What topics do you want JOSHUA to discuss in his audio series?…
## 13                                    RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 14                                RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 15                                                                                        RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 16                                               RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 17                                                                                   RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 18                            RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 19                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 20                                  RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 21                                   RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 22                               RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 23                               RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 24                                                                                            RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 25                              RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 26                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 27                               RT @dnonarats: #CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN #세븐틴 @pledis_17 \n\nthe photographer            his favorite view https://t.co/G9y…
## 28                                  RT @verseok_: vernonified.\n\nwill wear the same fit tomorrow see you guys!\n#CSD #CaratSelcaDay\n#VERNON #SEVENTEEN @pledis_17 https://t.co/Bl…
## 29                                RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 30                                   RT @addtocartnoona: 🚨Christmas B1T1 SALE🚨\n\nRamdom Sealed + Unsealed 💸 220\n\nGroups Available:\nTreasure Enhypen Straykids Blackpink TXT TNX…
## 31                                   RT @cartchives: # want to sell / wts carbong v1 \n\n( 400.000 ) \n✅ all in good condition, nyala terang, inc battery + bonus pc attacca the8,…
## 32                                      RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 33                                 RT @pledis_17: [17'S] SEVENTEEN WORLD TOUR [BE THE SUN] IN MANILA\n\n#SVT_WORLDTOUR_BETHESUN\n#SEVENTEENinMANILA\n#BETHESUN_MANILA\n#BETHESUNwit…
## 34                                 RT @wonshuamour: —𝒅𝒂𝒓𝒍𝒊𝒏𝒈, 𝒍𝒆𝒕'𝒔 𝒕𝒂𝒌𝒆 𝒕𝒉𝒆 𝒍𝒐𝒏𝒈 𝒘𝒂𝒚 𝒉𝒐𝒎𝒆 ♡\n\n[ #csd #caratselcaday #joshua #조슈아 #seventeen @pledis_17 ] https://t.co/QDAaIVLP…
## 35                                                                                                             RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 36                                RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 37                            RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 38                                                          RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 39                                    RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 40                                    RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 41                                       RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 42                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 43                                      RT @eunoia__svt: "Self-producing" might be a title for you but for seventeen it was their survival. They literally were able to step on sta…
## 44                                       RT @eseukubs: dress up as our phone case challenge😋❤️💖\n\n#CaratSelcaDay #CSD #SCOUPS\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/D2FSG2zxEK
## 45                                    RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 46                                    RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 47                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 48                                                          RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 49                                 RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 50                                                          RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 51                                  RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 52                                   RT @koreansales_twt: Best-selling K-Acts on Oricon in 2022 (Final)\n\n01. #SEVENTEEN — 1,725,494\n02. #ENHYPEN — 1,007,202\n03. #BTS — 922,497…
## 53                                                                                   RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 54                                  RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 55                                                                                        RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 56                                    RT @miguhearts: 🧸🎀🪞“Give me a poem to tell about me” 💐🫧🗯\n\n[#CSD #CaratSelcaDay #MINGYU #민규 #SEVENTEEN @pledis_17 ] https://t.co/wjPrxrZJmZ
## 57                                   RT @17bookkeu: Twinning 😜\n\nFrom my POV                    From his POV\n#CARAT_SELCA_DAY #CSD #WONWOO #SEVENTEEN @pledis_17 https://t.co/hCo…
## 58                                   RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR S.COUPS♡*\n\nhello carats! i'll be giving away these fan…
## 59                            RT @doieyongs: ✨@doieyongs' Mini Giveaway ✨\nSEVENTEEN BE THE SUN: in BULACAN \n\n✨Date: Dec 17, 2022\n✨Time: 10:00 AM - until stocks last\n✨Loc…
## 60                                       RT @shuabambies: you know, without you i'm so lonely\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #DK #도겸 @pledis_17 https://t.co/WywsNdRV0q
## 61                                                          RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 62                                                          RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 63                                    RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 64                                                          RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 65                        RT @CaratOppa: [SPECIAL TWEET] \nSEVENTEEN (세븐틴) DK with SEVENTEEN Member Update!\n\n#세븐틴 #SEVENTEEN \n\n🔗 https://t.co/xWFPUyk1mW\n\nTags: \n#SVT_…
## 66                                                                   RT @lighthaos: everyone have a wonderful time at bets !!!! a seventeen concert is an extraordinary experience 🧡
## 67                                                                                        RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 68                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 69                                                                                        RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 70                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 71                                 RT @Astro_EW330: 2022 December Boy Group Brand Reputation Ranking\n11th #ASTRO\nData collected: 10 Nov - 10 Dec 2022 \n1 BTS\n2 SEVENTEEN\n3 Str…
## 72                                    RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 73                                 RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nseungkwan photocard set - ₱1,200\n\n- sector17 weverse album version (unscanned qr) + pob\n- fac…
## 74                                                              RT @cutelikejoon: just trying something new 📸#CaratSelcaDay #CSD #SEVENTEEN #THE8 @pledis_17 https://t.co/ICxYsVIQqd
## 75                                                                    RT @snowkhoshi: nobody can seventeen the way the thirteen of seventeen seventeens that’s why they’re seventeen
## 76                               RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 77                             RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nmingyu photocard set - ₱2,650\n\n- rcbyt\n- ❌ sensitive collectors\n- flexi dop\n\nreply mine to cl…
## 78                            RT @for717s: ✦ SEVENTEEN Be The Sun in Bulacan Freebies ✦\n\nfan support for #도겸 and #조슈아 ♡\n\nsee photo for more details :)\n#BeTheSuninBULACAN…
## 79                                    RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 80                                  RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 81                                      RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 82                                RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 83                            RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 84                               RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 85                                    RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 86                            RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 87                                                                                   RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 88                                                                        RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 89                               RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 90                                       RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 91                           RT @amorecheol: 210802 Seventeen Shopee Online Fansign 세븐틴 영통팬싸\n\n🥳 HAPPY BIRTHDAY TO YOU HAPPY BIRTHDAY TO YOU 🎉\n\nthe giggles halfway k wor…
## 92                                  RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 93                                    RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 94                                      RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 95                                RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 96                                   RT @btsvt_btsvt: WTS LFB SEVENTEEN BE THE SUN IN BULACAN 💎 \n\n(1) VIP FLOOR STANDING B \nPurchased on Nov 30 when there were a few tickets le…
## 97                             RT @dollsxngie: Reply with all kpop groups that you stan from oldest to latest:-\n\nMine:\n1. Exo\n2. Nct\n3. Got7\n4. X1\n5. Seventeen\n6. Ateez\n7…
## 98                                RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 99                            RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 100                        RT @GoldenDisc_en: 1st Artist Lineup Announcement.\n\nPlease welcome #SEVENTEEN who will join the 37th #GDA !\n\n#골든디스크어워즈 #goldendiscawards #골…
## 101                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 102                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 103                          RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 104                                                                           RT @sounds_of_cheol: seventeen heading to ph today ✈️ have a safe flight boys 🖤 https://t.co/A11KHyOizW
## 105                   RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 106                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 107                                      RT @jishoocho: 🖇·˚ ༘ ┊͙[Love you to the moon and to Saturn.] !  ˊˎ\n#CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 https://t.co/2am2T8E2IJ
## 108                                                                                                                              RT @deal4idols: proofs for #jin of bts + #seventeen
## 109                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 110                                                                              RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 111                                   RT @_wonwoorideul__: wts lfb ph seventeen photocards\n#yanatindera \nmostly wonwoo yung andito, strictly sold as set but y'all can look for k…
## 112                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 113                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 114                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 115                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 116                              RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 117                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 118                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 119                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 120                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 121                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 122                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 123                                                                                                                            RT @ananavarro: Guilty,\nOn All Seventeen Counts. 17!
## 124                                  RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 125                       RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 126                                 RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 127                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 128                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 129                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 130                            RT @jinrrys07: Wts LFB\nBets bulacan \nSvt seventeen \n\nLBB regular\nSection 207\nRow 53\n\nPhp 10700 (regular ticket price) \n\nSELLING AT 8000php…
## 131                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 132                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 133                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 134                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 135                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 136                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 137                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 138                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 139                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 140                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 141                                   RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 142                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 143                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 144                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 145                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 146                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 147                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 148                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 149                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 150                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 151                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 152                       RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 153                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 154                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 155                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 156                                                       RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 157                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 158                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 159                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 160                             RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 161                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 162                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 163                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 164                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 165                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 166                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 167                             RT @mgyuppy: ( 03 : 00 AM ) . \n- you're are the reason that i lie awake ;\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 @pledis_17 https…
## 168                                     RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 169                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 170                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 171                                     RT @chwepuff: ♡. ·˚ ༘🐻‍❄️🎀༉‧₊˚✧\n𝘺𝘰𝘶 𝘢𝘳𝘦 𝘵𝘩𝘦 𝘳𝘦𝘢𝘴𝘰𝘯 𝘪'𝘮 𝙨𝙢𝙞𝙡𝙞𝙣𝙜\n𝘸𝘩𝘦𝘯 𝘵𝘩𝘦𝘳𝘦'𝘴 𝙣𝙤𝙩𝙝𝙞𝙣𝙜 𝘵𝘰 𝘴𝘮𝘪𝘭𝘦 𝘢𝘣𝘰𝘶𝘵 ₍ᐢ.  ̯.ᐢ₎ \n\n#CaratSelcaDay #CSD\n#VERNON…
## 172                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 173                                 RT @gottamarryem17: 𝑺𝒕𝒓𝒐𝒍𝒍𝒊𝒏𝒈 𝒂𝒓𝒐𝒖𝒏𝒅 𝒊𝒄𝒐𝒏𝒊𝒄 𝒑𝒍𝒂𝒄𝒆𝒔 𝒘𝒉𝒊𝒍𝒆 𝒄𝒂𝒑𝒕𝒖𝒓𝒊𝒏𝒈 𝒎𝒆𝒎𝒐𝒓𝒊𝒆𝒔\n— 𝑶𝒍𝒅 𝒃𝒖𝒕 𝒈𝒐𝒍𝒅\n\n#CSD #CaratSelcaDay\n#JOSHUA #SEVENTEEN @pledis_…
## 174                                    RT @DlN0LAND: DINO and WOOZI necklaces are here! 🤗 See you all on Saturday! ❤️\n\n#BeTSinBULACAN  #SEVENTEEN #BeTheSuninBULACAN @pledis_17 ht…
## 175                              RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 176                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 177                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 178                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 179                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 180                                   RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 181                               RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 182                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 183                            RT @jinrrys07: Wts LFB\nBets bulacan \nSvt seventeen \n\nLBB regular\nSection 207\nRow 53\n\nPhp 10700 (regular ticket price) \n\nSELLING AT 8000php…
## 184                                      RT @wowoozi_: wearing black is a lifestyle, ceunah\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #HOSHI @pledis_17 https://t.co/DRB9Fjg6vV
## 185                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 186                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 187                                 RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 188                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 189                                              RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 190                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 191                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 192                                                                          RT @minrei_: the 12 vs 1 choreo in fast pace 😋\n #세븐틴 #SEVENTEEN @pledis_17\nhttps://t.co/8VdB03HIyd
## 193                                   RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 194                                     RT @svtcontents: 📰 SEVENTEEN is nominated under several categories at the 2022 China Year End Awards! Winners will be announced on December…
## 195                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 196                                RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 197                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 198                              RT @dnonarats: #CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN #세븐틴 @pledis_17 \n\nthe photographer            his favorite view https://t.co/G9y…
## 199                                   RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 200                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 201                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 202                                                                           RT @sounds_of_cheol: seventeen heading to ph today ✈️ have a safe flight boys 🖤 https://t.co/A11KHyOizW
## 203                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 204                                                                                RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 205                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 206                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 207                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 208                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 209                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 210                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 211                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 212                                   RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 213                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 214                           RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 215                              RT @yoon_maya: ✨BE THE SUN IN BULACAN x \nJOSHUA BIRTHDAY\nFAN SUPPORT ✨\n\nDetails on the photo below.\nCan't wait to meet you, Carats! See you…
## 216                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 217                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 218                                                       RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 219                                RT @_gumgummy: 𝑰'𝒍𝒍 𝒘𝒊𝒍𝒍 𝒏𝒆𝒗𝒆𝒓 𝒇𝒊𝒏𝒊𝒔𝒉\n 𝒇𝒂𝒍𝒍𝒊𝒏𝒈 𝒊𝒏 𝒍𝒐𝒗𝒆 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖.\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #승관 @pledis_17 https://t.co/Jlk…
## 220                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 221                                 RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 222                           RT @chocochuxx: wts lfb svt bets ph\n\n💎 Seventeen BeTS in Bulacan 💎\n\n- One (1) UBB REG TICKET\n\nrfs: upgraded seat :&gt; \n\n🏷 be the sun bulacan…
## 223                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 224                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 225                      RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 226                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 227                                 RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 228                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 229                                     RT @IkoneriKshop: May interested pa ba sa onhand caratbong v2? Used once po nung bets mnl, Still complete inclusion pero yung hoshi sticker…
## 230                                  RT @teamseventeenvn: Seventeen daily streams on Spotify | December 15 (12/15) | Thursday\n\n• Total streams ─ 2,912,580,936 (+3,675,781)\n• Mo…
## 231                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 232                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 233                             RT @roserenity0ung: 225 𝒅𝒂𝒚𝒔 𝒘𝒊𝒕𝒉 "𝒘"\nhe told me to do "wonwoo's shaking camera pose?"😆\n#CaratSelcaDay #CSD #세븐틴 \n#원우 #WONWOO #SEVENTEEN @p…
## 234                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 235                                             RT @hogyuhae: 🌿I’ll be your spring during any winter❄️\n\n#CaratSelcaDay #csd #seventeen #Woozi #세븐틴 #우지 https://t.co/Y1ke5bBQ8h
## 236                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 237                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 238                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 239                                                RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 240                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 241                              RT @yoon_maya: ✨BE THE SUN IN BULACAN x \nJOSHUA BIRTHDAY\nFAN SUPPORT ✨\n\nDetails on the photo below.\nCan't wait to meet you, Carats! See you…
## 242                                                      RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 243                               RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 244                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 245                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 246                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 247                                                                 RT @wonthuu: *insert any words* \n\n#CaratSelcaDay #CSD #SEVENTEEN #MINGYU #세븐틴 #민규 https://t.co/AiIwPBmdKz
## 248                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 249                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 250                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 251                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 252                                                RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 253                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 254                                  RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 255                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 256                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 257                                 RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 258                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 259                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 260                              RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 261                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 262                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 263                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 264                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 265                                                                                                        RT @My17youth: SEVENTEEN have safely arrived in Manila, Rest well boys! 🖤
## 266                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 267                                                       RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 268                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 269                                 RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 270                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 271                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 272                                   RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 273                              RT @ksjwaifu: museum date w/ bae🤍🖤\n\n#CaratSelcaDay #CSD #CARAT_SELCA_DAY #CARAT #세븐틴 #SEVENTEEN #민규 #MINGYU @pledis_17 https://t.co/wcDVlym…
## 274                                 RT @byuumie: nlex &amp; sctex traffic advisory ! high volume of traffic is expected in the area. ph is seventeen ready ! 🫶🏻 https://t.co/P8kaah…
## 275                                     RT @chwepuff: ♡. ·˚ ༘🐻‍❄️🎀༉‧₊˚✧\n𝘺𝘰𝘶 𝘢𝘳𝘦 𝘵𝘩𝘦 𝘳𝘦𝘢𝘴𝘰𝘯 𝘪'𝘮 𝙨𝙢𝙞𝙡𝙞𝙣𝙜\n𝘸𝘩𝘦𝘯 𝘵𝘩𝘦𝘳𝘦'𝘴 𝙣𝙤𝙩𝙝𝙞𝙣𝙜 𝘵𝘰 𝘴𝘮𝘪𝘭𝘦 𝘢𝘣𝘰𝘶𝘵 ₍ᐢ.  ̯.ᐢ₎ \n\n#CaratSelcaDay #CSD\n#VERNON…
## 276                                RT @hoonie_02z: WTS/ LFB \nSEVENTEEN BeTS in BULACAN\n- UPPER BOX C REG 409\n- SAME PRICE1850\n\nRFs: di macontact yung bibili ilang oras nalang…
## 277                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 278                          RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 279                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 280                                   RT @neogotmybankx: 🎄 SVT Christmas PH GA 🧑🏻‍🎄\n\n🎁 1 winner of unsealed Face The Sun album (with inclusions) + a care package\n🎁 1 winner of A…
## 281                                        RT @philconcerts: SEVENTEEN has arrived safely in Manila. Let's make history tomorrow at the world's largest indoor arena. #BeTSinBULACAN
## 282                                RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 283                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 284                                             RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 285                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 286                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 287                                                                                                    RT @ann_yeonggggggg: It’s d-day! #BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN
## 288                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 289                         RT @19950808_aug: 221203 SEVENTEEN WORLD TOUR - [BE THE SUN] - Nagoya\n\n#세븐틴 #SEVENTEEN #최승철 #승철 #에스쿱스 \n@pledis_17 https://t.co/McVuByTvVw
## 290                                     RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 291                                  RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 292                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 293                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 294                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 295                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 296                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 297                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 298                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 299                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 300                                                           RT @mingyuk: styling’s hair\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #mingyu #민규 @pledis_17 https://t.co/WoMUkfSBOT
## 301                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 302                              RT @binnie_nonna: 🤍 BetS in Bulacan Freebies 🤍\n\nhi carats ☺️ we’ll be giving away freebies on d-day!\n\nto claim:\n💫 like and rt \n💫 mbf\n\nsee y…
## 303                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 304                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 305                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 306                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 307                                                                                RT @we_960717: 221213 AAA\nHOT\n#원우 #WONWOO #ウォヌ\n#세븐틴 #SEVENTEEN https://t.co/SNnHdSCVXL
## 308                                   RT @haotobns: ˗ˏˋ be the sun in bulacan freebies | #SEVENTEEN ˎˊ˗\n\nhello!! i'll be giving away freebies for be the sun in bulacan on Dec 17…
## 309                                     RT @eysvtcarat: Hi, I will be giving away paper goods, printed salonpas patches, snacks, and official SVT merch as freebies for #BeTheSunin…
## 310                                                                                              RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 311                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 312                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 313                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 314                                 RT @binnie_nonna: #BinnieBigay 🐶 for BeTS in Bulacan \n\nhi #TeamLabas carats, we’ll be giving away one (1) LBA ticket for #BeTSinBulacan \n\nH…
## 315                   RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 316                                   RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 317                              RT @cath_carts: ☁️. Be The Sun Bulacan Freebies \n\n — rt &amp; like this tweet to spread !\n —  open for both team labas and team concert\n — mbf!…
## 318                                 RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 319                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 320                                    RT @micahsmplace: Interest Check for a SEVENTEEN cupsleeve event in the Chicagoland area! 💙💗\nPlanning for the event to be held on Saturday,…
## 321                               RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 322                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 323                            RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nmingyu photocard set - ₱2,650\n\n- rcbyt\n- ❌ sensitive collectors\n- flexi dop\n\nreply mine to cl…
## 324                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 325                                     RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 326                                RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nseungkwan photocard set - ₱1,200\n\n- sector17 weverse album version (unscanned qr) + pob\n- fac…
## 327                                            RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 328                                                           RT @xu8hao_o: ube pandan couple 💚💜\n#CaratSelcaDay #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/SSZPNXqKDB
## 329                                RT @_gumgummy: 𝑰'𝒍𝒍 𝒘𝒊𝒍𝒍 𝒏𝒆𝒗𝒆𝒓 𝒇𝒊𝒏𝒊𝒔𝒉\n 𝒇𝒂𝒍𝒍𝒊𝒏𝒈 𝒊𝒏 𝒍𝒐𝒗𝒆 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖.\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #승관 @pledis_17 https://t.co/Jlk…
## 330                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 331                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 332                             RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 333                                RT @Genius_kor: #GeniusCharts | 2022 Year-End Genius Korea Chart | Top Male Groups\n1. Stray Kids\n2. BTS\n3. ENHYPEN\n4. TOMORROW X TOGETHER\n5…
## 334                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 335                               RT @jammydoodle: ❀ SEVENTEEN Be The Sun in Bulacan ❀\n\nFan Support for #SCOUPS🍒\n\nFor more information, please check photo below. 😊\n\nSee y'al…
## 336                               RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 337                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 338                             RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 339                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 340                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 341                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 342                                 RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 343                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 344                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 345                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 346                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 347                                 RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 348                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 349                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 350                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 351                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 352                                   RT @ooo_coups: 221214 SEVENTEEN CAFE 2022 ~WINTER CAMPING~\n\n#에스쿱스 #SCOUPS #세븐틴  \n\nhttps://t.co/6JHMlJgLBl https://t.co/pQYWnnQs4g
## 353                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 354                                   RT @ooo_coups: 221214 SEVENTEEN CAFE 2022 ~WINTER CAMPING~\n\n#에스쿱스 #SCOUPS #세븐틴  \n\nhttps://t.co/3UVadcMN3l https://t.co/JnpeeoFER4
## 355                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 356                          RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 357                                                 RT @inthao_o: Me and boo with our duplicate(⁠◠⁠‿⁠◕⁠)\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN @pledis_17 https://t.co/wnZg5HrQeH
## 358                           RT @SVT_Fancafe: [#DK🌟 Weverse]\n221215 -20:33 KST-\n\n➸ Who's that friend on the right?🥸\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/cCqASx7…
## 359                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 360                                  RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 361                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 362                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 363                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 364                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 365                                   RT @ooo_coups: 221214 SEVENTEEN CAFE 2022 ~WINTER CAMPING~\n\n#에스쿱스 #SCOUPS #세븐틴  \n\nhttps://t.co/jTNp2s4UKE https://t.co/BBTWl0dY1v
## 366                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 367                                                RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 368                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 369                                   RT @wonubliss: 2022 Asia Artist Awards \n🏆 Hot Trend\n🏆 Fabulous\n🏆 Singer of the Year \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/2zMWmc3gPU
## 370                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 371                                    RT @blcshao_o: ⑅⁠˖⁠♡ you've always been there for me\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/NqEWOXrN1N
## 372                                RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 373                                                                                                                RT @etherealkims: instead of saying i love you, seventeen will...
## 374                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 375                                   RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 376                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 377                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 378                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 379                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 380                                   RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 381                       RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 382                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 383                                      RT @Minjilyn: looking for a sponsor for my fee going to Be The Sun Bulacan. ket 500 or 600 lang. mag commute na lang kami after exam kahit…
## 384                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 385                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 386                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 387                                   RT @lucidhaos: track #1 : pagtingin\n \n— wherein two best friends, Mikael and Drei, lost in the sea of their deepest desires find the island…
## 388                        RT @Dear_Maritess: 12.12 SALE\n\n‼️STARTS  @ 12PHP‼️\n‼️ALL ONHAND &amp; READY TO SHIP \nBTS\nBLACKPINK\nTWICE\nENHYPEN\nSEVENTEEN\nTXT\nITZY\nNCT\nTHE BOY…
## 389                                   RT @nyorongiez: ✧ be the sun: bulacan freebies ✧\n\nhi! i'll be giving away booshua x sanrio stickers and svt art prints on d-day ◡̈︎\n\nvery l…
## 390                                              RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 391                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 392                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 393                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 394                                   RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 395                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 396                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 397                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 398                                   RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 399                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 400                                                                                                  RT @iveskiss: AYOOOOOOO SEVENTEEN RIGHT HERE!!!!!!!! 🤙🤙 https://t.co/poEICi25hI
## 401                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 402                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 403                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 404                                      RT @BaRk_r0wR: I just want to thank ate @miss_svtmafia and ate @yupsheskitten for the giveaways!! Thank you very muchhh po,, even though I…
## 405                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 406                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 407                                                         RT @seventeen: Mark Tuan Reveals The CRINGIEST 'GOT7' Song And His SECRET Tattoo | Read Receipts https://t.co/JPy1hR3WEo
## 408                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 409                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 410                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 411                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 412                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 413                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 414                                     RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 415                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 416                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 417                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 418                                    RT @m1n9yu_ku: Let them know about us. \n\n#CSD #CaratSelcaDay \n#THE8 #MINGHAO #명호 \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/YkYFpZIqe3
## 419                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 420                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 421                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 422                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 423                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 424                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 425                          RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 426                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 427                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 428                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 429                                 RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 430                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 431                                RT @adorekgyu: hi! we will be giving away freebies for seventeen #BeTheSuninBULACAN ♡\n\n1:1 ratio! limited qty\nopen for trade~\n\nto claim:\n𖧷…
## 432                                      RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 433                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 434                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 435                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 436                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 437                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 438                                                RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 439                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 440                                   RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 441                                RT @ayshuahong_: An equation between me and you\n\n🙇‍♀️📷\n\n#SEVENTEEN #CSD #세븐틴 #CaratSelcaDay #민규 #MINGYU @pledis_17 https://t.co/Fz3viTeXHn
## 442                                RT @joshu_apollo: [OPEN SHARING HAPPY JOSHUA DAY BIRTHDAY BOX VER.2]\n\n‌outbox + q&amp;a photo book + keyring 195k \n‌birthday pop up card + pc k…
## 443                                 RT @binnie_nonna: #BinnieBigay 🐶 for BeTS in Bulacan \n\nhi #TeamLabas carats, we’ll be giving away one (1) LBA ticket for #BeTSinBulacan \n\nH…
## 444                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 445                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 446                         RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 447                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 448                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 449                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 450                       RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 451                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 452                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 453                                                                            RT @itstetrisbish: So many favs in this video 🐯 #SEVENTEEN @pledis_17 🌎 #LA3C https://t.co/iwOs0WFqWc
## 454                                RT @WorldwideCarats: [VOTING]\n2022 HANTEO MUSIC AWARDS NOTICE\n\nTo CARATs,\n\nThe SVT Fanbases have decided to prioritize voting on the "GRAND…
## 455                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 456                               RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 457                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 458                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 459                         RT @httpdkesc: ෆ SEVENTEEN Be The Sun in Bulacan Freebie ෆ \n\nHi, carats! I'll be giving away freebies on d-day! Fan Support for #도겸 &amp; #에스쿱스…
## 460                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 461                            RT @kawaiikyeom: . . . for our sun, deekay 🤓\n\n— BeTS in Bulacan freebies —\n\n+ randomly distributed\n+ open to all carats!!\n+ like &amp; rts are…
## 462                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 463                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 464                                     RT @seventeen: Selena Gomez and Stacey Abrams Set to Produce New Music Documentary, “Won't Be Silent” https://t.co/uYUzPHNYC5 https://t.co/…
## 465                                  RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 466                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 467                                                                                        RT @SEVENDR3AM: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1 https://t.co/CbwQWSa1q6
## 468                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 469                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 470                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 471                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 472                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 473                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 474                                                                       RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 475                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 476                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 477                       RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 478                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 479                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 480                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 481                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 482                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 483                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 484                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 485                                     RT @dailygyushua: him asking for hint about a song that make him go viral every two business day (network love) yet he was so slow to guess…
## 486                           RT @imnotyurgirl: I got my vitamin sea with my honey ♡\n#CSD #SEVENTEEN #세븐틴 #CaratSelcaDay #Dino #디노 #LeeChan #이찬  #CARAT #캐럿  @pledis_17 h…
## 487                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 488                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 489                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 490                                              RT @dksunshines: saaaturday lunch☁️💛\n\n#DOKYEOM #DK #도겸 #CaratSelcaDay #CSD #SEVENTEEN #세븐틴 @pledis_17 https://t.co/ahL28wywtR
## 491                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 492                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 493                                  RT @teamseventeenvn: Seventeen daily streams on Spotify | December 15 (12/15) | Thursday\n\n• Total streams ─ 2,912,580,936 (+3,675,781)\n• Mo…
## 494                                                                                               RT @PAST_DK: 151217 SEVENTEEN with K-food\n\n#도겸 #이석민 https://t.co/5BejIyqIcA
## 495                                  RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 496                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 497                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 498                               RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 499                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 500                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 501                                RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 502                             RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 503                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 504                             RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 505                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 506                                RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 507                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 508                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 509                                  RT @moonjunwin: Hi Carats!! I will be giving #BeTSinBulacan freebies!!\n\n💎 Time and Date: TBA\n💎Limited\n💎Random freebies (may have stickers,…
## 510                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 511                          RT @HorangiKrong: 🌞 BeTS Bulacan - FREEBIES 🌞\n\nDate: 17th Dec. 2022\nTime &amp; Location: tba\n\n1:1 ratio (not a Set)\n\nFirst 13 Carats to spot me…
## 512                             RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 513                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 514                                   RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 515                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 516                                      RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 517                          RT @HorangiKrong: 🌞 BeTS Bulacan - FREEBIES 🌞\n\nDate: 17th Dec. 2022\nTime &amp; Location: tba\n\n1:1 ratio (not a Set)\n\nFirst 13 Carats to spot me…
## 518                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 519                                RT @joshu_apollo: [OPEN SHARING HAPPY JOSHUA DAY BIRTHDAY BOX VER.2]\n\n‌outbox + q&amp;a photo book + keyring 195k \n‌birthday pop up card + pc k…
## 520                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 521                                RT @minwonshuji: ︑︒⚬∙︓·⠄ Seventeen Be The Sun in Bulacan freebies \n\nHi, Carats! Together with @urmwlovr and @everywon_who, we will be givin…
## 522                                   RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 523                             RT @taeramisoo: BE THE SUN ; BULACAN\nSEVENTEEN FANSUPPORT ˗ˋˏ ♡ ˎˊ˗\n\nCONCERT FREEBIES by: taeramisoo\n\n2 random pc\nmoon junhui banner !!!\n\n#…
## 524                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 525                                                                                                                         RT @IUF4RY: Dream - seventeen\n\nhttps://t.co/E39lb8ILMP
## 526                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 527                                                          RT @caramelchiiato: sunset state of mind \n\n#CSD #CaratSelcaDay #WONWOO\n#SEVENTEEN @pledis_17 https://t.co/Au3nsVI2md
## 528                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 529                                  RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 530                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 531                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 532                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 533                          RT @HorangiKrong: 🌞 BeTS Bulacan - FREEBIES 🌞\n\nDate: 17th Dec. 2022\nTime &amp; Location: tba\n\n1:1 ratio (not a Set)\n\nFirst 13 Carats to spot me…
## 534                                 RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR WONCHEOL♡*\n\nhello carats! i'll be giving away this hand…
## 535                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 536                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 537                           RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 538                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 539                                 RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR DK♡*\n\nhello carats! we'll be giving away this hand bann…
## 540                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 541                                   RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 542                               RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 543                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 544                                RT @pledischarts: #SEVENTEEN 4th Album ‘Face the Sun’ has now surpassed 3,000,000 (3 Million) copies sold on Circle (GAON). 🎉\n\n#세븐틴 @pledis…
## 545                                              RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 546                          RT @bbkyeoms: the model          &amp;       the photographer\n\n[#CSD #CaratSelcaDay #DOKYEOM #DK #도겸 #SEVENTEEN #세븐틴  @pledis_17 ] https://t.co…
## 547                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 548                                   RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 549                           RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 550                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 551                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 552                                                                         RT @luvrplu: carat selca day ft my sick self !! #SEVENTEEN #CARAT #CaratSelcaDay https://t.co/UOXajOl68O
## 553                                                               RT @ibexenina: layout selca w/ my tiger bf💋\n\n#csd #CaratSelcaDay #SEVENTEEN #HOSHI #호시 https://t.co/GDWft4RWNR
## 554                                             RT @SVT_stagram: [#SEUNGKWAN 📸 Instagram Story] \n221215 pledis_boos \n\n#승관 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/d7ppd0k6gz
## 555                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 556                                  RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR S.COUPS♡*\n\nhello carats! i'll be giving away these fan…
## 557                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 558                                 RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 559                                         RT @shuahae_3_: 𝐎𝐮𝐫 𝐇𝐞𝐚𝐥𝐢𝐧𝐠, 𝐇𝐞𝐚𝐥𝐢𝐧𝐠~ 💙\nWith Mingyu \n\n#CSD #Mingyu #민규 #CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/UvyYAGjB8E
## 560                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 561                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 562                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 563                                 RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 564                       RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 565                                                 RT @inthao_o: Me and boo with our duplicate(⁠◠⁠‿⁠◕⁠)\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN @pledis_17 https://t.co/wnZg5HrQeH
## 566                                                RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 567                                   RT @adorshu: be the sun in bulacan fan support / freebies by adorshu! ⭐️\n\nhi carats~ i’ll be giving away very limited seventeen ot13 hand b…
## 568                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 569                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 570                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 571                                   RT @hanihaehani: seventeen be the sun in bulacan #SCOUPS fan support 🍒🤍\n\nhi! i'll be giving away freebies on #BeTSinBULACAN #BeTheSuninBULA…
## 572                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 573                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 574                     RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 575                                                             RT @rervoke: — we keep it colorful 🌈\n[ #CSD #CaratSelcaDay #SVT\n#Hoshi #SEVENTEEN #CARAT ] https://t.co/uYCkeVEqAo
## 576                            RT @jaz_beomjun: ✨BETS IN BULACAN FREEBIES✨\n\n~open to all carats \n~randomly distributed \n~limited quantity \n\n#BeTheSuninBULACAN\n#BeTSinBULA…
## 577                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 578                              RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 579                                      RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 580                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 581                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 582                                  RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 583                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 584                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 585                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 586                             RT @mgyuppy: ( 03 : 00 AM ) . \n- you're are the reason that i lie awake ;\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 @pledis_17 https…
## 587                             RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 588                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 589                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 590                                              RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 591                                                      RT @__Hatsumii__: Carats leader 🫶🏼\n#csd #CARAT_SELCA_DAY #최승철 #SEUNGCHEOL #SEVENTEEN @pledis_17 https://t.co/qYJgvvRmoT
## 592                          RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 593                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 594                                   RT @17CARATS_INA: - ' - SEVENTEEN HAS CHECK IN JAKARTA CITY - ' - \n\nThank you for participating and supporting us as a sponsor of this proj…
## 595                                   RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 596                                     RT @TF_Moments: in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callback to t…
## 597                                    RT @mavillera_ww: D-DAY🧧JEON WONWOO! BAG OF LUCK!\nhiii po! I made crocheted cat keychains tho superrr onti langg, paki-alagaan po ang mga p…
## 598                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 599                                                                             RT @gam3boigyu: i got a crush on you 🫶🏻\n\n#caratselcaday #mingyu #seventeen https://t.co/0ZB4qvJKX3
## 600                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 601                   RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 602                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 603                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 604                                                                                RT @horangrawrhae: seventeen hoshi first update in the philippines 😂\n\n©️ https://t.co/0x8uHu6M61
## 605                                 RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 606                             RT @missmafia0526: CARATS HELP RT PLEASE 😭\n\nSEVENTEEN BE THE SUN BULACAN \n\nwtt lft\n\nHAVE: (2) VIP B SOUNDCHECK\n\nWANT: (2) VIP SOUNDCHECK AN…
## 607                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 608                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 609                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 610                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 611                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 612                                    RT @UaenCarat0912: I will be giving away 100 sets of seoksoo/svt freebies for #BeTheSuninBULACAN \nLimited lang since mahirap ang buhay chos…
## 613                                      RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 614                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 615                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 616                         RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 617                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 618                          RT @HorangiKrong: 🌞 BeTS Bulacan - FREEBIES 🌞\n\nDate: 17th Dec. 2022\nTime &amp; Location: tba\n\n1:1 ratio (not a Set)\n\nFirst 13 Carats to spot me…
## 619                                                          RT @AmyIsPolyam: @RamonaQuaxli I'm polyamorous because it takes seventeen salaries just to pay the gas bill these days.
## 620                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 621                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 622                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 623                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 624                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 625                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 626                   RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 627                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 628                                RT @cheonsapower: Loeee PH carats! ⭐️ These Seventeen DIY beads will be for ✨giveaway✨on December 17!\n\n- just kindly help like and rt\n- wil…
## 629                         RT @httpdkesc: ෆ SEVENTEEN Be The Sun in Bulacan Freebie ෆ \n\nHi, carats! I'll be giving away freebies on d-day! Fan Support for #도겸 &amp; #에스쿱스…
## 630                                RT @mochishuuu: "I don't think glasses look good on you, sir"\n\n#CSD #CaratSelcaDay #scoups #seventeen #세븐틴 @pledis_17 https://t.co/GyH3x8qc…
## 631                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 632                                    RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 633                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 634                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 635                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 636                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 637                                      RT @Ppajjyorra: @leechanranghae And also the fact that seventeen especially Woozi produce 'Face the Sun' within four months is insane, and…
## 638                                   RT @junhui_noona: Jun at Incheon airport heading to Manila yesterday, when Jun took off his mask we could see how handsome he is 💖💖\n#JUN #준…
## 639                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 640                                              RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 641                                                                       RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 642                                                                                               RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 643                                     RT @FiloCarat: All members of #SEVENTEEN are now departing from Incheon Airport to Manila, Philippines for #BETHESUNinBulacan additional sh…
## 644                                     RT @nochu817: @leechanranghae Exactly! Other groups did it because they WANTED to, and because they could. It's still admirable, but it's n…
## 645                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 646              RT @Izzhkrml1: SEVENTEEN FACE THE SUN YIZHIYU F VER\n\nRM38 💗\nSC ✅ \nJS✅\nWW ✅\nDK ✅ \n\nRM36💙\nJN✅\nT8✅\nWZ ✅\nVN ✅\nDN ✅ \n \n-💗 tie with 💙 unless all…
## 647                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 648                             RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 649                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 650                                                                                                                          RT @Brenoteen: Fear -SEVENTEEN\nhttps://t.co/26cqTDHe7i
## 651                                 RT @aera__97: @leechanranghae I have a lot of respect &amp; admiration for many talented groups but THIS is one of the main reasons why Sevente…
## 652                                                                             RT @JeonKate_Que: Rainbow 🌈🥺\n\n#BeTheSunInBulacan #BeTSInBulacan #Seventeen https://t.co/nqfchFU3eJ
## 653                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 654                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 655                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 656                           RT @doieyongs: ✨@doieyongs' Mini Giveaway ✨\nSEVENTEEN BE THE SUN: in BULACAN \n\n✨Date: Dec 17, 2022\n✨Time: 10:00 AM - until stocks last\n✨Loc…
## 657                                   RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 658                                  RT @shuasblossom: Oh, Christmas lights\nLight up the street\nLight up the fireworks in me\nMay all your troubles soon be gone\nThose Christmas…
## 659                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 660                                    RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 661                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 662                              RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 663                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 664                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 665                       RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 666                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 667                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 668                                                                                                             RT @cheoloved: seventeen announces debut ❤️‍🩹🫂 https://t.co/TQTLwkEP1c
## 669                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 670                                                                                                 RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 671                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 672                                                                             RT @gam3boigyu: i got a crush on you 🫶🏻\n\n#caratselcaday #mingyu #seventeen https://t.co/0ZB4qvJKX3
## 673                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 674                               RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 675                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 676                                                                                         RT @yoojinchim: seventeen arriving where???\n\nMANILA CITY~ 🤍\n\nhttps://t.co/8oVM4TGfDI
## 677                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 678                                      RT @_TRaveller_8: 221127☀️Be The Sun☀️ in Tokyo\n\n#디에잇 #THE8 \n#서명호 #徐明浩 #ミンハオ\n#세븐틴      #SEVENTEEN https://t.co/AoyYsYPB14
## 679                                  RT @btsvt_btsvt: WTS LFB SEVENTEEN BE THE SUN IN BULACAN 💎 \n\n(1) VIP FLOOR STANDING B \nPurchased on Nov 30 when there were a few tickets le…
## 680                                                               RT @yamarie_sjsvt: wahh siwon congratulating seventeen omg super seventeen moment yass 😍❤️\nhttps://t.co/iSuiJQajmY
## 681                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 682                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 683                                   RT @CheonsaHaniee: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nPlease see photo for more details\nStrictly 1:1 🥺\n\n☀️RT + Like (follow not mandatory…
## 684                                     RT @philconcerts: SEVENTEEN at the Incheon Airport on the way to the Philippines for #BeTSinBULACAN, happening on December 17 at the Philip…
## 685                                   RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 686                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 687                                    RT @mavillera_ww: D-DAY🧧JEON WONWOO! BAG OF LUCK!\nhiii po! I made crocheted cat keychains tho superrr onti langg, paki-alagaan po ang mga p…
## 688                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 689                                             RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 690                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 691                                  RT @addtocartnoona: 🚨Christmas B1T1 SALE🚨\n\nRamdom Sealed + Unsealed 💸 220\n\nGroups Available:\nTreasure Enhypen Straykids Blackpink TXT TNX…
## 692                                 RT @yoonminhoes: ଘ(੭*ˊᵕˋ)੭* Caratdeul!! \n\nMe and @Kylavv18 will be giving away freebies for BeTS 🤩\n\n♡Read and follow the mechanics to claim…
## 693                                  RT @leemayrah: 🌻SEVENTEEN BE THE SUN IN JAKARTA - ADDSHOW🌻\nminwon ver. freebies by @cloudygureumi x @leemayrah\n\n🗓️Dec 28th, 2022\n📌GBK Madya…
## 694                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 695                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 696                                    RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 697                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 698                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 699                                   RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 700                              RT @smplyfallinforu: ☀️ BE THE SUN in Bulacan ☀️\n\n💎 SCoups, Jeonghan, Woozi and Joshua birthday freebies 🍒😇🍚🦌\n\nDecember 17, 2022\nTime &amp; Loc…
## 701                              RT @jjwihauls: ☁️. Be The Sun Bulacan Freebies\n\n — rt &amp; like this tweet to spread !\n —  will prio attendees due to limited quantities \n — o…
## 702                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 703                              RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 704                                   RT @adorshu: be the sun in bulacan fan support / freebies by adorshu! ⭐️\n\nhi carats~ i’ll be giving away very limited seventeen ot13 hand b…
## 705                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 706                            RT @jaz_beomjun: ✨BETS IN BULACAN FREEBIES✨\n\n~open to all carats \n~randomly distributed \n~limited quantity \n\n#BeTheSuninBULACAN\n#BeTSinBULA…
## 707                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 708                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 709                                     RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 710                                   RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 711                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 712                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 713                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 714                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 715                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 716                              RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 717                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 718                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 719                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 720                                 RT @abangmingyu: “Hold you laughter Round 1”\n“Failed”\n“I hate you”\n“Hahahahahahaha”\n#caratselcaday #CSD #seventeen #MINGYU @pledis_17 https…
## 721                                     RT @svntncarat17_: Only hours left till we witness the performance powerhouse SEVENTEEN as the first ever kpop act to perform on the WORLD'…
## 722                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 723                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 724                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 725                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 726                             RT @caratsmarket: Cwts aab photocard seventeen woozi, wonwoo and dino @sekairsm\n✅ include packing\n✅ Free ongkir via 🍏🍊\n✅ Good condition\n\nTa…
## 727                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 728                                    RT @soompi: #TWICE Becomes K-Pop Girl Group With Most RIAJ Album Certifications In Japan + #SEVENTEEN Goes Platinum\nhttps://t.co/w3o19aEQqF…
## 729                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 730                                    RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 731                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 732                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 733                                RT @INFINITEAVE_PH: 💎Be The Sun in Bulacan Freebies💎\n\n32mm glitter button pin\nJust like and rt this tweet and approach us tomorrow. 😊\n\n#BeT…
## 734                                   RT @thecheorry: 𝙞 𝙬𝙖𝙣𝙩 𝙩𝙤 𝙥𝙞𝙘𝙠 𝙖𝙣𝙙 𝙜𝙖𝙩𝙝𝙚𝙧 𝙖𝙡𝙡 𝙩𝙝𝙚 𝙥𝙧𝙚𝙩𝙩𝙮 𝙬𝙤𝙧𝙙𝙨 𝙖𝙣𝙙 𝙜𝙞𝙫𝙚 𝙩𝙝𝙚𝙢 𝙩𝙤 𝙮𝙤𝙪💌💐\n\n#CaratSelcaDay #CSD #SCOUPS #SEUNGCHEOL #SEVENTEEN #…
## 735                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 736                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 737                              RT @luckytreycee: Did some analysis :))\nGOSE EP. 28: EGO\n\n#SEVENTEEN @pledis_17\n#GoingSEVENTEEN \n#GOING_SVT \n#GOSE\n#EGO https://t.co/xVPE4H…
## 738                   RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 739                              RT @ksjwaifu: museum date w/ bae🤍🖤\n\n#CaratSelcaDay #CSD #CARAT_SELCA_DAY #CARAT #세븐틴 #SEVENTEEN #민규 #MINGYU @pledis_17 https://t.co/wcDVlym…
## 740                               RT @kkumashane: SEVENTEEN Be the Sun Bulacan\nFREEBIES GIVEAWAY \n\n‣ official trading/photo cards\n‣ candy canes\n\ni will post on d-day where y…
## 741                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 742                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 743                                  RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 744                                   RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 745                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 746                               RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 747                                    RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 748                                     RT @ParamountAurora: There's still time to experience the love of The Sound of Music this #holidayseason! Join us until Jan. 15 to feel six…
## 749                                 RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 750                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 751                                     RT @miss_svtmafia: Let them rest, CARATs. Let SEVENTEEN rest. Give them space. Saturday is just around the corner, give them time, space an…
## 752                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 753                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 754                                 RT @sound_of_roses: “𝘈𝘯𝘥 𝘩𝘦 𝘩𝘢𝘴 𝘵𝘩𝘦 𝘤𝘶𝘵𝘦𝘴𝘵 𝘴𝘮𝘪𝘭𝘦."\n\n#CaratSelcaDay #CSD #JOSHUA  #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6XnaoSpjMf
## 755                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 756                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 757                                                RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 758                         RT @miss_svtmafia: D-DAY TOMORROW ㅠㅠㅠ\nCARATS HELP RT PLEASE 😭\n\nSEVENTEEN BE THE SUN BULACAN \n\nwtt lft\n\nHAVE: (2) VIP B SOUNDCHECK\n\nWANT: (2…
## 759                                                              RT @doominsun: mom + our ults hehe #CaratSelcaDay #SEVENTEEN #CSD #HOSHI #VERNON @pledis_17 https://t.co/oGybc3ROd1
## 760                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 761                             RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 762                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 763                                 RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 764                                  RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 765                                    RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 766                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 767                                                                                              RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 768                                 RT @kwonushii: ✨BETS IN BULACAN FREEBIES✨\n\nHello, Carats! This is my first time seeing Seventeen, and to celebrate I'm also giving freebies…
## 769                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 770                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 771                                RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 772                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 773                                               RT @sisiseventeen: Pinjem bathrobe\n\n#DOKYEOM #DK #도겸 #CaratSelcaDay #CSD #SEVENTEEN #세븐틴 @pledis_17 https://t.co/glNuxGNxG0
## 774                                                                                               RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 775                           RT @bnsnijeons: 100\n230\n\nset only\n\nx sensitive collectors\n— condis:\nvernon (clean)\nmingyu (9/10)\n\nt. hansol new heights sector 17 S17 nh se…
## 776                               RT @jungjeffreyt: WTS HOSHI 96L FACE THE SUN CARAT VER INA\n\n• bisa 🍊\n• dom tangerang\n• bisa keep event\n\nt. wts wtb seventeen face the sun s…
## 777                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 778                          RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 779                                  RT @teamseventeenvn: Seventeen daily streams on Spotify | December 15 (12/15) | Thursday\n\n• Total streams ─ 2,912,580,936 (+3,675,781)\n• Mo…
## 780                              RT @wonuahcart: wts lfb help rt\n\nseventeen season's greetings 2023 tingi FETA\n\ndop: dec 20 or PAYO \nloc: mm\neta: late dec\nmod: jnt/sco/flas…
## 781                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 782                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 783                                     RT @BrittanyAlkonis: @SenMikeLee was “callously informed” of @SecDef’s decision on our family’s pay and benefits 17 days ago. For SEVENTEEN…
## 784                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 785                                    RT @DlN0LAND: DINO and WOOZI necklaces are here! 🤗 See you all on Saturday! ❤️\n\n#BeTSinBULACAN  #SEVENTEEN #BeTheSuninBULACAN @pledis_17 ht…
## 786                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 787                                 RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 788                                 RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 789                                                    RT @lilamanayaka: just a forever thing i’ll do with you #csd #joshua #CaratSelcaDay #CARAT #SEVENTEEN https://t.co/XjYs2z2iYu
## 790                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 791                                    RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 792                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 793                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 794                                RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 795                                   RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 796                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 797                                                   RT @vern_offline: the king and queen of flavortown 😎 @pledis_17 #caratselcaday #csd #vernon #seventeen https://t.co/PJub6GxJdk
## 798                               RT @ei8htpercents: ᴇᴄᴄᴇᴅᴇɴᴛᴇsɪᴀsᴛ \n  \n          Alternative Universe 🌙\n\n   Seungcheol x OC x Wonwoo \n   \n#SEVENTEEN #WONWOO #SEUNGCHEOL htt…
## 799                                                                                           RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 800                             RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 801                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 802                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 803                                             RT @kpopBg_ontop: K-Pop boygroups with at least one album with 3 million copies sold in South Korea\n\n#BTS\n#StrayKids \n#SEVENTEEN
## 804                                                             RT @rervoke: — we keep it colorful 🌈\n[ #CSD #CaratSelcaDay #SVT\n#Hoshi #SEVENTEEN #CARAT ] https://t.co/uYCkeVEqAo
## 805                           RT @boosreason: 💛 our hearts, timeless\n      our love is timeless\n         we are timeless 💙\n\n[#SEVENTEEN #CaratSelcaDay #CSD #세븐틴 #부승관 #SE…
## 806                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 807                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 808                                                                                     RT @lomlhyewon: A dual rainbow for Seventeen. \n\n#BeTheSunInBulacan https://t.co/GCXYDK9VMm
## 809                                     RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 810                       RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 811                                     RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 812                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 813                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 814                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 815                                                              RT @hansolmes: me and my husband 🐈‍⬛\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #VERNON https://t.co/giwPPCznws
## 816                                    RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' 3 CITY MIX D-1\n\nVOD ON-AIR\n2022.11.25 8PM (FRI) \n▶ https://t.co/BjDpzxmTvJ…
## 817                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 818                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 819                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 820                                RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 821                                     RT @BrittanyAlkonis: @SenMikeLee was “callously informed” of @SecDef’s decision on our family’s pay and benefits 17 days ago. For SEVENTEEN…
## 822                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 823                                      RT @songswltvs: I just know SEVENTEEN will be in total shock once they finally see PH ARENA, What do you mean it's bigger than Tokyo Dome?…
## 824                              RT @oceanzii: That someday it would lead me back to you.\n\n#CaratSelcaDay #CSD #DK #DOKYEOM #SEOKMIN #도겸 @pledis_17 #세븐틴 #SEVENTEEN https://…
## 825                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 826                              RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 827                                   RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 828                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 829                                    RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 830                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 831                                   RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 832                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 833                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 834                                RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 835                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 836                                  RT @shuasblossom: Oh, Christmas lights\nLight up the street\nLight up the fireworks in me\nMay all your troubles soon be gone\nThose Christmas…
## 837                                 RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 838                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 839                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 840                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 841                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 842                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 843                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 844                               RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 845                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 846                                                                          RT @moshimagu: see you next concert, seventeen! i love you. have fun tonight 🥺🤎 https://t.co/iznUdUbjXU
## 847                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 848                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 849                                                   RT @vern_offline: the king and queen of flavortown 😎 @pledis_17 #caratselcaday #csd #vernon #seventeen https://t.co/PJub6GxJdk
## 850                                   RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 851                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 852                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 853                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 854                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 855                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 856                           RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 857                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 858                                   RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 859                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 860                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 861                                                            RT @snowwonu: i’ll pick you up after work? \n\n#CARAT_SELCA_DAY #WONWOO #SEVENTEEN @pledis_17 https://t.co/0IuwRYJ5hT
## 862                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 863                                RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 864                         RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 865                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 866                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 867                                                                RT @min9yu_tttop: seventeen departure for be the sun in bulacan ! safe skies @pledis_17 ♡ https://t.co/K5SyKxITPt
## 868                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 869                                    RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 870                                   RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 871                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 872                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 873                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 874                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 875                                 RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 876                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 877                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 878                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 879                                 RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 880                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 881                                                                        RT @allkpop: #Seventeen's #Vernon drops a teaser image for his first solo mixtape https://t.co/yaffbSGxKd
## 882                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 883                                  RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 884                                   RT @adorshu: be the sun in bulacan fan support / freebies by adorshu! ⭐️\n\nhi carats~ i’ll be giving away very limited seventeen ot13 hand b…
## 885                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 886                                                                    RT @koreansales_twt: &lt;Your Choice&gt; by #SEVENTEEN has surpassed 1.5 million copies sold on Circle Chart.
## 887                                  RT @teamseventeenvn: Seventeen daily streams on Spotify | December 15 (12/15) | Thursday\n\n• Total streams ─ 2,912,580,936 (+3,675,781)\n• Mo…
## 888                                                               RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 889                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 890                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 891                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 892                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 893                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 894                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 895                                                      RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 896                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 897                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 898                                     RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 899                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 900                               RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 901                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 902                                     RT @neo__phyte: Let’s see my happiness~ ♡♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/pslTZAeFLG
## 903                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 904                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 905                               RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 906                                 RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 907                                                                         RT @ohmyjunnie: me: 😐\nhim: ☺️\n\n#CaratSelcaDay #CSD #THE8 #SEVENTEEN @pledis_17 https://t.co/tHX9w3jQFS
## 908                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 909                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 910                                                          RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 911                                           RT @EpicMahonelover: we kinda match. ❤️\n\n[ #CaratSelcaDay #CSD ]\n\n[ #Vernon #SEVENTEEN ] \n\n[ @pledis_17 ] https://t.co/vtahU0e5BL
## 912                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 913                                   RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 914                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 915                                                       RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 916                                  RT @teamseventeenvn: Seventeen daily streams on Spotify | December 15 (12/15) | Thursday\n\n• Total streams ─ 2,912,580,936 (+3,675,781)\n• Mo…
## 917                                RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 918                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 919                                                                    RT @koreansales_twt: &lt;Your Choice&gt; by #SEVENTEEN has surpassed 1.5 million copies sold on Circle Chart.
## 920                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 921                             RT @stthsn: wts lfb svt ph #BeTheSunBulacan \n\nUBOX C REG\n— ₱1,950\n— payment upon meet up sa ph arena \n\ndm me to claim !!\n\nt. bets ticket ub…
## 922                           RT @woonnnuuuu: HELP RT !! \nWts / want to sell\n\nAll about photocard seventeen\n\n✨ Indonesia INA based\n✨ excl admin 🍊\n✨for Intl buyers, I pre…
## 923                              RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 924                              RT @binnie_nonna: 🤍 BetS in Bulacan Freebies 🤍\n\nhi carats ☺️ we’ll be giving away freebies on d-day!\n\nto claim:\n💫 like and rt \n💫 mbf\n\nsee y…
## 925                           RT @imnotyurgirl: I got my vitamin sea with my honey ♡\n#CSD #SEVENTEEN #세븐틴 #CaratSelcaDay #Dino #디노 #LeeChan #이찬  #CARAT #캐럿  @pledis_17 h…
## 926                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 927                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 928                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 929                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 930                                         RT @koreansales_twt: #SEVENTEEN becomes the 7th artist to surpass 3 million copies sold with at least one album in South Korean history.
## 931                                 RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 932                               RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 933                               RT @etherealdk: —sharing pics bcs we can’t see each other yet ㅠㅠ\n\n[ #CSD #CaratSelcaDay #SEVENTEEN #dokyeom #도겸 @pledis_17 ] https://t.co/4…
## 934                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 935                                   RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 936                              RT @dnonarats: #CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN #세븐틴 @pledis_17 \n\nthe photographer            his favorite view https://t.co/G9y…
## 937                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 938                                     RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 939                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 940                               RT @hazycacarrot: your lips my lips, apocalypse~\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 @pledis_17 https://t.co/Rf1dnmKq2O
## 941                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 942                               RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 943                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 944                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 945                                     RT @sharlynn53s: @45LVNancy @GuntherEagleman @DogRightGirl @dogspink3 @RealHickory @Braveheart_USA @Fishing_Huuker @DefSue3 @SquillMama @Be…
## 946                               RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 947                                                                                                                                                      RT @seventeenphil: D-Day! 🥹
## 948                                 RT @kwonushii: ✨BETS IN BULACAN FREEBIES✨\n\nHello, Carats! This is my first time seeing Seventeen, and to celebrate I'm also giving freebies…
## 949                                     RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 950                                   RT @lisamanobal_327: The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nTXT…
## 951                                             RT @n0nihae: — high school best buds (๑'ᵕ'๑)⸝*♡.・✩°。⋆\n\n#CaratSelcaDay #CSD #SEVENTEEN #CARAT #세븐틴 #캐럿 https://t.co/j7jEEugioV
## 952                                   RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 953                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 954                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 955                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 956                                  RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 957                                 RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 958                                 RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 959                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 960                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 961                                                RT @xum8nghao_o2: [SEVENTEEN INSTAGRAM]\n221208 \nho5hi_kwon posted\n\n#SEVENTEEN #SVT_UPDATES @pledis_17 https://t.co/Tp9I9IRUjh
## 962                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 963                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 964                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 965                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 966                              RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 967                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 968                                                                                                 RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 969                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 970                                     RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 971                                              RT @HONGJIS0: 𓈒 ꔛ ˙ ˖ love and hug  ⩇ : ⩇ 𝗌un ഒ\n#CaratSelcaDay #CSD #JOSHUA\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/rlYaqpCWzn
## 972                                   RT @officialcharts: It begs to stick around... 🤘\n\nSam Fender's (@samfendermusic) unstoppable Seventeen Going Under gets a new lease of life…
## 973                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 974                           RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 975                                                                                  RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 976                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 977                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 978                                                                                                            RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 979                                   RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 980                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 981                                RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 982                                    RT @yoonzinahae: One lucky #teamlabas will be able to see Seventeen later! Good luck! 💗\n\nI’ll post my whereabouts later if you wish to get…
## 983                                                         RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 984                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 985                                             RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 986                                      RT @vercoupszone: seventeen really enjoyed lechon, jollibee &amp; bbq in the philippines 🥹🇵🇭\n\n#민규 #승관 #세븐틴 https://t.co/9UyMONWqbj
## 987                                      RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 988                                      RT @DINO_CENTRAL: here’s my little study on dino’s dancing and me trying to put into words why i love it so much. it’s the product of hard…
## 989                                                                                       RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 990                                RT @qqinxr: he's with the flowers &amp; me with the plants ❤️🤍🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #THE8 @pledis_17 https://t.co/AeCz1EyPgn
## 991                                              RT @svtbz_Q8: he just won't stop copying me 😤 #CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/HlyMVkiehU
## 992                                RT @voboowuji: Help rt! \nwant to sell / wts / lfb\n\n• selling to each (other tnc on pict 3) \n• open sharing boleh banget\n• exc packing+admin…
## 993                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 994                              RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 995                              RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 996                                     RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 997                                RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 998                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 999                                   RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1000                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1001                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1002                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1003                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1004                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1005                                                RT @cherishthe17: Seventeen's 2023 Bucket list\n\nWonwoo recommended overseas TTT\n\n😭😭 Wonwoo best boy\nhttps://t.co/btb2FB9QTG
## 1006                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1007                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1008                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1009                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 1010                                                                                     RT @svtbillboard: SPANISH TRANS\n\n@pledis_17  #SEVENTEEN #세븐틴 \nhttps://t.co/mrTxFqSgpj
## 1011                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1012                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1013                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 1014                                                              RT @kwonhochie: the card was FacE ThE SuN\n\n#CaratSelcaDay  #csd #CARAT #SEVENTEEN #hoshi https://t.co/JxLqsHkgGO
## 1015                                  RT @svtbillboard: [NOTICE : 2022 HANTEO MUSIC AWARDS]\n\nWe have decided to not push for Global Artist Award and Whosfandom poll on Whosfan f…
## 1016                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 1017                                  RT @17CARATS_INA: - ' - SEVENTEEN HAS CHECK IN JAKARTA CITY - ' - \n\nThank you for participating and supporting us as a sponsor of this proj…
## 1018                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1019                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1020                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 1021                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1022                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1023                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1024                              RT @snwuchibuys: 🎀◠ wts lfb svt mingyu pc\n\n╰ ₱300, ₱280 if payo\n╰ rush selling ; onhand\n╰ prio payo \n╰ rcbyt\nhelping my friend! can do meet…
## 1025                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 1026                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1027                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1028                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1029                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1030                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 1031                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1032                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1033                                RT @kyeomcarthur: annyeong it's lee chan! \n\nso ayon, I'll be selling baby seventeen bubbleheads tom. 60 pesos each ^^ \n\nsadly, I wasn't abl…
## 1034                             RT @0617deulz: wts lfb\n\nsg2023 seungkwan memset tingi\n\n— feta\n— P190; dop once onhand \n\nt. seventeen svt season's greetings 2023 sg23 membe…
## 1035                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1036                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1037                               RT @Calli_x06: 💎SEVENTEEN BE THE SUN BULACAN FREEBIES💎\n\nHi carats, I will be giving these on December 17 \n\n- Open for all Carats\n- PLACE AN…
## 1038                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 1039                                    RT @meaniekive: 🛼 interest check ph .ᐟ  \n\n   ✦ Seventeen SG 2023 Tingi\n    ╰ ₱200/ member set \n    ╰ prio getting maknae / more members…
## 1040                            RT @tiny_wonu: [RAW] 2021 POWER OF LOVE CONCERT #세븐틴 #SEVENTEEN\n\nDownload [720p]:\n\nPart1: https://t.co/qpMWUDpKxd\nPart2: https://t.co/vecx2…
## 1041                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 1042                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 1043                             RT @hochimails: ꒰ TINGI ꒱ WTS LFB \n\n▪︎ SEVENTEEN SG2023\n✅ Digital Code Card + Mini poster = 300 set\n✅ PC + Fortune card = 350 set—2 members…
## 1044                              RT @haelygiveaway: Hael CHOEAEDOL Giveaway\n\n🍁 250 Hearts\n\n– Follow me with 🔔 \n– retweet and like my pin\n– retweet and like this\n– 200 drop…
## 1045                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 1046                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1047                                                            RT @rervoke: — we keep it colorful 🌈\n[ #CSD #CaratSelcaDay #SVT\n#Hoshi #SEVENTEEN #CARAT ] https://t.co/uYCkeVEqAo
## 1048                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1049                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1050                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1051                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 1052                                   RT @loeyshuaa: “Confuse Hoshi with clam Joshua ft hyper girl with protective women” 😋❤️ @pledis_17 \n\n#CSD #CaratSelcaDay #JOSHUA #HOSHI #SE…
## 1053                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1054                                                                 RT @Blossomseason_: 221213 #버논 #세븐틴 #vernon #seventeen\nMy black cat is rockstar.. https://t.co/9evJZZlapu
## 1055                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1056                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1057                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 1058                                  RT @neogotmybankx: 🎄 SVT Christmas PH GA 🧑🏻‍🎄\n\n🎁 1 winner of unsealed Face The Sun album (with inclusions) + a care package\n🎁 1 winner of A…
## 1059                                  RT @gyuilatte: We're on set, 10 minutes before photoshoot~\n\n#CSD #CaratSelcaDay #CARAT_SELCA_DAY  #MINGYU #SEVENTEEN https://t.co/TNJs83GsUy
## 1060                          RT @cheollie_hannie: WTS LFB PH\n\nSEVENTEEN SG2023 TINGI NETA\n\n— secured\n— dop, January 4\n— NO CANCELLATION\n— Batch 3 to be posted once 1&amp;2…
## 1061                                   RT @mavillera_ww: D-DAY🧧JEON WONWOO! BAG OF LUCK!\nhiii po! I made crocheted cat keychains tho superrr onti langg, paki-alagaan po ang mga p…
## 1062                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1063                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 1064                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1065                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1066                                     RT @min9yu_tttop: seventeen will perform in bulacan with their dancers..? oh my god pls CHEERS on the setlist 🕯️ \n\nhttps://t.co/Ty0HavRLgR
## 1067                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1068                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1069                                                   RT @lilamanayaka: just a forever thing i’ll do with you #csd #joshua #CaratSelcaDay #CARAT #SEVENTEEN https://t.co/XjYs2z2iYu
## 1070                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1071                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1072                                                                   RT @SvtShazam: #DREAM has surpassed 17,000 Shazams\n\n#세븐틴 #SEVENTEEN @pledis_17jp https://t.co/SODPsrQvAm
## 1073                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1074                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1075                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1076                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1077                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1078                                                                 RT @minobeach: let it snow ❄️❄️\n\n#CSD #CaratSelcaDay #DK #DOKYEOM #SEVENTEEN @pledis_17 https://t.co/C2hqfOmlLZ
## 1079                            RT @JunGyuHao_o: Wts lfb seventeen\n\nSEVENTEEN photocards\n\n1ST PIC = 130 EA\n2ND PIC = 50 EA\n\nMOD :FLASH / DIRECT JNT\nMOP : GCASH https://t.c…
## 1080                                 RT @Sugarbllxsom_: 🌟GIVEAWAY TICKET SEVENTEEN BE THE SUN BETS JKT JAKARTA ADDITIONAL SHOW🌟\n\n💙Blue F section for 1 winner💙\n- CARAT\n- Follow…
## 1081                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1082                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1083                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1084                                    RT @treasurecharts_: #TREASURE now joins NCT, Stray Kids, Seventeen, TXT, Twice and BTS as the only Korean acts that have spent 100 weeks w…
## 1085                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1086                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 1087                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1088                                                           RT @snowwonu: i’ll pick you up after work? \n\n#CARAT_SELCA_DAY #WONWOO #SEVENTEEN @pledis_17 https://t.co/0IuwRYJ5hT
## 1089                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 1090                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1091                          RT @cutiepie_niiki3: ✎ . . be the sun freebies ♡\n\n🐯 strictly 1:1\nloc: tba on d-day \nrt &amp; like\n\n♡ might add some more if I have some extra f…
## 1092                              RT @haelygiveaway: Hael CHOEAEDOL Giveaway\n\n🍁 250 Hearts\n\n– Follow me with 🔔 \n– retweet and like my pin\n– retweet and like this\n– 200 drop…
## 1093                                    RT @CaratLandPH: We have received reports of people sharing videos of SEVENTEEN recorded in places where they shouldn't be disturbed in the…
## 1094                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1095                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 1096                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1097                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 1098                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1099                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1100                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1101                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 1102                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1103                                RT @mylovejoshuji: Be The Sun in Bulacan\n• Shua Kit freebies 💗\n\nfor Joshushushus, I gotchu!\nlooking for Joshushushu moots! Let's meet on de…
## 1104                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1105                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1106                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1107                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1108                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1109                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1110                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1111                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 1112                                                                      RT @PT_KOREA: 221216 Jun Twitter Update\n \nhttps://t.co/YBgFsAlgXh\n \n#SEVENTEEN https://t.co/6oWBbzvVCU
## 1113                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1114                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1115                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1116                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1117                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1118                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1119                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1120                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1121                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1122                               RT @everywon_who: ︑︒⚬∙︓·⠄ Seventeen Be The Sun in Bulacan freebies \n\nHi, Carats! Together with @minwonshuji and @urmwlovr, we will be givin…
## 1123                              RT @SvtShazam: Shazam Daily Top 10 (2022.12.16)\n\n1. Cheers — 598\n2. HOT — 510\n3. Very Nice — 448\n4. _WORLD — 316\n5. Darl+ing — 275\n6. Fear…
## 1124                                    RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 1125                              RT @pledis_17: '_WORLD' MV Behind Sketch\n\n▶ https://t.co/HRfPjIQ3MX\n\n#SEVENTEEN #세븐틴\n#SECTOR17\n#_WORLD #SVT_WORLD https://t.co/YcPHyPLEcV
## 1126                                   RT @Akinscoded147: Please don't Fall sick in 🇳🇬 Nigeria o, all the good Doctors and Pharmacists are in the UK 🇬🇧...\n#16December Shola Allys…
## 1127                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 1128                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 1129                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1130                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1131                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1132                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1133                                    RT @fangurrl69: I'm living for this Kim Sejeong and Seventeen interactions during AAA. I mean, who wouldnt stare at her? Shes just so gorge…
## 1134                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1135                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1136                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1137                                    RT @kwonushii: Hello, just want to say I'm sorry in advance if you will receive the freebies without sleeves. I tried buying another wrappe…
## 1138                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 1139                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1140                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1141                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1142                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1143                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1144                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 1145                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1146                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 1147                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1148                                                            RT @rervoke: — we keep it colorful 🌈\n[ #CSD #CaratSelcaDay #SVT\n#Hoshi #SEVENTEEN #CARAT ] https://t.co/uYCkeVEqAo
## 1149                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1150                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1151                             RT @ta_vwvb_ri: Help RT and LIKE🙂\n[SEVENTEEN BE THE SUN Additional Show FREEBIES]\n\nSeungcheol Edition\nby \n@ta_vwvb_ri\n\n📍GBK Madya Stadium🇮🇩…
## 1152                                   RT @allforcaratsvt: btw may willing ba maki trade ng tix? like mas mababang row sanaa ! two adjacent seats\n\nLBA REG ROW 30+ to LBA REG ROW…
## 1153                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1154                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1155                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1156                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1157             RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nRECORD OF THE YEAR(Overseas)…
## 1158                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1159                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 1160                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 1161                              RT @kkumashane: SEVENTEEN Be the Sun Bulacan\nFREEBIES GIVEAWAY \n\n‣ official trading/photo cards\n‣ candy canes\n\ni will post on d-day where y…
## 1162                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 1163                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1164                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1165                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1166                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1167                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 1168                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1169                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1170                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 1171                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1172                                  RT @kidultjisoo: as a dinonara, this is the best thing that has ever happened to me.\n\n#Seventeen #SEVENTEEN_WORLDTOUR_BETHESUN #Seventeenin…
## 1173                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1174                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1175                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1176                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 1177                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 1178                                  RT @SvtShazam: "Hai Cheng" by #THE8 has surpassed 6,000 Shazams\n\nIt is his 2nd song to achieve this milestone and #SEVENTEEN's 7th most Sha…
## 1179                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1180                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 1181                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1182                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 1183                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1184                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1185                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1186                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1187                                RT @i8EISA: 🧺 . . wts lfb dk new heights pc .ᐟ\n       ✷ Php 125\n    ꔛ onhand and ready to ship\n       ✷ dop: payo / dec 20\n    ꔛ mod : flas…
## 1188                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1189                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1190                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1191                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1192                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 1193                              RT @gelgel_ly: You stole my heart, but i’ll let you keep it❤️\n#CaratSelcaDay #CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철  #choiseungcheol @pledis_17…
## 1194                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 1195                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1196                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1197                                RT @0604KMG: wts / want to sell lfb\n\nseventeen be the sun jakarta blue c\nprice: \n3.300K (carat membership) 1 tix (sampe fisik)\n3.400K (mcm…
## 1198                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1199                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1200                               RT @joshu_apollo: [OPEN SHARING HAPPY JOSHUA DAY BIRTHDAY BOX VER.2]\n\n‌outbox + q&amp;a photo book + keyring 195k \n‌birthday pop up card + pc k…
## 1201                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1202                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1203                              RT @kkumashane: SEVENTEEN Be the Sun Bulacan\nFREEBIES GIVEAWAY \n\n‣ official trading/photo cards\n‣ candy canes\n\ni will post on d-day where y…
## 1204                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1205                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1206                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1207                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1208                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 1209                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1210                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 1211                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1212                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1213                                 RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 1214                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1215                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1216                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1217                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1218                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1219                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1220                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 1221                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 1222                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 1223                               RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nseungkwan photocard set - ₱1,200\n\n- sector17 weverse album version (unscanned qr) + pob\n- fac…
## 1224                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1225                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1226                                                               RT @lovelyseokmine: See you tomorrow, my moon. 🌙✨️\n\n#CSD #CaratSelcaDay #JUN #SEVENTEEN https://t.co/TaGX2EwvzT
## 1227                            RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 1228                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 1229                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 1230                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1231                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 1232                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 1233                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1234                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 1235                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1236                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 1237                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1238                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1239                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 1240                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1241                                                            RT @rervoke: — we keep it colorful 🌈\n[ #CSD #CaratSelcaDay #SVT\n#Hoshi #SEVENTEEN #CARAT ] https://t.co/uYCkeVEqAo
## 1242                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1243                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1244                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1245                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1246                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1247                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1248                                            RT @hogyuhae: 🌿I’ll be your spring during any winter❄️\n\n#CaratSelcaDay #csd #seventeen #Woozi #세븐틴 #우지 https://t.co/Y1ke5bBQ8h
## 1249                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1250                                  RT @adorshu: be the sun in bulacan fan support / freebies by adorshu! ⭐️\n\nhi carats~ i’ll be giving away very limited seventeen ot13 hand b…
## 1251                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 1252                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1253                                                                         RT @moshimagu: see you next concert, seventeen! i love you. have fun tonight 🥺🤎 https://t.co/iznUdUbjXU
## 1254                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1255                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1256                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1257                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1258                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1259                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1260                             RT @won_wooniee: ❥ My sunshine, my happy place🍃🖤. \n\n-Salam damaii🙏🏻\n───●◎●───\n\n[#MINGYU #CaratSelcaDay #SEVENTEEN #KimMingyu #민규 #CSD @pled…
## 1261                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1262                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 1263                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1264                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1265                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 1266                                 RT @taecookies_v: ⛅️ #BeTheSuninBULACAN Freebie ☁️\n\n🔅RT and Like\n🔅Follow if u want to be armycarat moots 🤗\n🔅Reply ur fave svt gif + #MAMAVO…
## 1267                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1268                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 1269                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1270                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1271                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 1272                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1273                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1274                               RT @mochishuuu: "I don't think glasses look good on you, sir"\n\n#CSD #CaratSelcaDay #scoups #seventeen #세븐틴 @pledis_17 https://t.co/GyH3x8qc…
## 1275                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1276                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1277                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1278                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 1279                                    RT @hoshikenz17: Caratdeuls who are attending Bets Bulacan concert today, ENJOY LOVES! Desurv na desurv nyo lahat eto! Dont forget to drink…
## 1280                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1281                                  RT @shuasmwah: @Stutiyoon , Wanna go back in that restroom and not rest?\n\n#CaratSelcaDay #CSD #stuti #whims #SEVENTEEN @pledis_17 https://t…
## 1282                                                     RT @thinkabtjhc: seventeen's bucket list for 2023 @pledis_17\n\n#세븐틴 #에스쿱스 #정한 #민규 #원우 https://t.co/WdCo8YVOkk
## 1283                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1284                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1285                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 1286                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1287                                 RT @huiksn: huiksn creates\n— › publication material (pubmat)\n\ntags `• lf client graphic design edit editor layout art creative kpop concert…
## 1288                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1289                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1290                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1291                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1292                                    RT @kwonushii: Hello, just want to say I'm sorry in advance if you will receive the freebies without sleeves. I tried buying another wrappe…
## 1293                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1294                               RT @Genius_kor: #GeniusCharts | 2022 Year-End Genius Korea Chart | Top Male Groups\n1. Stray Kids\n2. BTS\n3. ENHYPEN\n4. TOMORROW X TOGETHER\n5…
## 1295                                 RT @hobisglow_: [ #BeTheSuninBULACAN Quick Giveaway ☀️ ]\n\n• 1 UBC Premium\n• Can also give ₱200 for Transpo/LNPH’s shuttle fee\n• RT this twe…
## 1296                                RT @wonranghxee: Let's go on more dates that require putting greens and golf clubs🏌🏻🤎🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #…
## 1297                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1298                                     RT @17dayph: SEVENTEEN\n7th Anniversary Cafe Open.\n\n📍WouldULike EWM\n\n#YourHappySmileIsMyDay\n#HappySEVENTEENDay https://t.co/fBfPWoqt8L
## 1299                                RT @shuasmwah: When we pull up, you know it's a shutdown 💋\n\n#CARATSELCADAY #CSD #JOSHUA #SEVENTEEN  #조슈아 @pledis_17 https://t.co/rgSk3oRn54
## 1300                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 1301                               RT @howoons: ☀️ SEVENTEEN Be The Sun in Bulacan ☀️\nHOWOO (soonhoon) AND WOOZI BANNER GIVEAWAY\n\n♡ giving away howoo and woozi banners &amp; a fe…
## 1302                                   RT @ihrtsvt13: Don’t make me choose yet😭\n#csd #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN @pledis_17 #MINGYU #minghao https://t.co/v3jllnOdp0
## 1303                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1304                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1305                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 1306                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1307                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1308                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 1309                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 1310                           RT @soongyuexe: help rt! #saiwts ph go 🇵🇭\n\n꒰ hoshi mingyu don’t wanna cry acrylic standee &amp; seventeen keyrings by @soongyu ꒱\n- ₱100/ stande…
## 1311                              RT @haelygiveaway: Hael CHOEAEDOL Giveaway\n\n🍁 250 Hearts\n\n– Follow me with 🔔 \n– retweet and like my pin\n– retweet and like this\n– 200 drop…
## 1312                                   RT @mavillera_ww: D-DAY🧧JEON WONWOO! BAG OF LUCK!\nhiii po! I made crocheted cat keychains tho superrr onti langg, paki-alagaan po ang mga p…
## 1313                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1314                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 1315                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1316                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1317                                  RT @svtmaknaefiles: Be the Sun Bulacan #SVTMaknaes banner giveaway 🦖🐢🍊\n\nIn collaboration with @madebydanyph, we will be giving away limited…
## 1318                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1319                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1320                                                          RT @mingyuk: styling’s hair\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #mingyu #민규 @pledis_17 https://t.co/WoMUkfSBOT
## 1321                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1322                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1323                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1324                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1325                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 1326                            RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 1327                               RT @pledis_17: [17'S] SEVENTEEN WORLD TOUR [BE THE SUN] IN MANILA\n\n#SVT_WORLDTOUR_BETHESUN\n#SEVENTEENinMANILA\n#BETHESUN_MANILA\n#BETHESUNwit…
## 1328                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 1329                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1330                               RT @_gumgummy: 𝑰'𝒍𝒍 𝒘𝒊𝒍𝒍 𝒏𝒆𝒗𝒆𝒓 𝒇𝒊𝒏𝒊𝒔𝒉\n 𝒇𝒂𝒍𝒍𝒊𝒏𝒈 𝒊𝒏 𝒍𝒐𝒗𝒆 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖.\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #승관 @pledis_17 https://t.co/Jlk…
## 1331                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 1332                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1333                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1334                            RT @btsvtnimaliel: ✿ Be The Sun in Bulacan Freebies \n\nDONE NA LAHAT!\nSee youuuuu na talaga! 💎\n\nInclu:\n- hand banner(3 ver)\n- candies\n- Offi…
## 1335                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1336                                   RT @mavillera_ww: D-DAY🧧JEON WONWOO! BAG OF LUCK!\nhiii po! I made crocheted cat keychains tho superrr onti langg, paki-alagaan po ang mga p…
## 1337                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1338                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1339                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1340                               RT @joshu_apollo: [OPEN SHARING HAPPY JOSHUA DAY BIRTHDAY BOX VER.2]\n\n‌outbox + q&amp;a photo book + keyring 195k \n‌birthday pop up card + pc k…
## 1341                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1342                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1343                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1344                           RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nmingyu photocard set - ₱2,650\n\n- rcbyt\n- ❌ sensitive collectors\n- flexi dop\n\nreply mine to cl…
## 1345                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 1346                                         RT @dokyeomfiles: 221213 Lee Seokmin with touch of cuteness today! 🥰\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/4RMc35INfi
## 1347                               RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nseungkwan photocard set - ₱1,200\n\n- sector17 weverse album version (unscanned qr) + pob\n- fac…
## 1348                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1349                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1350                                  RT @kinquedom: Hey carats, are you ready to drop it like HOT! HOT! HOT! BetsBulacan is just 5 days away. \n#SEVENTEEN\n#BeTheSuninBULACAN Fre…
## 1351                              RT @solastreo: dk and wonwoo forcibly making each other headbang during aju nice 😭😭😭\n\n#SEVENTEEN   #세븐틴   #BeTheSun\n#SEVENTEENinOAKLAND #BE…
## 1352                          RT @imnotyurgirl: I got my vitamin sea with my honey ♡\n#CSD #SEVENTEEN #세븐틴 #CaratSelcaDay #Dino #디노 #LeeChan #이찬  #CARAT #캐럿  @pledis_17 h…
## 1353                            RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 1354                              RT @etherealdk: —sharing pics bcs we can’t see each other yet ㅠㅠ\n\n[ #CSD #CaratSelcaDay #SEVENTEEN #dokyeom #도겸 @pledis_17 ] https://t.co/4…
## 1355                             RT @smplyfallinforu: ☀️ BE THE SUN in Bulacan ☀️\n\n💎 SCoups, Jeonghan, Woozi and Joshua birthday freebies 🍒😇🍚🦌\n\nDecember 17, 2022\nTime &amp; Loc…
## 1356                            RT @taeramisoo: BE THE SUN ; BULACAN\nSEVENTEEN FANSUPPORT ˗ˋˏ ♡ ˎˊ˗\n\nCONCERT FREEBIES by: taeramisoo\n\n2 random pc\nmoon junhui banner !!!\n\n#…
## 1357                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1358                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1359                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 1360                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1361                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1362                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 1363                                  RT @luv__wonu: mirror pics are the best, argue with the wall if you disagree\n\n#CaratSelcaDay #carat #SEUNGKWAN #SEVENTEEN #CSD @pledis_17 h…
## 1364                                         RT @gyubasic: —i look over at you and see sunshine 🌞\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN @pledis_17 https://t.co/1TCxyV8FCg
## 1365                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1366                                                        RT @xum8nghao_o2: [SEVENTEEN WEIBO]\n221126\n#THE8 update \n\n#SEVENTEEN #SVT_UPDATES @pledis_17 https://t.co/RNpSu1yE8x
## 1367                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1368                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1369                                                            RT @cutelikejoon: just trying something new 📸#CaratSelcaDay #CSD #SEVENTEEN #THE8 @pledis_17 https://t.co/ICxYsVIQqd
## 1370                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 1371                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1372                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1373                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1374                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1375                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1376                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 1377                                RT @shuasmwah: When we pull up, you know it's a shutdown 💋\n\n#CARATSELCADAY #CSD #JOSHUA #SEVENTEEN  #조슈아 @pledis_17 https://t.co/rgSk3oRn54
## 1378                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1379                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1380                             RT @won_wooniee: ❥ My sunshine, my happy place🍃🖤. \n\n-Salam damaii🙏🏻\n───●◎●───\n\n[#MINGYU #CaratSelcaDay #SEVENTEEN #KimMingyu #민규 #CSD @pled…
## 1381                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1382                                          RT @americaprince__: 𝘗𝘏𝘖𝘛𝘖𝘉𝘖𝘛𝘏 𝘞𝘐𝘛𝘏 𝘏𝘐𝘔 📸\n\n#CSD #CaratSelcaDay #JOSHUA #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/k1F4VBvIhp
## 1383                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1384                                 RT @Taejoooning: sometimes he lets me borrow his bag 🐸\n\n#CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/ZiihgdtaW9
## 1385                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1386                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1387                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1388                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1389                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1390                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1391                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 1392                            RT @mownchild: —An art gallery could never be as unique as you.\n\n#CSD #CaratSelcaDay #MINGYU #김민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/M…
## 1393                                   RT @k_miguu: - Your memory feels like home to me. So whenever my mind wanders, it always finds it's way back to you. \n\n#CSD #CaratSelcaDay…
## 1394                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1395                              RT @itsmeNeryJoy: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💜💚\n\n- mbf, like &amp; rt this tweet \nෆ╹ .̮ ╹ෆ\n- random…
## 1396                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1397                                    RT @CaratLandPH: We have received reports of people sharing videos of SEVENTEEN recorded in places where they shouldn't be disturbed in the…
## 1398                                                                   RT @yurlvme: date with gyu 😋💗\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 https://t.co/Y66KywHogR
## 1399                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1400                                    RT @CaratLandPH: Before this day ends (and before the dday begins), we would like to take this time to appreciate all CARATS who support us…
## 1401                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1402                  RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 1403                            RT @btsvtnimaliel: ✿ Be The Sun in Bulacan Freebies \n\nDONE NA LAHAT!\nSee youuuuu na talaga! 💎\n\nInclu:\n- hand banner(3 ver)\n- candies\n- Offi…
## 1404                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1405                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1406                                  RT @lisamanobal_327: The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nTXT…
## 1407                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1408                                                                                    RT @CaratLandPH: Happy #CaratSelcaDay, CARATS! #SEVENTEEN @pledis_17 https://t.co/I5e0SjnGDF
## 1409                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 1410                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1411                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1412                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1413                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 1414                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1415                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1416                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1417                             RT @smplyfallinforu: ☀️ BE THE SUN in Bulacan ☀️\n\n💎 SCoups, Jeonghan, Woozi and Joshua birthday freebies 🍒😇🍚🦌\n\nDecember 17, 2022\nTime &amp; Loc…
## 1418                                    RT @madebydanyph: ☀️ BE THE SUN FREEBIES ☀️\n\nHi~ Will be giving away limited OT13, Maknae Line, and Vernon banners on December 17 @ the Phi…
## 1419                                                        RT @BeryVery_: 2023 Seventeen Season's Greetings Unboxing\nhttps://t.co/RIznev2zXh\n\n#SEVENTEEN https://t.co/AldQyaudlt
## 1420                             RT @dnonarats: #CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN #세븐틴 @pledis_17 \n\nthe photographer            his favorite view https://t.co/G9y…
## 1421                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 1422                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 1423                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 1424                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1425                                     RT @mochipalette: I'M GONNA FREAKING CRY WOOZI'S SO COOL FOR THIS!!!! AND ALSO DKHDKDHDKD MY BILLLIE X SEVENTEEN 🥹😭 https://t.co/pjt9mzSuL0
## 1426                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1427                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1428                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1429                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1430                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 1431                                  RT @miguhearts: 🧸🎀🪞“Give me a poem to tell about me” 💐🫧🗯\n\n[#CSD #CaratSelcaDay #MINGYU #민규 #SEVENTEEN @pledis_17 ] https://t.co/wjPrxrZJmZ
## 1432                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1433                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1434                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1435                           RT @previousindex: me and kyeomie in busan :) first carat selca day! \n\n#CaratSelcaDay #CSD #dokyeom #seventeen #svt #carat #도겸 #캐럿 #세브틴 htt…
## 1436                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 1437                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1438                        RT @httpdkesc: ෆ SEVENTEEN Be The Sun in Bulacan Freebie ෆ \n\nHi, carats! I'll be giving away freebies on d-day! Fan Support for #도겸 &amp; #에스쿱스…
## 1439                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1440                            RT @btsvtnimaliel: ✿ Be The Sun in Bulacan Freebies \n\nDONE NA LAHAT!\nSee youuuuu na talaga! 💎\n\nInclu:\n- hand banner(3 ver)\n- candies\n- Offi…
## 1441                                     RT @shuabambies: you know, without you i'm so lonely\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #DK #도겸 @pledis_17 https://t.co/WywsNdRV0q
## 1442                                                                               RT @CHERRYHAE17: their record hasn't been broken yet.  #SEVENTEEN #세븐틴 https://t.co/6YlP8EjxiB
## 1443                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1444                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 1445 RT @dreamofyuu: 『 ‘You’re drunk’ \n  ‘I’m not’\n  ‘You’re drunk’\n  ‘I’m not’\n  ‘You’re not’\n ‘I’m drunk- fuck u’  』\n   \n   ˚✧₊⁎⁺˳✧༚\n\n________…
## 1446                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1447                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1448                                                                                                                            RT @Rainerie_: seventeen by heathers is SO C RAINDUO
## 1449                                  RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 1450                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1451                                   RT @wxffly: rival in public, lover in private 😎\n\n#CSD #CaratSelcaDay #SEVENTEEN #SEUNGKWAN #세븐틴 #승관 @pledis_17 https://t.co/1CBV24V9Hl
## 1452                            RT @btsvtnimaliel: ✿ Be The Sun in Bulacan Freebies \n\nDONE NA LAHAT!\nSee youuuuu na talaga! 💎\n\nInclu:\n- hand banner(3 ver)\n- candies\n- Offi…
## 1453                             RT @allmylovetosvt: appreciating the view with him 🌆🤍\n\n#csd #caratselcaday\n#the8 #minghao #디에잇\n#seventeen @pledis_17 https://t.co/V8Zx45n1hh
## 1454                                  RT @svtcontents: @pledis_17 🎥 SEVENTEEN winning the AAA Artist of The Year (Singer of The Year) DAESANG at the 2022 Asia Artist Awards!\n\nht…
## 1455                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1456                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1457                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1458                                 RT @4MNGHAO: ꒰🌷꒱ i was living in a moment but i met you. and i realized that everything has a reason♡࿐\n #CSD #CaratSelcaDay #SEVENTEEN #JUN…
## 1459                              RT @feat_annaaa: helping a friend !\nwts lfb \n\nubc reg 430 row 98\nLONG DOP \n2k (bought online during carat-mem presale)\ndp : 500-600\nrembal…
## 1460                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 1461                                  RT @officialcharts: It begs to stick around... 🤘\n\nSam Fender's (@samfendermusic) unstoppable Seventeen Going Under gets a new lease of life…
## 1462                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1463                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 1464                                   RT @CoupsOfMinWon: ☀️ Be The Sun in Bulacan ☀️\n                                  Freebies\n\nCarats!! We will be giving away freebies on d-da…
## 1465                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1466                                                                                                                            RT @Rainerie_: seventeen by heathers is SO C RAINDUO
## 1467                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1468                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 1469                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1470                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1471                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1472                                     RT @xuminghao_ok: may want ba ng minghao banner ko? 🥹 i will also give some random freebies like candy, unofficial pc, and more. see you 😊…
## 1473                            RT @pottee1707: it was so wrong of the cameraman to zoom out at this SPECIFIC mingyu hot part💔\n\n#SEVENTEEN #세븐틴 #AAA2022 #민규\n@pledis_17 #SV…
## 1474                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1475                                                                  RT @wnwoostar: my sunshine and i 💟 ! \n#CSD #CaratSelcaDay #DOKYEOM #SEVENTEEN #디에잇 https://t.co/njvPa9YJiV
## 1476                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1477                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1478                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1479                                          RT @americaprince__: 𝘗𝘏𝘖𝘛𝘖𝘉𝘖𝘛𝘏 𝘞𝘐𝘛𝘏 𝘏𝘐𝘔 📸\n\n#CSD #CaratSelcaDay #JOSHUA #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/k1F4VBvIhp
## 1480                                    RT @TF_Moments: in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callback to t…
## 1481                     RT @_tappiioca: ✧ BE THE SUN IN BULACAN FREEBIES ✧\n\n• RT &amp; Like\n• Location tba\n• Open for Team Con &amp; Team Labas\n• LETS TRADE 🥺\n \nMight incl…
## 1482                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1483                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1484                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1485                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1486                                                                   RT @yurlvme: date with gyu 😋💗\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 https://t.co/Y66KywHogR
## 1487                                 RT @NyxellHyung: 💎 BETS in Bulacan Freebies 💎\nHenlo Carats, its me ya boi again!!\n\nI'll be giving out MinWon Banners and SVT OT13 GOSE Name…
## 1488                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1489                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1490                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1491                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1492                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 1493                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 1494                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 1495                            RT @roserenity0ung: 225 𝒅𝒂𝒚𝒔 𝒘𝒊𝒕𝒉 "𝒘"\nhe told me to do "wonwoo's shaking camera pose?"😆\n#CaratSelcaDay #CSD #세븐틴 \n#원우 #WONWOO #SEVENTEEN @p…
## 1496                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1497                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1498                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1499                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1500                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 1501                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1502                                    RT @kwonushii: Hello, just want to say I'm sorry in advance if you will receive the freebies without sleeves. I tried buying another wrappe…
## 1503                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1504                                  RT @BeySVTColombia: BE THE SUN UPDATE \n\nThe Day has come!!! #SEVENTEEN is set to become the First Korean Music act to perform at the bigges…
## 1505                              RT @sarahoshuji: ✨#Seventeen Be The Sun in Bulacan Fan Support/Freebies✨\n\nHello Caratdeuls! \n\n@nilaj_tee, @aidan_andrea, and I are giving a…
## 1506                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1507                            RT @mgyuppy: ( 03 : 00 AM ) . \n- you're are the reason that i lie awake ;\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 @pledis_17 https…
## 1508                                    RT @ziaxnishi: ☀️ seventeen be the sun in bulacan freebies ! ☀️\n\nhii! we’ll be giving out freebies on betsbul, december 17! :)) see picture…
## 1509                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 1510                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1511                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1512                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 1513                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1514                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1515                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 1516                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1517                             RT @cuipdz: wts lfb ph \n\n💉💒 jeonghan sakristan set\n ₱900 + pf, dop 1 week❕\n💬 all onhand \n\n☆ seventeen social club ssc al fine jun sector 17…
## 1518                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1519                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 1520                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1521                               RT @WorldwideCarats: Flashback Friday\n[170715]\n\nSeventeen - Escaping the City\n\n@pledis_17 #SEVENTEEN\n#MTVLAKPOPSEVENTEEN \n#PremiosMTVMiaw…
## 1522                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1523                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1524                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1525                                                                                                   RT @ann_yeonggggggg: It’s d-day! #BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN
## 1526                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1527                                            RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 1528                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1529                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1530                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1531                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 1532                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1533                                                                                               RT @tinkswonu: #원우 wonwoo for seventeen ViVi magazine 💗 https://t.co/oHRCCfKlrG
## 1534                            RT @wonuahcart: 🌷 Be The Sun Bulacan Freebies 🌷\n\n♡ rt and like this tweet to spread !\n♡ mfb^^ lets be moots hehe\n♡ open for team labas &amp; te…
## 1535                                                                 RT @Blossomseason_: 220924 My cute little black cat..\n#버논 #세븐틴 #vernon #seventeen https://t.co/0MFh3KP1rf
## 1536                             RT @won_wooniee: ❥ My sunshine, my happy place🍃🖤. \n\n-Salam damaii🙏🏻\n───●◎●───\n\n[#MINGYU #CaratSelcaDay #SEVENTEEN #KimMingyu #민규 #CSD @pled…
## 1537                                   RT @ChaeHanCheol: Jo Eulho and Cel Brity will be roaming around PH Arena to give 30+ FREEBIES (Syempre hihingi din kami!)\n\n*also check the…
## 1538                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1539                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1540                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1541                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1542                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1543                                                                  RT @wnwoostar: my sunshine and i 💟 ! \n#CSD #CaratSelcaDay #DOKYEOM #SEVENTEEN #디에잇 https://t.co/njvPa9YJiV
## 1544                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1545                         RT @pledis_17: [17'S 승관] A surprise present for all CARATs enjoying SEUNGKWAN's "As It Was" @Spotify\n\n#SEUNGKWAN #승관\n#SEVENTEEN #세븐틴\n#Spoti…
## 1546                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1547                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 1548                                                                 RT @minobeach: let it snow ❄️❄️\n\n#CSD #CaratSelcaDay #DK #DOKYEOM #SEVENTEEN @pledis_17 https://t.co/C2hqfOmlLZ
## 1549                                    RT @TF_Moments: in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callback to t…
## 1550                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1551                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1552                           RT @dollsxngie: Reply with all kpop groups that you stan from oldest to latest:-\n\nMine:\n1. Exo\n2. Nct\n3. Got7\n4. X1\n5. Seventeen\n6. Ateez\n7…
## 1553                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1554                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1555                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1556                               RT @pledis_17: 준 ‘LIMBO’ MV Behind Sketch\n\n▶https://t.co/D30hvp9R8e\n\n#JUN #준\n#SEVENTEEN #세븐틴\n#LIMBO #JUN_LIMBO https://t.co/kbz7IEebNi
## 1557                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1558                                                                                                 RT @iveskiss: AYOOOOOOO SEVENTEEN RIGHT HERE!!!!!!!! 🤙🤙 https://t.co/poEICi25hI
## 1559                                                                         RT @moshimagu: see you next concert, seventeen! i love you. have fun tonight 🥺🤎 https://t.co/iznUdUbjXU
## 1560                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1561                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1562                             RT @pledis_17: 'SEVENTEEN IN THE SOOP MAKING PHOTOBOOK' PREVIEW Cuts #1\n\nRelease\n[GL] 2022.11.10 (THU)\n[JP] 2022.11.16 (WED)\n\n#SEVENTEEN #세…
## 1563                                 RT @HHGives: CHOEAEDOL Giveaway poll 🍲\n\n🗳 300 hearts\n\n▪︎ follow @HHGives with 🔔\n▪︎ Like, rt my pin tweet\n▪︎ Like and rt this\n▪︎ 200 drop pr…
## 1564                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1565                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1566                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. when did you feel the happiest recently? \n\n🦌: the happiest....\n😇: i feel so happy becau…
## 1567                             RT @pledis_17: 'SEVENTEEN IN THE SOOP MAKING PHOTOBOOK' PREVIEW Cuts #1\n\nRelease\n[GL] 2022.11.10 (THU)\n[JP] 2022.11.16 (WED)\n\n#SEVENTEEN #세…
## 1568                             RT @pledis_17: 'SEVENTEEN IN THE SOOP MAKING PHOTOBOOK' PREVIEW Cuts #1\n\nRelease\n[GL] 2022.11.10 (THU)\n[JP] 2022.11.16 (WED)\n\n#SEVENTEEN #세…
## 1569                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 1570                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1571                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 1572                             RT @pledis_17: 'SEVENTEEN IN THE SOOP MAKING PHOTOBOOK' PREVIEW Cuts #1\n\nRelease\n[GL] 2022.11.10 (THU)\n[JP] 2022.11.16 (WED)\n\n#SEVENTEEN #세…
## 1573                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1574                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1575                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1576                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1577                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1578                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1579                             RT @brightestmo_on: Last night was fun. Thanks, Mingyu ^__^\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 #SECTOR17 #_WORLD @pled…
## 1580                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 1581                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1582                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1583                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 1584                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1585                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 1586                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1587                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1588                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 1589                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1590                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1591                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1592                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1593                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1594                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1595                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 1596                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1597                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1598                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 1599                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1600                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1601                                                                      RT @pledis_17: [17'S JUN] Photo by PowerCircles 📸\n\n#JUN #준 \n#SEVENTEEN #세븐틴 https://t.co/5sPn9Pp9GI
## 1602                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 1603                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1604                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1605                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1606                             RT @pledis_17: 'SEVENTEEN IN THE SOOP MAKING PHOTOBOOK' PREVIEW Cuts #2\n\nRelease\n[GL] 2022.11.10 (THU)\n[JP] 2022.11.16 (WED)\n\n#SEVENTEEN #세…
## 1607                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1608                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1609                                                 RT @wonuversee: matchy with wonu 🫶🏻 \n\n#CaratSelcaDay #CSD #WONWOO #원우 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/y6wg3sw8uy
## 1610                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1611                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1612                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1613                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1614                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1615                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 1616                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1617                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1618                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1619                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 1620                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1621                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1622                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1623                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1624                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1625                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 1626                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1627                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 1628                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1629                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1630                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1631                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 1632                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1633                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1634                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1635                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1636                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1637                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1638                                    RT @billboard: The in-demand hitmaker shares the stories behind songs he crafted with #BTS' Jin, SEVENTEEN, NCT 127 and more https://t.co/E…
## 1639                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 1640                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1641                                  RT @officialcharts: It begs to stick around... 🤘\n\nSam Fender's (@samfendermusic) unstoppable Seventeen Going Under gets a new lease of life…
## 1642                                 RT @fortbzs: hello rush wts lfb help rt\n\nseventeen svt be the sun bulacan concert \n- UBC REG 433 Row 102 \n- ₱1,600 (orig ₱1,850) can lower…
## 1643                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 1644                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1645                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1646                                 RT @fortbzs: hello rush wts lfb help rt\n\nseventeen svt be the sun bulacan concert \n- UBC REG 433 Row 102 \n- ₱1,600 (orig ₱1,850) can lower…
## 1647                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 1648                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1649                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1650                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 1651                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 1652                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 1653                                 RT @CaratLandPH: LOOK UP CARATS!👀\n\nA rainbow is here to greet us this early morning.🌈 \n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https:/…
## 1654                                    RT @prettyhotbooks: About Avery's Ghost\nSeventeen-year-old Evelyn dreams of a career in botany, while acting as an uneasy intermediary for…
## 1655                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1656                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1657                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 1658                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1659                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1660                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 1661                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1662                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1663                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1664                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1665                                    RT @kwonushii: Hello, just want to say I'm sorry in advance if you will receive the freebies without sleeves. I tried buying another wrappe…
## 1666                                         RT @devluvschwe: sweater + glasses gf and hoodie + glasses bf #csd #CaratSelcaDay #VERNON #Seventeen @pledis_17 https://t.co/fvGLOBFnOW
## 1667                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1668                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1669                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1670                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1671                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 1672                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1673                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1674                                  RT @officialcharts: It begs to stick around... 🤘\n\nSam Fender's (@samfendermusic) unstoppable Seventeen Going Under gets a new lease of life…
## 1675                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1676                               RT @cheonsapower: Loeee PH carats! ⭐️ These Seventeen DIY beads will be for ✨giveaway✨on December 17!\n\n- just kindly help like and rt\n- wil…
## 1677                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1678                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1679                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 1680                                    RT @TF_Moments: in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callback to t…
## 1681                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 1682                                   RT @loeyshuaa: “Confuse Hoshi with clam Joshua ft hyper girl with protective women” 😋❤️ @pledis_17 \n\n#CSD #CaratSelcaDay #JOSHUA #HOSHI #SE…
## 1683                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1684                                                                               RT @dillikahoshi: #hoshi #호시: sawar loon\n#seventeen #세븐틴 @pledis_17 https://t.co/co6nYfBUrb
## 1685                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1686                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1687                           RT @haymebuys: ❤ Be The Sun Bulacan Freebies ❤\n\nFree Jun, Jeonghan, DK, and Minwon hand banners on Dec 17!\n\nTo claim:\nLike &amp; rt\nFollow for…
## 1688                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1689                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1690                                     RT @SVT_Fancafe: [#JEONGHAN🌟 Weverse]\n221217 comment\n\n➸ That's upsetting \n\n#정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/inrQngDjf0
## 1691                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1692                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1693                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1694                                  RT @multi_neo_: 💎Be the Sun in Bulacan FREEBIES💎\n\nHello, CARATS! Me and @haymebuys will give free #Jun, #Jeonghan, #DK, #Minwon, #Mingyu an…
## 1695                                                               RT @gyumedia: "seventeen woozi-mingyu, "mingyu-ya are you alright...?!"\n\nthe headline 😭 https://t.co/GkfYYYU4NX
## 1696                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1697                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1698                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1699                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1700                              RT @kkumashane: SEVENTEEN Be the Sun Bulacan\nFREEBIES GIVEAWAY \n\n‣ official trading/photo cards\n‣ candy canes\n\ni will post on d-day where y…
## 1701                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 1702                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 1703                                RT @jhel172: Be The Sun in Bulacan FREEBIES \n\nHi guys 🍒 I will be giving away Scoupd Hand Banner , Pc , Photostrips.\n\n° follow for updates;…
## 1704                                    RT @TF_Moments: in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callback to t…
## 1705                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1706                            RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 1707                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 1708                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1709                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 1710                              RT @shannabonbon: &lt;&lt; 𝚗𝚘 𝚠𝚘𝚛𝚍𝚜 𝚊𝚛𝚎 𝚎𝚗𝚘𝚞𝚐𝚑 𝚏𝚘𝚛 𝚢𝚘𝚞 ♡ &gt;&gt;\n\n{ #CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 } https://t.co/B3KC2OJvma
## 1711                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1712                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 1713                                 RT @SheepEnDiamant: +fully shown off."\n\nFive entries for SEVENTEEN!! Five!!! \nI'm so so proud of all the recognition Face The Sun and Secto…
## 1714                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1715                                RT @gottamarryem17: 𝑺𝒕𝒓𝒐𝒍𝒍𝒊𝒏𝒈 𝒂𝒓𝒐𝒖𝒏𝒅 𝒊𝒄𝒐𝒏𝒊𝒄 𝒑𝒍𝒂𝒄𝒆𝒔 𝒘𝒉𝒊𝒍𝒆 𝒄𝒂𝒑𝒕𝒖𝒓𝒊𝒏𝒈 𝒎𝒆𝒎𝒐𝒓𝒊𝒆𝒔\n— 𝑶𝒍𝒅 𝒃𝒖𝒕 𝒈𝒐𝒍𝒅\n\n#CSD #CaratSelcaDay\n#JOSHUA #SEVENTEEN @pledis_…
## 1716                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1717                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1718                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 1719                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1720                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1721                                RT @_withwonwoo: WTS LFB HELP RT\nSEVENTEEN photocards pc selling for SET ONLY\n\n2500 pesos, payo. Meet up tomorrow sa bets bulacan\nyou may l…
## 1722                               RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 1723                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1724                                              RT @bjyoungfiles: yep, just the two of us\n\n#CSD #CaratSelcaDay #HOSHI #호시 #SEVENTEEN #CARAT @pledis_17 https://t.co/XDhnHUdHNH
## 1725                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1726                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 1727                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1728                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 1729                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1730                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1731                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1732                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1733                                   RT @m1n9yu_ku: Let them know about us. \n\n#CSD #CaratSelcaDay \n#THE8 #MINGHAO #명호 \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/YkYFpZIqe3
## 1734                                     RT @SVT_Fancafe: [#JEONGHAN🌟 Weverse]\n221217 comment\n\n➸ That's upsetting \n\n#정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/inrQngDjf0
## 1735                                RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' SPECIAL CLIPS\n\nVOD Release NOW\nGLOBAL ▶ https://t.co/ymf47V9LjQ\nJAPAN ▶ https…
## 1736                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 1737                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1738                                                              RT @yamarie_sjsvt: wahh siwon congratulating seventeen omg super seventeen moment yass 😍❤️\nhttps://t.co/iSuiJQajmY
## 1739                               RT @minwonshuji: ︑︒⚬∙︓·⠄ Seventeen Be The Sun in Bulacan freebies \n\nHi, Carats! Together with @urmwlovr and @everywon_who, we will be givin…
## 1740                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1741                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 1742                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1743                                RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 1744                         RT @softpsyche: BE THE SUN BULACAN\njoshua fansupport \n\n✶ hand banners\n✶ rose quartz and serenity cookies\n   — rt &amp; like to spread\n\nread bel…
## 1745                                     RT @smellarbee: you are my escape babe 🥀 \n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 @pledis_17 https://t.co/FRBGDF5MQd
## 1746                                    RT @TF_Moments: in the DOTM prequel comic, Wheeljack notes he is warping space and time in "seventeen dimensions", a deep-cut callback to t…
## 1747                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 1748                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1749                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1750                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 1751                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1752                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 1753                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 1754                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1755                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1756                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1757                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 1758                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1759                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1760                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 1761                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1762                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 1763                                  RT @naurmatt: Not selca, but I think we've some vibes. So, here we go and maybe it's destiny 👀\n\np.s: my pict taken so far before I knew sev…
## 1764                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1765                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1766                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1767                                                   RT @notdandelion: PUT YOUR MOTHER FUCKER HANDS UP\n\n#CSD #HOSHI #CaratSelcaDay @pledis_17 #SEVENTEEN https://t.co/6lZ5cvS68r
## 1768                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1769                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1770                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1771                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1772                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1773                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1774                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1775                                  RT @PROTECT_SVT: [NOTICE]\n\nTo all of the attendees of Be the Sun in BULACAN, kindly keep PLEDIS' fan etiquette rules in mind; let us keep t…
## 1776                                                                   RT @koreansales_twt: &lt;Your Choice&gt; by #SEVENTEEN has surpassed 1.5 million copies sold on Circle Chart.
## 1777                          RT @imnotyurgirl: I got my vitamin sea with my honey ♡\n#CSD #SEVENTEEN #세븐틴 #CaratSelcaDay #Dino #디노 #LeeChan #이찬  #CARAT #캐럿  @pledis_17 h…
## 1778                                                                                             RT @jjeoshuu: it's true that the sky is jealous everytime carats and seventeen meet
## 1779                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1780                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1781                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1782                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1783                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1784                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 1785                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 1786                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1787                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 1788                                RT @1OO4615: Wts / want to sell\nCheering kit slogan only jeonghan, hoshi seventeen\n• Jeonghan by @ mmm_yjh \n• Hoshi by @ Hoshi_Appeal\nTakea…
## 1789                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 1790                                              RT @bjyoungfiles: yep, just the two of us\n\n#CSD #CaratSelcaDay #HOSHI #호시 #SEVENTEEN #CARAT @pledis_17 https://t.co/XDhnHUdHNH
## 1791                         RT @moonjunwoo: 🔆BE THE SUN BULACAN FREEBIES🔆\n📌 RT &amp; Like\n📌Open for team con &amp; team labas\n📌Wonwoo Polaroids to be given to 13 ppl who has t…
## 1792                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1793                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 1794                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 1795                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1796                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 1797                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1798                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1799                             RT @segyeshiimo: wts / lfb rush selling\nseventeen bulacan bets ticket\n\nLBB 216 / lowerbox \n\nog price 10, 700\n\nselling for a price lower tha…
## 1800                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1801                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1802                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1803                                                               RT @min9yu_tttop: seventeen departure for be the sun in bulacan ! safe skies @pledis_17 ♡ https://t.co/K5SyKxITPt
## 1804                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1805                                   RT @kartells: hello, carats!♡\n   a just month away before we meet our beloved seventeen ♡ i will be giving a soonwoohao fanart freebies for…
## 1806                                                  RT @mezxig: « you are my crush i got a crush on you🤍 »\n\n#CaratSelcaDay #SEVENTEEN #SCOUPS @pledis_17 https://t.co/r0GyRmf4AT
## 1807                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1808                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1809                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1810                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 1811                               RT @TWICE_STAT: 🇰🇷🇯🇵 Best-selling #KPOP acts in 2022:\n\n01. SEVENTEEN — 5,943,239\n02. Stray Kids — 5,847,56\n03. BTS — 5,796,368\n04. NCT DREA…
## 1812                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1813                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1814                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 1815                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1816                                RT @wonranghxee: Let's go on more dates that require putting greens and golf clubs🏌🏻🤎🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #…
## 1817                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 1818                                 RT @NyxellHyung: 💎 BETS in Bulacan Freebies 💎\nHenlo Carats, its me ya boi again!!\n\nI'll be giving out MinWon Banners and SVT OT13 GOSE Name…
## 1819                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 1820                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1821                                     RT @babycrush_: "Even if I give you everything in the world, I will never change, Promise me eternity, If you feel the same way as I do" -…
## 1822                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 1823                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1824                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1825                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1826                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1827                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1828                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1829                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 1830                            RT @_jinwifeu_: ఇ BE THE SUN in BULACAN freebies ఇ\n\nHi guys! I will be giving away keychains/keyholder on bets bulacan d-day! \n\n⇢ rt &amp; like…
## 1831                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1832                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1833                                RT @ainiarshy: 🌞 Freebies Seventeen Be The Sun Additional Show in Jakarta 🌞\nBy @minemine_xx @ainiarshy\n\n📍 GBK Madya Stadium\n🗓 Dec, 28th 202…
## 1834                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 1835                                    RT @envimediaco: Calling all sneakerheads! 👟👀 If you’re looking for new kicks, check out how you can steal #SEVENTEEN’s #Hoshi’s style from…
## 1836                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1837                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 1838                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1839                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1840                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 1841                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1842                                                                        RT @_leathv_: With the love of my life 🤍 #CaratSelcaDay #CSD #MINGHAO #SEVENTEEN https://t.co/s5SiJkzrON
## 1843                                    RT @rvsvtfiles: throwback to red velvet and seventeen's red and black outfits in last year's, 2021, kbs gayo daechukje https://t.co/On48X8L…
## 1844                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 1845                                     RT @wonhaozones: Minghao from the 2023 Season's Greetings!\n\ncr. THEtothe8ight\n\n#THE8 #디에잇 #SEVENTEEN #세븐틴 https://t.co/35pJa8xEHP
## 1846                          RT @boosreason: 💛 our hearts, timeless\n      our love is timeless\n         we are timeless 💙\n\n[#SEVENTEEN #CaratSelcaDay #CSD #세븐틴 #부승관 #SE…
## 1847                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1848                                                                                               RT @tinkswonu: #원우 wonwoo for seventeen ViVi magazine 💗 https://t.co/oHRCCfKlrG
## 1849                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1850                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1851                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1852                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 1853                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1854                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 1855                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1856                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1857                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 1858                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 1859                                    RT @CaratLandPH: Before this day ends (and before the dday begins), we would like to take this time to appreciate all CARATS who support us…
## 1860                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 1861                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1862                                                RT @cherishthe17: Seventeen's 2023 Bucket list\n\nWonwoo recommended overseas TTT\n\n😭😭 Wonwoo best boy\nhttps://t.co/btb2FB9QTG
## 1863                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 1864                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1865                                 RT @shuasblossom: Oh, Christmas lights\nLight up the street\nLight up the fireworks in me\nMay all your troubles soon be gone\nThose Christmas…
## 1866                                              RT @svt_verse: [#디노 🌟 221215] 2:50 PM KST\n\n#DINO: My favorite winter🌨️\n\n@pledis_17 #SEVENTEEN #세븐틴 https://t.co/DQ5Miftaxl
## 1867                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 1868                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1869                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 1870                       RT @MsKwon_15: "Three friends, one heart."\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #JEONGHAN #정한 #JOSHUA #조슈 #SEVENTEEN #세븐틴 @pledis_17 https://…
## 1871                            RT @vitamingyuuu: best stress buster?\na video call with him.\n\n#CSD #CaratSelcaDay #WOOZI #우지 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/fN6zRv…
## 1872                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1873                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1874                                                                            RT @absterwebby: they did highlight and now i can die happy #LA3C #SEVENTEEN https://t.co/9yvxLL4lDg
## 1875                                RT @_bubblethe8: [ Seoul Music Awards ] \n\nThis is a REMINDER that we STILL HAVE ONGOING VOTING. Everyone can VOTE\n\nPLEASE KEEP COLLECT GOLD…
## 1876                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1877                                                                                                         RT @absterwebby: get it deekay #LA3C #SEVENTEEN https://t.co/0SFZPCcGwI
## 1878                                                                                  RT @absterwebby: you better hit those notes woozi!!!! #LA3C #SEVENTEEN https://t.co/u2MJ7neoIC
## 1879                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1880                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 1881                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 1882                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1883                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 1884                                  RT @lisamanobal_327: The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nTXT…
## 1885                                             RT @xum8nghao_o2: [SEVENTEEN INSTAGRAM]\n221203\ndk_is_dokyeom posted\n\n#SEVENTEEN #SVT_UPDATES @pledis_17 https://t.co/wTBMimmIW5
## 1886                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1887                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1888                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 1889                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1890                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 1891                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1892                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 1893                                                                                                     RT @gentleshuan: RAINBOW FOR SEVENTEEN AND CARATS 🌈 https://t.co/nejcpZ6euE
## 1894                           RT @22kristy: will be giving out some freebies on Dec 17 po. \n\nlike &amp; rt\nfollow for updates \n1 set inclusions per person only \nlocation : t…
## 1895                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1896                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1897                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1898                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 1899                                    RT @sound_of_dk: ☀️BE THE SUN IN BULACAN FREEBIES☀️\n\nHi Filo Carats! I'll be giving away Dokyeom hand banners (limited quantity) on Decembe…
## 1900                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1901                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1902                                                                                                   RT @ann_yeonggggggg: It’s d-day! #BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN
## 1903                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1904                                    RT @CaratLandPH: Before this day ends (and before the dday begins), we would like to take this time to appreciate all CARATS who support us…
## 1905                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 1906                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1907                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 1908                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1909                         RT @HorangiKrong: 🌞 BeTS Bulacan - FREEBIES 🌞\n\nDate: 17th Dec. 2022\nTime &amp; Location: tba\n\n1:1 ratio (not a Set)\n\nFirst 13 Carats to spot me…
## 1910                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 1911                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 1912                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1913                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1914                                                                            RT @absterwebby: they did highlight and now i can die happy #LA3C #SEVENTEEN https://t.co/9yvxLL4lDg
## 1915                                                                                                         RT @absterwebby: get it deekay #LA3C #SEVENTEEN https://t.co/0SFZPCcGwI
## 1916                           RT @seoksoar: BeTS in Bulacan Freebies !\n#뽀뽀로 boxes🥤🍓🍰\n⤷ @pinkjenn24 and @seoksoar \n\n、please help us like and rt \n、limited quantity only –…
## 1917                                RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR DK♡*\n\nhello carats! we'll be giving away this hand bann…
## 1918                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 1919                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1920                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1921                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1922                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1923                        RT @jww_jiung: bets bulacan freebies/give away!!\n\n(minwon+cheol unofficial pcs)\n\n~ rt &amp; like \n~ open to all carats \n~ location: TBA \n\nsee u…
## 1924                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1925                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 1926                               RT @fae_______: Most nominated kpop groups for China End Year Awards @/ChinaMusicData \n\n1. Blackpink-14\n2. Seventeen-13\n3. (G)-IDLE-12\n4. R…
## 1927                                                RT @cherishthe17: Seventeen's 2023 Bucket list\n\nWonwoo recommended overseas TTT\n\n😭😭 Wonwoo best boy\nhttps://t.co/btb2FB9QTG
## 1928                                   RT @dekpoky: 🎞️ 𝙖𝙗𝙨𝙤𝙡𝙪𝙩𝙚𝙡𝙮 𝙨𝙢𝙞𝙩𝙩𝙚𝙣 🎞️\n"after last night, i think i'm in love with you, i can't get you out of my head"\n\n#CaratSelcaDay #CSD…
## 1929                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1930                                RT @_withwonwoo: WTS LFB HELP RT\nSEVENTEEN photocards pc selling for SET ONLY\n\n2500 pesos, payo. Meet up tomorrow sa bets bulacan\nyou may l…
## 1931                                 RT @soobincrumbs: Soobincrumbs' mini giveaway for #BeTSinBULACAN (GyuHao)\n\n• RT + Like this tweet.\n• Follow (for updates purposes, optional…
## 1932                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 1933                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 1934                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 1935                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1936                                 RT @wonwoounion_id: Wonwoo and Mingyu cut for Vivi Magazine Japan ❤️\n\nAduh double kill 🙂\n#SEVENTEEN #WONWOO #MINGYU \nhttps://t.co/JTQ4pxKzlm
## 1937                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1938                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1939                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1940                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 1941                                                                                               RT @tinkswonu: #원우 wonwoo for seventeen ViVi magazine 💗 https://t.co/oHRCCfKlrG
## 1942                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 1943                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 1944                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 1945                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 1946                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1947                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 1948                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 1949                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 1950                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1951                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 1952                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1953                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1954                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1955                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1956                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 1957                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 1958                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 1959                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1960                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 1961                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1962                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1963                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 1964                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1965                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1966                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 1967                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 1968                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 1969                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 1970                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 1971                               RT @voboowuji: Help rt! \nwant to sell / wts / lfb\n\n• selling to each (other tnc on pict 3) \n• open sharing boleh banget\n• exc packing+admin…
## 1972                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1973                          RT @aeryruru: 안녕 ✨\nPRE-ORDER STICKER WVRS REPLY BY AERYRURU\n\npre-order detail :\n🗓open ; 5 december 22\n🗓close ; 20 december 22\n\nprice list :…
## 1974                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 1975                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 1976                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 1977                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 1978                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1979                               RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 1980                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 1981                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 1982                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 1983                                                   RT @notdandelion: PUT YOUR MOTHER FUCKER HANDS UP\n\n#CSD #HOSHI #CaratSelcaDay @pledis_17 #SEVENTEEN https://t.co/6lZ5cvS68r
## 1984                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 1985                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 1986                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 1987                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 1988                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 1989                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 1990                                                                RT @RhythmD_17: 221120 BE THE SUN in OSAKA\n#디노 #DINO\n#세븐틴 #SEVENTEEN\n#BE_THE_SUN https://t.co/i131qOV8ro
## 1991                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1992                                     RT @DINO_CENTRAL: here’s my little study on dino’s dancing and me trying to put into words why i love it so much. it’s the product of hard…
## 1993                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 1994                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 1995                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1996                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 1997                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 1998                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 1999                                 RT @shuareads: Hello to my fellow joshushushu &amp; couprang! i will be giving away limited cheolshua/cheolsoo freebies on d-day! 🍒🦌 will also…
## 2000                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2001                                                              RT @kwonhochie: the card was FacE ThE SuN\n\n#CaratSelcaDay  #csd #CARAT #SEVENTEEN #hoshi https://t.co/JxLqsHkgGO
## 2002                                                                      RT @huinity: 🤍 june and jun \n\n#csd #CaratSelcaDay #seventeen #jun #준 @pledis_17 https://t.co/OCQh0ytciJ
## 2003                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 2004                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2005                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2006                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2007                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2008                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2009                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2010                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 2011                      RT @CaratOppa: [SPECIAL TWEET] \nSEVENTEEN (세븐틴) DK with SEVENTEEN Member Update!\n\n#세븐틴 #SEVENTEEN \n\n🔗 https://t.co/xWFPUyk1mW\n\nTags: \n#SVT_…
## 2012                                RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 2013                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2014                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2015                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2016                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2017                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2018                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2019                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2020                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2021                                     RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 2022                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2023                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2024                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2025                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2026                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2027                                                 RT @onelywoo: just had a night walk with my boyfIE 🌀💌💭🌷\n.\n.\n.\n#CaratSelcaDay #CSD #SEVENTEEN #CARAT https://t.co/Uif745tQQJ
## 2028                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2029                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2030                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 2031                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 2032                                  RT @snoozebaram: - a day with coups ☁️🤍\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT  #SCOUPS #에스쿱스 #세븐틴 @pledis_17 https://t.co/CMYZqmzV2P
## 2033                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2034                               RT @CaryennG: Don’t forget to vote for SEVENTEEN on Seoul Music Awards in Fancast.\n\n#SEVENTEEN @pledis_17 #세븐틴 #Svt_Dream https://t.co/blZT…
## 2035                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 2036                                  RT @snoozebaram: - a day with coups ☁️🤍\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT  #SCOUPS #에스쿱스 #세븐틴 @pledis_17 https://t.co/CMYZqmzV2P
## 2037                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2038                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2039                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2040                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2041                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2042                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2043                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 2044                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2045                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2046                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2047                               RT @minwonshuji: ︑︒⚬∙︓·⠄ Seventeen Be The Sun in Bulacan freebies \n\nHi, Carats! Together with @urmwlovr and @everywon_who, we will be givin…
## 2048                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 2049                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2050                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2051                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2052                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 2053                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2054                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 2055                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2056                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2057                                                              RT @kwonhochie: the card was FacE ThE SuN\n\n#CaratSelcaDay  #csd #CARAT #SEVENTEEN #hoshi https://t.co/JxLqsHkgGO
## 2058                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2059                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2060                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2061                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2062                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2063                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2064                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2065                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2066                               RT @wonuniii: 🎀~♡Be the Sun in Bulacan Freebie♡~🎀\n\nCarats, I'll be giving away some caratbong ribbon on D-day!!\n\n♡ like and rt this twt\n♡ m…
## 2067                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2068                                 RT @woooniiee: 🔥 BE THE SUN in BULACAN WONWOO CHEERING KIT 🔥\n\n📍very limited banner\n📍please read the instructions below.\n📍TBA for the exact…
## 2069                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2070                                  RT @wonusuals: from "we're breathing the same polluted air" "team bahay" "team labas" to "team concert" "see you, seventeen" \n\nI CAN FINALL…
## 2071                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2072                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2073                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2074                                RT @jhel172: Be The Sun in Bulacan FREEBIES \n\nHi guys 🍒 I will be giving away Scoupd Hand Banner , Pc , Photostrips.\n\n° follow for updates;…
## 2075                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2076                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2077                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2078                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2079                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 2080                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2081                                RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 2082                               RT @Genius_kor: #GeniusCharts | 2022 Year-End Genius Korea Chart | Top Male Groups\n1. Stray Kids\n2. BTS\n3. ENHYPEN\n4. TOMORROW X TOGETHER\n5…
## 2083                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 2084                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2085                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2086                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2087                                            RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 2088                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2089                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2090                                   RT @soompi: #SEVENTEEN Goes Triple Platinum For 1st Time In Japan + #BTS's #Jin Earns 1st Solo RIAJ Album Certification\nhttps://t.co/X7jeqe…
## 2091                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 2092                                  RT @officialcharts: It begs to stick around... 🤘\n\nSam Fender's (@samfendermusic) unstoppable Seventeen Going Under gets a new lease of life…
## 2093                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2094                                                    RT @gabateez: Slip into the diamond life ೄྀ࿐ ˊˎ-\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/VGsv1Hw9z1
## 2095                                    RT @vernloversclub: i will legitimately never forget the official seventeen tiktok removing the hashtag on that emoji bc it was just this v…
## 2096                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2097                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2098                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2099                                                  RT @mezxig: « you are my crush i got a crush on you🤍 »\n\n#CaratSelcaDay #SEVENTEEN #SCOUPS @pledis_17 https://t.co/r0GyRmf4AT
## 2100                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2101                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 2102                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2103                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2104                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 2105                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2106                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 2107                                    RT @redlyricsbot: i know someday i'm gonna meet her, it's a fever dream, the kind of radiance you only have at seventeen; she'll know the w…
## 2108                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2109                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 2110                                                                                                                     RT @redlyricsbot: we were seventeen and crazy, running wild
## 2111                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 2112                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2113                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2114                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 2115                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 2116                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2117                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 2118                                                    RT @nyeacjeon: "Do you wanna be forgiven?"\n\n#CARAT_SELCA_DAY #세븐틴 #SEVENTEEN #WONWOO @pledis_17 https://t.co/sgECpElVPM
## 2119                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 2120                                    RT @svntncarat17_: Only hours left till we witness the performance powerhouse SEVENTEEN as the first ever kpop act to perform on the WORLD'…
## 2121                                RT @avcstudios_: HELP RT | GIVEAWAY PH ✨\n\nfree svt filo grad pic for team labas and team concert tomorrow!\n\nfollow for more updates on how…
## 2122                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 2123                                RT @avcstudios_: HELP RT | GIVEAWAY PH ✨\n\nfree svt filo grad pic for team labas and team concert tomorrow!\n\nfollow for more updates on how…
## 2124                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2125                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2126                               RT @WorldwideCarats: Flashback Friday\n[170715]\n\nSeventeen - Escaping the City\n\n@pledis_17 #SEVENTEEN\n#MTVLAKPOPSEVENTEEN \n#PremiosMTVMiaw…
## 2127                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2128                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2129                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2130                                                  RT @mezxig: « you are my crush i got a crush on you🤍 »\n\n#CaratSelcaDay #SEVENTEEN #SCOUPS @pledis_17 https://t.co/r0GyRmf4AT
## 2131                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2132                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2133                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2134                                       RT @shuaaashua: After last night, I think I'm in love with you\n#CSD #CaratSelcaDay #SEVENTEEN #JOSHUA @pledis_17 https://t.co/88jtW0m64A
## 2135                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2136                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2137                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 2138                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2139                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2140                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2141                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2142                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2143                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2144                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 2145                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2146                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2147                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2148                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2149                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2150                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2151                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2152                            RT @vitamingyuuu: best stress buster?\na video call with him.\n\n#CSD #CaratSelcaDay #WOOZI #우지 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/fN6zRv…
## 2153                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2154                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2155                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2156                                                          RT @Zeldaliaa_: Baby I am a shadow of you 🖤\n\n#CaratSelcaDay #carat #SEVENTEEN #minghao #the8 https://t.co/YEAZdUrssL
## 2157                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2158                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2159                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2160                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2161                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 2162                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2163                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2164                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2165                                       RT @the2the8: significant other reveal!! &lt;3\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wgaLeJ1oZw
## 2166                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 2167                                        RT @chventeen: guess who's back for the last csd this year :) \n\n#CaratSelcaDay #csd #wonwoo #SEVENTEEN #세븐틴 https://t.co/yCDetQT4QT
## 2168                              RT @loreyneleeey: SEVENTEEN BE THE SUN IN MANILA ✨GIVEAWAY✨ DAY 1 (Oct 8)\n\nOpen to all carats! Team Concert/Team Labas. See you! 💗💎\n\n#BeTSi…
## 2169                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 2170                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2171                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2172                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2173                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2174                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2175                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2176                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2177                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2178                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 2179                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2180                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2181                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2182                                   RT @m1n9yu_ku: Let them know about us. \n\n#CSD #CaratSelcaDay \n#THE8 #MINGHAO #명호 \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/YkYFpZIqe3
## 2183                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2184                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2185                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 2186                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2187                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2188                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2189                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2190                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2191                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 2192                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 2193                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2194                             RT @yoon_maya: ✨BE THE SUN IN BULACAN x \nJOSHUA BIRTHDAY\nFAN SUPPORT ✨\n\nDetails on the photo below.\nCan't wait to meet you, Carats! See you…
## 2195                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2196                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2197                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 2198                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 2199                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2200                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2201                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2202                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2203                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2204                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2205                                            RT @n0nihae: — high school best buds (๑'ᵕ'๑)⸝*♡.・✩°。⋆\n\n#CaratSelcaDay #CSD #SEVENTEEN #CARAT #세븐틴 #캐럿 https://t.co/j7jEEugioV
## 2206                                RT @svtcontents: [#MAGAZINE] SEVENTEEN for ViVi Magazine February 2023 Issue Details\n\nSpecial Edition\nAmazon: https://t.co/JclzJkLqzU\nRakut…
## 2207                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 2208                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 2209                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2210                                                    RT @oncegenedays: wts lfb bets bulacan\n\nubc reg 426\n1,850 only!!\n\nmeet up sa ph arena\n\nwts lfb bets bulacan seventeen
## 2211                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2212                                    RT @ccllrr17: #BeTheSuninBulacan #BeTSBulacan #BeTSinBulacan #Seventeen FREEBIES! Hi Carats! May mga 300 freebies kami na ipapamigay sa dda…
## 2213                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2214                                 RT @svtcontents: [#FANSIGN] SEVENTEEN 4th Full Album 'Face the Sun' Yizhiyu Fansign Event Round F Photocards\n\n— Random 1 out of 13\n\n🖇️ http…
## 2215                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2216                                  RT @CaratLandPH: 📢 REMINDING THIS AGAIN CARATS!\n\nLet SEVENTEEN rest and enjoy their stay here in our country by not invading their space an…
## 2217                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2218                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2219                                 RT @cartchives: # want to sell / wts carbong v1 \n\n( 400.000 ) \n✅ all in good condition, nyala terang, inc battery + bonus pc attacca the8,…
## 2220                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 2221                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2222                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2223                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2224                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 2225                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2226                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2227                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2228                                    RT @svtcontents: 📰 SEVENTEEN is nominated under several categories at the 2022 China Year End Awards! Winners will be announced on December…
## 2229                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2230                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2231                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2232                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2233                                                  RT @svtcontents: 📰 SEVENTEEN's 'HOT' is one of the most streamed songs in Stationhead this 2022!! 🥳\n\nhttps://t.co/I3tTsn1sgK
## 2234                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2235                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2236                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2237                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2238                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2239                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2240                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2241                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2242                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 2243                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2244                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2245                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2246                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2247                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2248                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2249                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2250                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2251                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2252                                  RT @eoia_min: ✧ SEVENTEEN BETS IN BULACAN FREEBIES ✧\n\nHi carats! I'll giveaway official photocards and other unofficial photos of seventeen…
## 2253                                                                               RT @horangrawrhae: seventeen hoshi first update in the philippines 😂\n\n©️ https://t.co/0x8uHu6M61
## 2254                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2255                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2256                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2257                                    RT @POTUS: Seventeen Black women have been confirmed to federal circuit courts in U.S. history. And with the Senate’s confirmation of Judge…
## 2258                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2259                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2260                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2261                                    RT @miss_svtmafia: Let them rest, CARATs. Let SEVENTEEN rest. Give them space. Saturday is just around the corner, give them time, space an…
## 2262                                                                                                     RT @gentleshuan: RAINBOW FOR SEVENTEEN AND CARATS 🌈 https://t.co/nejcpZ6euE
## 2263                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2264                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2265                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2266                                    RT @svtcontents: 🎥 Boy group TRENDZ performed SEVENTEEN's 'HIT' on 2022 AAA's After Stage! Here's the introduction video of their performan…
## 2267                                    RT @bestboywonuu: a daily reminder for ph carats to let seventeen enjoy their stay here. respect their privacy and let them roam around fre…
## 2268                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2269                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 2270                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2271                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 2272                                                                                               RT @tinkswonu: #원우 wonwoo for seventeen ViVi magazine 💗 https://t.co/oHRCCfKlrG
## 2273                                            RT @SVT_stagram: [#SEUNGKWAN 📸 Instagram Story] \n221215 pledis_boos \n\n#승관 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/d7ppd0k6gz
## 2274                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2275                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 2276                                RT @gottamarryem17: 𝑺𝒕𝒓𝒐𝒍𝒍𝒊𝒏𝒈 𝒂𝒓𝒐𝒖𝒏𝒅 𝒊𝒄𝒐𝒏𝒊𝒄 𝒑𝒍𝒂𝒄𝒆𝒔 𝒘𝒉𝒊𝒍𝒆 𝒄𝒂𝒑𝒕𝒖𝒓𝒊𝒏𝒈 𝒎𝒆𝒎𝒐𝒓𝒊𝒆𝒔\n— 𝑶𝒍𝒅 𝒃𝒖𝒕 𝒈𝒐𝒍𝒅\n\n#CSD #CaratSelcaDay\n#JOSHUA #SEVENTEEN @pledis_…
## 2277                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2278                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2279                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2280                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2281                                                         RT @pledis_17: [17'S JUN] Photo by @allurekorea📸\n\n#JUN #준 \n#SEVENTEEN #세븐틴\n#allurekorea https://t.co/8r40oQCYyq
## 2282                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2283                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2284                         RT @SVT_Fancafe: [#MINGYU🌟 Weverse]\n221215 -17:02 KST-\n\n➸ Carats, I have something to say ㅎ Come here\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https…
## 2285                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2286                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2287                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2288                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2289                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2290                          RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221215 -19:10 KST-\n\n➸ No, Myeongho-ya, what's up with your shoes🧡\n\n#호시 #SEVENTEEN #세븐틴 @pledis_17 https:…
## 2291                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2292                            RT @pledis_17: [INSIDE SEVENTEEN] SEVENTEEN WORLD TOUR [BE THE SUN] NORTH AMERICA BEHIND #4\n\n▶ https://t.co/zVPIp6OQ5f\n\n#SEVENTEEN #세븐틴\n#IN…
## 2293                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 2294                           RT @jaz_beomjun: ✨BETS IN BULACAN FREEBIES✨\n\n~open to all carats \n~randomly distributed \n~limited quantity \n\n#BeTheSuninBULACAN\n#BeTSinBULA…
## 2295                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2296                                               RT @SVT_Fancafe: [#THE8🌟 Weverse] \n221215 -19:13 KST-\n\n➸ 🧣👓🎱 \n\n#디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/hYnXQRPMVg
## 2297                          RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221215 -19:18 KST-\n\n➸ Carats, please be careful of the snowy road!!!\n\n#호시 #SEVENTEEN #세븐틴 @pledis_17 htt…
## 2298                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2299                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2300                                                     RT @SVT_Fancafe: [#JUN🌟 Weverse] \n221215 -19:27 KST-\n\n➸ hi~\n\n#준 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/rI2ldc7SdF
## 2301                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2302                                                   RT @notdandelion: PUT YOUR MOTHER FUCKER HANDS UP\n\n#CSD #HOSHI #CaratSelcaDay @pledis_17 #SEVENTEEN https://t.co/6lZ5cvS68r
## 2303                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2304                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2305                                                          RT @SVT_Fancafe: [#HOSHI🌟 Weverse] \n221215 -19:49 KST-\n\n#호시 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/nZbhHOvFyY
## 2306                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2307                           RT @SVT_Fancafe: [#SEUNGKWAN🌟 Weverse] \n221215 -20:27 KST-\n\n➸ I'll be back safely in Manila ㅎ I'm craving for vanilla icecream ㅎ\n\n#승관 #SEVE…
## 2308                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2309                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2310                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 2311                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2312                                                                 RT @Blossomseason_: 221213 #버논 #세븐틴 #vernon #seventeen\nMy black cat is rockstar.. https://t.co/9evJZZlapu
## 2313                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2314                                 RT @DokyeomGaabs: 'Cause we never go out of style ✨️\n\neu e o nonu de roupa chique 😋\n#CSD #CaratSelcaDay #SEVENTEEN #WONWOO @pledis_17 https…
## 2315                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2316                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2317                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2318                             RT @SVT_Fancafe: [#MINGYU🌟 Weverse]\n221215 -19:53 KST-\n\n➸ By any chance, has anyone seen my... earphones at the airport.......\n\n#민규 #SEVENT…
## 2319                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2320                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 2321                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2322                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2323                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2324                          RT @SVT_Fancafe: [#DK🌟 Weverse]\n221215 -20:33 KST-\n\n➸ Who's that friend on the right?🥸\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/cCqASx7…
## 2325                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2326                                  RT @kwanniechan: SEVENTEEN BE THE SUN IN BULACAN FREEBIES 🌞\n\nHi! @_wonwoofilms, @jeongdaeph, and I will be giving away mystery envelopes fo…
## 2327                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2328                     RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 2329                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2330                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 2331                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2332                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2333                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2334                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2335                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2336                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2337                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2338                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2339                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2340                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2341                                   RT @dekpoky: 🎞️ 𝙖𝙗𝙨𝙤𝙡𝙪𝙩𝙚𝙡𝙮 𝙨𝙢𝙞𝙩𝙩𝙚𝙣 🎞️\n"after last night, i think i'm in love with you, i can't get you out of my head"\n\n#CaratSelcaDay #CSD…
## 2342                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2343                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2344                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2345                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2346                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2347                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2348                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2349                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2350                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2351                                  RT @O2_Zein: 19 y.o #MohamadBroghani is still in solitary confinement and his precious life is in danger.\n#StopExecutionInIran \n@UNHumanRig…
## 2352                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2353                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2354                                     RT @DINO_CENTRAL: here’s my little study on dino’s dancing and me trying to put into words why i love it so much. it’s the product of hard…
## 2355                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2356                                          RT @svt_verse: [#정한’s reply 🌟 221217] 12:10 AM KST\n\n#JEONGHAN: That’s sad\n\n@pledis_17 #SEVENTEEN #세븐틴 https://t.co/EOqIsYtYs5
## 2357                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2358                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 2359                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2360                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2361                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2362                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2363                                     RT @DINO_CENTRAL: here’s my little study on dino’s dancing and me trying to put into words why i love it so much. it’s the product of hard…
## 2364                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 2365                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2366                                   RT @bodylike3racha: i haven’t taken cute pics of myself since summer oops 💚💚💚\n\n#CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/2pEHkKBhwF
## 2367                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2368                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2369                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2370                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 2371                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2372                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2373                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2374                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 2375                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2376                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2377                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2378                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2379                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2380                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2381                               RT @belongs_to_j: i’m just like you, you’re just like me~~~ 😆🌀🏃🏻‍♂️\n\n#CSD #CaratSelcaDay #DK #도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wX…
## 2382                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2383                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2384                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2385                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2386                                   RT @morgysyyy: WTS/ LFB want to sell\n2 x LBA 113, Row 37 Seventeen Be the Sun in Bulacan tickets\n\n‼️ P9,500 each ‼️ (og price P12,700 each)…
## 2387                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2388                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2389                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 2390                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2391                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2392                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2393                             RT @1OO4615: Help rt please\nWTT/ Want To Trade\nPhotocard Fortune Box Seventeen Edition\n Have : Wonwoo\n Want : Jeonghan\n\n📍Bekasi\ntags. wtt w…
## 2394                                       RT @menjunfei: 220223 #ExclusiveFairytale douyin update\n#세븐틴⁠ ⁠⁠#SEVENTEEN⁠ ⁠⁠\n#ジュン #준 #JUN #文俊辉 @pledis_17 https://t.co/4GUXXdLSEk
## 2395                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 2396                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2397                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2398                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2399                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 2400                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2401                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2402                                    RT @KB_CountryRadio: Shay Gaston - Since Seventeen-  #kbcountryradio #indiemusic #internetradio  #indie  https://t.co/zEJHLw5rfo  #jukeboxT…
## 2403                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2404                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 2405                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2406                                RT @gottamarryem17: 𝑺𝒕𝒓𝒐𝒍𝒍𝒊𝒏𝒈 𝒂𝒓𝒐𝒖𝒏𝒅 𝒊𝒄𝒐𝒏𝒊𝒄 𝒑𝒍𝒂𝒄𝒆𝒔 𝒘𝒉𝒊𝒍𝒆 𝒄𝒂𝒑𝒕𝒖𝒓𝒊𝒏𝒈 𝒎𝒆𝒎𝒐𝒓𝒊𝒆𝒔\n— 𝑶𝒍𝒅 𝒃𝒖𝒕 𝒈𝒐𝒍𝒅\n\n#CSD #CaratSelcaDay\n#JOSHUA #SEVENTEEN @pledis_…
## 2407                                    RT @dailygyushua: him asking for hint about a song that make him go viral every two business day (network love) yet he was so slow to guess…
## 2408                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2409                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2410                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2411                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2412                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2413                              RT @gelgel_ly: You stole my heart, but i’ll let you keep it❤️\n#CaratSelcaDay #CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철  #choiseungcheol @pledis_17…
## 2414                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2415                                                             RT @hansolmes: me and my husband 🐈‍⬛\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #VERNON https://t.co/giwPPCznws
## 2416                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2417                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2418                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2419                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2420                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2421                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2422                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2423                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 2424                        RT @miss_svtmafia: D-DAY TOMORROW ㅠㅠㅠ\nCARATS HELP RT PLEASE 😭\n\nSEVENTEEN BE THE SUN BULACAN \n\nwtt lft\n\nHAVE: (2) VIP B SOUNDCHECK\n\nWANT: (2…
## 2425                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2426                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2427                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2428                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2429                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2430                       RT @treasure_cart: a little giveaway for #BeTheSunBulacan \n\nFOLLOW us &amp; @teumecarat1213\nRT &amp; LIKE this post..\n\nkamsahamnida...\nSEE YOU ALL…
## 2431                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2432                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 2433                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2434                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 2435                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2436                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2437                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2438                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2439                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2440                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2441                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2442                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2443                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2444                                 RT @starryhun94: wtb lfs bets svt seventeen bulacan\nhelping a friend\n\n-discounted/complimentary ticket (will get the lowest offer max budge…
## 2445                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 2446                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2447                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2448                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2449                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 2450                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2451                                    RT @CaratLandPH: Before this day ends (and before the dday begins), we would like to take this time to appreciate all CARATS who support us…
## 2452                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2453                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2454                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 2455                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2456                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2457                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2458                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2459                               RT @cheonsapower: Loeee PH carats! ⭐️ These Seventeen DIY beads will be for ✨giveaway✨on December 17!\n\n- just kindly help like and rt\n- wil…
## 2460                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2461                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2462                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2463                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2464                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 2465                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2466                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2467                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2468                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2469                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2470                              RT @etherealdk: —sharing pics bcs we can’t see each other yet ㅠㅠ\n\n[ #CSD #CaratSelcaDay #SEVENTEEN #dokyeom #도겸 @pledis_17 ] https://t.co/4…
## 2471                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2472                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2473                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2474                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2475                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2476                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2477                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2478                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2479                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2480                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2481                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2482                             RT @cuipdz: wts lfb ph \n\n💉💒 jeonghan sakristan set\n ₱900 + pf, dop 1 week❕\n💬 all onhand \n\n☆ seventeen social club ssc al fine jun sector 17…
## 2483                                             RT @HONGJIS0: 𓈒 ꔛ ˙ ˖ love and hug  ⩇ : ⩇ 𝗌un ഒ\n#CaratSelcaDay #CSD #JOSHUA\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/rlYaqpCWzn
## 2484                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2485                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2486                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2487                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2488                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2489                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2490                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2491                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2492                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2493                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 2494                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2495                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 2496                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 2497                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2498                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2499                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2500                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2501                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2502                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2503                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2504                                                        RT @CaratLandPH: D-DAY — SEVENTEEN IN BULACAN!🇵🇭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/KP9JzAeEyH
## 2505                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2506                                   RT @ihrtsvt13: Don’t make me choose yet😭\n#csd #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN @pledis_17 #MINGYU #minghao https://t.co/v3jllnOdp0
## 2507                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2508                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2509                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2510                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2511                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2512                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2513                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2514                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 2515                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2516                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2517                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2518                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 2519                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2520                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2521                        RT @karjwnhui: ✨ SEVENTEEN PASSPORT PHOTO ✨\n(red &amp; blue bg ver.)\n(but all black hair aw)\n\njust like/rt if you want to save ^^\n\n@pledis_17 #…
## 2522                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2523                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2524                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2525                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2526                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2527                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2528                                RT @verseok_: vernonified.\n\nwill wear the same fit tomorrow see you guys!\n#CSD #CaratSelcaDay\n#VERNON #SEVENTEEN @pledis_17 https://t.co/Bl…
## 2529                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2530                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2531                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2532                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 2533                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2534                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2535                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 2536                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2537                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2538                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2539                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2540                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2541                                  RT @pledis_17: [#17studio] JUN’S PLAYLIST\n\n▶  https://t.co/oM5wXorsIk\n\n#JUN #준\n#SEVENTEEN #세븐틴\n#JUN_PLAYLIST https://t.co/gsMh49VU3U
## 2542                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2543                                                              RT @pledis_17: 20220610 Happy JUN’s Day🐱\n\n#Happy_JUN_Day\n\n#JUN #준\n#SEVENTEEN #세븐틴 https://t.co/XvQZKzwTeK
## 2544                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2545                               RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 2546                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2547                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2548                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2549                          RT @imnotyurgirl: I got my vitamin sea with my honey ♡\n#CSD #SEVENTEEN #세븐틴 #CaratSelcaDay #Dino #디노 #LeeChan #이찬  #CARAT #캐럿  @pledis_17 h…
## 2550                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2551                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2552                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 2553                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2554                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2555                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2556                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2557                                  RT @SciPiHarvey: Here is the official picture let’s celebrate!!!! #teacheroftheweek \n\n⬇️ your list\n📣 tell me what you’re happy about\n♻️ Ret…
## 2558                                RT @_bubblethe8: [ Seoul Music Awards ] \n\nThis is a REMINDER that we STILL HAVE ONGOING VOTING. Everyone can VOTE\n\nPLEASE KEEP COLLECT GOLD…
## 2559                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 2560                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2561                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2562                               RT @howoons: ☀️ SEVENTEEN Be The Sun in Bulacan ☀️\nHOWOO (soonhoon) AND WOOZI BANNER GIVEAWAY\n\n♡ giving away howoo and woozi banners &amp; a fe…
## 2563                                   RT @Akinscoded147: Please don't Fall sick in 🇳🇬 Nigeria o, all the good Doctors and Pharmacists are in the UK 🇬🇧...\n#16December Shola Allys…
## 2564                              RT @sarahoshuji: ✨#Seventeen Be The Sun in Bulacan Fan Support/Freebies✨\n\nHello Caratdeuls! \n\n@nilaj_tee, @aidan_andrea, and I are giving a…
## 2565                                                                       RT @haroomelon: my boo 🍊 \n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN @pledis_17 https://t.co/zEGWrwjhge
## 2566                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2567                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2568                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 2569                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2570                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2571                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2572                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 2573                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2574                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 2575                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2576                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2577                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2578                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 2579                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2580                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2581                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2582                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 2583                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2584                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2585                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 2586                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2587                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2588                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2589                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2590                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2591                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2592                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 2593                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2594                                                RT @pledis_17: [SEVENTEEN NEWS]\n#SEVENTEEN #FIRST_ALBUM #LOVE #LETTER 20160425\nThis Week Schedule List https://t.co/zmVOu65khj
## 2595                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2596                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2597                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2598                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2599                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2600                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2601                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2602                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 2603                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2604                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 2605                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 2606                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2607                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2608                                                            RT @cutelikejoon: just trying something new 📸#CaratSelcaDay #CSD #SEVENTEEN #THE8 @pledis_17 https://t.co/ICxYsVIQqd
## 2609                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2610                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2611                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2612                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 2613                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2614                                                              RT @kwonhochie: the card was FacE ThE SuN\n\n#CaratSelcaDay  #csd #CARAT #SEVENTEEN #hoshi https://t.co/JxLqsHkgGO
## 2615                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2616                                                RT @MeetVernon_218: 221203 BE THE SUN ACHI \n\n#버논 #VERNON  #バーノン #최한솔 \n#세븐틴     #SEVENTEEN https://t.co/R0E2TOejus
## 2617                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2618                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2619                                                       RT @fallfljws: from alay to slay. #CaratSelcaDay #CSD #WONWOO #원우 #세븐틴 #SEVENTEEN @pledis_17 https://t.co/hCZQ2FrjBB
## 2620                                    RT @pansaniaa: wearing scarfs while being cold 🥶 \n\n#CSD #CaratSelcaDay #THE8 #서명호 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/pBwNDxxICU
## 2621                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2622                                     RT @_TRaveller_8: 221127☀️Be The Sun☀️ in Tokyo\n\n#디에잇 #THE8 \n#서명호 #徐明浩 #ミンハオ\n#세븐틴      #SEVENTEEN https://t.co/AoyYsYPB14
## 2623                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2624                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2625                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2626                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2627                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2628                                         RT @17CARATS_INA: Thank you so much for supporting us 💕😊\n\n@pledis_17  #SEVENTEEN #세븐틴 \n#SVT_inJAKARTACity https://t.co/g3ypbSTMrd
## 2629                                   RT @dekpoky: 🎞️ 𝙖𝙗𝙨𝙤𝙡𝙪𝙩𝙚𝙡𝙮 𝙨𝙢𝙞𝙩𝙩𝙚𝙣 🎞️\n"after last night, i think i'm in love with you, i can't get you out of my head"\n\n#CaratSelcaDay #CSD…
## 2630                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2631                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 2632                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2633                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 2634                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2635                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 2636                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2637                             RT @brightestmo_on: Last night was fun. Thanks, Mingyu ^__^\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 #SECTOR17 #_WORLD @pled…
## 2638                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 2639                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 2640                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2641                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2642                                 RT @gyudkmel: “Love is the flower you’ve got to let grow.”🌷 – John Lennon\n\n#CaratSelcaDay #CSD #MINGYU\n#SEVENTEEN  @pledis_17 https://t.co/…
## 2643                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2644                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2645                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2646                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2647                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2648                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2649                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2650                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2651                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2652                                    RT @breakerenids: ⋆。˚ ❀ begging for you to take my hand wreck my plans, that's my man ˚ ༘♡ ⋆。˚ ꕥ \n#CSD #CARAT_SELCA_DAY #SEVENTEEN #JEONGHA…
## 2653                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 2654                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2655                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2656                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2657                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2658                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2659                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 2660                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 2661                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2662                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2663                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2664                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2665                                  RT @SciPiHarvey: Here is the official picture let’s celebrate!!!! #teacheroftheweek \n\n⬇️ your list\n📣 tell me what you’re happy about\n♻️ Ret…
## 2666                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2667                             RT @segyeshiimo: wts / lfb rush selling\nseventeen bulacan bets ticket\n\nLBB 216 / lowerbox \n\nog price 10, 700\n\nselling for a price lower tha…
## 2668                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 2669                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2670                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2671                                RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 2672                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 2673                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 2674                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2675                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2676                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 2677                                  RT @ciplayoo_n: "If the world attack and you slide off track, remember one fact, i got your back"\n–Will Smith\n\n#CSD #CaratSelcaDay #JOSHUA…
## 2678                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2679                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2680                           RT @darlingcircles: 𝙀𝙫𝙚𝙧𝙮 𝙢𝙤𝙢𝙚𝙣𝙩 𝙬𝙞𝙩𝙝𝙤𝙪𝙩 𝙮𝙤𝙪 𝙞𝙨 𝙢𝙚𝙖𝙣𝙞𝙣𝙜𝙡𝙚𝙨𝙨.\n\n#CSD #CaratSelcaDay #SCOUPS #SEUNGCHEOL #에스쿱스  #세븐틴  #SEVENTEEN @pledis_17 ht…
## 2681                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 2682                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2683                                        RT @Montainetae: 𝙎é𝙤𝙪𝙡’𝙨 𝙣𝙞𝙜𝙝𝙩 𝙬𝙞𝙩𝙝 𝙢𝙮 𝙖𝙣𝙜𝙚𝙡 😇❤️\n✨\n\n✨\n\n✨\n\n✨\n#CTSD #CaratSelcaDay #SEVENTEEN #JEONGHAN https://t.co/kil1DZBUX1
## 2684                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 2685                           RT @jaz_beomjun: ✨BETS IN BULACAN FREEBIES✨\n\n~open to all carats \n~randomly distributed \n~limited quantity \n\n#BeTheSuninBULACAN\n#BeTSinBULA…
## 2686                        RT @CaratOppa: [TWITTER TIME]\nSEVENTEEN (세븐틴) Twitter September Edition Photo Update!\n📸 50pic.\n\n#세븐틴 #SEVENTEEN \n\n🔗 https://t.co/CYYFf0dDeB…
## 2687                                                      RT @Dodoljong: I hope i'll meet Seventeen one day, may not be at a con. But someday 🥺🫶🏻 @pledis_17 see you really soon 🧡🧡🧡
## 2688                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2689                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2690                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2691                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2692                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2693                                RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 2694                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2695                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 2696                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2697                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 2698                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2699                                                                       RT @miss_svtmafia: OKAY TWO MORE UBC REG!!! \n\n#BeTSinBULACAN #BeTheSuninBULACAN https://t.co/xELE0lqqnQ
## 2700                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2701                                 RT @fortbzs: hello rush wts lfb help rt\n\nseventeen svt be the sun bulacan concert \n- UBC REG 433 Row 102 \n- ₱1,600 (orig ₱1,850) can lower…
## 2702                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 2703                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 2704                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 2705                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 2706                                    RT @kwonushii: Hello, just want to say I'm sorry in advance if you will receive the freebies without sleeves. I tried buying another wrappe…
## 2707                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 2708                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2709                           RT @SVT_stagram: [#SEUNGKWAN 📸 Instagram]\n221214 pledis_boos \n\n➸ Asia Artist Awards\n\n#승관 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/jmRMY8MLuC
## 2710                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2711                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2712                              RT @kwannhao: i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ https:…
## 2713                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2714                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 2715                               RT @WorldwideCarats: [VOTING]\n2022 HANTEO MUSIC AWARDS NOTICE\n\nTo CARATs,\n\nThe SVT Fanbases have decided to prioritize voting on the "GRAND…
## 2716                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 2717                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2718                                                                                                                       RT @Brenoteen: _WORLD -SEVENTEEN\nhttps://t.co/Cor7V7ZBYs
## 2719                                        RT @chventeen: guess who's back for the last csd this year :) \n\n#CaratSelcaDay #csd #wonwoo #SEVENTEEN #세븐틴 https://t.co/yCDetQT4QT
## 2720                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2721                      RT @CaratOppa: [SPECIAL TWEET] \nSEVENTEEN (세븐틴) DK with SEVENTEEN Member Update!\n\n#세븐틴 #SEVENTEEN \n\n🔗 https://t.co/xWFPUyk1mW\n\nTags: \n#SVT_…
## 2722                                  RT @ann_yeonggggggg: 💎 BE THE SUN IN BULACAN FREEBIES\n\n💎 Hi carats! I’m giving away these customized PH CARAT SEVENTEEN KEYCHAINS on d-day,…
## 2723                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 2724                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2725                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 2726                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2727                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2728                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 2729                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2730                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2731                    RT @SVT_stagram: [#DK 📸 Instagram Story] \n221216 dk_is_dokyeom \n\n➸ Joker movie poster ㅋㅋㅋㅋㅋㅋ\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/t…
## 2732                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 2733                                 RT @fortbzs: hello rush wts lfb help rt\n\nseventeen svt be the sun bulacan concert \n- UBC REG 433 Row 102 \n- ₱1,600 (orig ₱1,850) can lower…
## 2734                                                                      RT @seokminroyal: i wanna match you to my heart \n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/Cl9PfLCkwE
## 2735                                    RT @brightlybyun: #DOKYEOM: king god, general emperor majesty, pretty beautifuuuuulll gorgeous, precious elegance luxury, world high-top cl…
## 2736                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2737                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2738                                                                                         RT @Ryu_MiHye: BE THE SUN ☀️☀️☀️☀️☀️\n\n@pledis_17 @pledis_17jp #SEVENTEEN #세븐틴 #セブチ 💎
## 2739                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2740                                            RT @mcpnews: Missing Seventeen-Year-Old\n\nhttps://t.co/Z9mi8EAAjU\n\n#MCPD #MCPNews #Missing #MissingPerson https://t.co/jTd3yWM7i8
## 2741                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 2742                                 RT @fortbzs: hello rush wts lfb help rt\n\nseventeen svt be the sun bulacan concert \n- UBC REG 433 Row 102 \n- ₱1,600 (orig ₱1,850) can lower…
## 2743                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2744                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 2745                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 2746                              RT @etherealdk: —sharing pics bcs we can’t see each other yet ㅠㅠ\n\n[ #CSD #CaratSelcaDay #SEVENTEEN #dokyeom #도겸 @pledis_17 ] https://t.co/4…
## 2747                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2748                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 2749                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2750                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2751                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2752                                                                       RT @__2mns1: 900 days with Seventeen and forever to go. See you later, my home 💖💙 https://t.co/PgHzMHqRqR
## 2753                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 2754                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 2755                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 2756                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2757                         RT @softiekyeom: take 2 help rt\n\ni'll be giving random unofficial svt pcs &amp; sweets tomorrow!!! pls see me around ph arenaaa &lt;3\n\nshow me thi…
## 2758                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2759                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2760                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 2761                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 2762                              RT @17dayph: BE THE SUN in Bulacan🌞 \nSURPRISE GIVEAWAY\n\n1 UBB Premium Ticket\nOpen for team labas only!\nFollow @17dayph\nLike and RT this pos…
## 2763                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2764                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 2765                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 2766                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 2767                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2768                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2769                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 2770                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2771                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2772                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2773                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 2774                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2775                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2776                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 2777                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 2778                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 2779                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2780                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2781                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2782                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2783                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2784                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 2785                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2786                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2787                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2788                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 2789                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2790                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2791                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 2792                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2793                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2794                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 2795                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2796                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2797                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2798                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2799                                             RT @HONGJIS0: 𓈒 ꔛ ˙ ˖ love and hug  ⩇ : ⩇ 𝗌un ഒ\n#CaratSelcaDay #CSD #JOSHUA\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/rlYaqpCWzn
## 2800                                RT @kpopBg_ontop: Spotify Weekly Top Artists Japan (December 2-8, 2022)\n\n#1 #BTS (=)\n#14 #SEVENTEEN (=)\n#25 #StrayKids (+3) *new peak*\n#50…
## 2801                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2802                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 2803                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2804                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2805                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2806                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 2807                             RT @oceanzii: That someday it would lead me back to you.\n\n#CaratSelcaDay #CSD #DK #DOKYEOM #SEOKMIN #도겸 @pledis_17 #세븐틴 #SEVENTEEN https://…
## 2808                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 2809                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 2810                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 2811                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 2812                             RT @allmylovetosvt: appreciating the view with him 🌆🤍\n\n#csd #caratselcaday\n#the8 #minghao #디에잇\n#seventeen @pledis_17 https://t.co/V8Zx45n1hh
## 2813                                   RT @blcshao_o: ⑅⁠˖⁠♡ you've always been there for me\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/NqEWOXrN1N
## 2814                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2815                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2816                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2817                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2818                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 2819                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2820                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2821                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 2822                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2823                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2824                                     RT @_TRaveller_8: 221127☀️Be The Sun☀️ in Tokyo\n\n#디에잇 #THE8 \n#서명호 #徐明浩 #ミンハオ\n#세븐틴      #SEVENTEEN https://t.co/AoyYsYPB14
## 2825                              RT @mochicherryyy: ╰Joshua’s birthday ◠‿◠\n— Photobooth event 📸\n\nᵇʸ @mochicherryyy x @ciatrtekan 🎀\n\n📍Available at palette._.id\n📆 Period : 22…
## 2826                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 2827                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2828                           RT @vantaebearV: Good food and company make us happy 💕\n\n#CaratSelcaDay #CARAT #csd #SEVENTEEN #SCOUPS #에스쿱스 #세븐틴 @pledis_17 https://t.co/A3…
## 2829                                  RT @cheoliebee: (¯`*•.¸,¤°´✿.。.:*  𝚃𝙷𝙴 𝚂𝚃𝙾𝚁𝚈 𝙾𝙵 𝓔𝓻𝓸𝓼 *.:。.✿`°¤,¸.•*´¯)\n\nas we depend on light from a single candle, we look at the light as…
## 2830                                         RT @woonkienn: museum date ?\n\n- #CaratSelcaDay #CSD #DOKYEOM #SEOKMIN #도겸 #세븐틴  @pledis_17 #SEVENTEEN  - https://t.co/8MlHE6kRZ7
## 2831                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 2832                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 2833                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2834                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2835                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2836                                    RT @vernloversclub: i will legitimately never forget the official seventeen tiktok removing the hashtag on that emoji bc it was just this v…
## 2837                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2838                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2839                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 2840                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 2841                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2842                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2843                               RT @isaganiyangdo: wts lfb ° ph hatian\n\nSEVENTEEN FACE THE SUN YIZHIYU F\n• ₱590 ea\n• a + b, can tingi b\n• can steal if getting wz, sk, dn o…
## 2844                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2845                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2846                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2847                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2848                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 2849                                               RT @billboard: SEVENTEEN chat with Billboard about their New Year's resolutions and new music in 2023. 👀  https://t.co/BwOz3SfxpF
## 2850                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 2851                              RT @gelgel_ly: You stole my heart, but i’ll let you keep it❤️\n#CaratSelcaDay #CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철  #choiseungcheol @pledis_17…
## 2852                              RT @jasgrenae: 🌸BeTs Be the Sun Bulacan Freebies\n\nHelp RT\nNew Carat here 🥹💕\nSupport nyo naman effort ko hahahah\n\n🌷 Open for both Team Labas…
## 2853                                     RT @dazed420gaming: How dumb #pzgd #pzgdfam #dazedgaming #XboxSeriesX #PS4share #PS5 #gaming #streamer #win #SmallStreamersConnectRT #news…
## 2854                               RT @isaganiyangdo: wtb lfs ph\n\nMINGYU NOOT NOOT / FLOWER PCS\n• 🤍 = prio, ❌️ = already have\n• preferably can meetup at bets bul\n\n— reply/dm…
## 2855                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 2856                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2857                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2858                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2859                                                                   RT @yurlvme: date with gyu 😋💗\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 https://t.co/Y66KywHogR
## 2860                             RT @sound_of_snow7_: •••\n𝑂𝑛𝑙𝑦 𝑡ℎ𝑜𝑠𝑒 𝑤ℎ𝑜 𝑐𝑎𝑟𝑒 𝑎𝑏𝑜𝑢𝑡 𝑦𝑜𝑢 𝑐𝑎𝑛 ℎ𝑒𝑎𝑟 𝑦𝑜𝑢 𝑤ℎ𝑒𝑛 𝑦𝑜𝑢'𝑟𝑒 𝑞𝑢𝑖𝑡𝑒\n•••\n#CSD\n#CaratSelcaDay\n#DINO\n#SEVENTEEN \n#CARAT http…
## 2861                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2862                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2863                        RT @httpdkesc: ෆ SEVENTEEN Be The Sun in Bulacan Freebie ෆ \n\nHi, carats! I'll be giving away freebies on d-day! Fan Support for #도겸 &amp; #에스쿱스…
## 2864                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 2865                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2866                                              RT @Wonder_ww717: 221204 Be The Sun in Nagoya\n🍊💙\n#세븐틴  #SEVENTEEN  #원우 #WONWOO #ウォヌ \n@pledis_17 https://t.co/vhTSQcQgD2
## 2867                                                                                                         RT @absterwebby: get it deekay #LA3C #SEVENTEEN https://t.co/0SFZPCcGwI
## 2868                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 2869                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 2870                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2871                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2872                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2873                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 2874                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2875                             RT @won_wooniee: ❥ My sunshine, my happy place🍃🖤. \n\n-Salam damaii🙏🏻\n───●◎●───\n\n[#MINGYU #CaratSelcaDay #SEVENTEEN #KimMingyu #민규 #CSD @pled…
## 2876                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2877                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2878                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2879                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2880                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 2881                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 2882                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 2883                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2884                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2885                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 2886                                  RT @loveelykiim: i can’t wait for you to make another outstanding history tomorrow at the world’s largest indoor arena ♡\n\ni hope you guys w…
## 2887                                        RT @chventeen: guess who's back for the last csd this year :) \n\n#CaratSelcaDay #csd #wonwoo #SEVENTEEN #세븐틴 https://t.co/yCDetQT4QT
## 2888                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 2889                                                     RT @Armgu_17: Mingyu and The8 cute shoulder dance🥹\n #LA3C #Mingyu #The8 #徐明浩 #金珉奎 #SEVENTEEN https://t.co/iRSvctjpQD
## 2890                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2891                      RT @CaratOppa: [SPECIAL TWEET] \nSEVENTEEN (세븐틴) DK with SEVENTEEN Member Update!\n\n#세븐틴 #SEVENTEEN \n\n🔗 https://t.co/xWFPUyk1mW\n\nTags: \n#SVT_…
## 2892                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 2893                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 2894                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2895                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 2896                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 2897                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2898                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2899                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 2900                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 2901                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2902                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2903                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2904                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2905                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2906                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2907                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 2908                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2909                                                        RT @tzcarat: One day event on freevote! start collecting for the next cb!\n#SEVENTEEN @pledis_17 https://t.co/awR54mVP7V
## 2910                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 2911                               RT @mochishuuu: "I don't think glasses look good on you, sir"\n\n#CSD #CaratSelcaDay #scoups #seventeen #세븐틴 @pledis_17 https://t.co/GyH3x8qc…
## 2912                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2913                                 RT @dinwoogf: i love you, i love you and i love you.\n\n#CaratSelcaDay #CSD #DINO #디노 #SEVENTEEN  #세븐틴  @pledis_17 https://t.co/nn2eb0Ab8D
## 2914                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2915                  RT @svt_verse: [#호시 🌟 221216] 4:24 PM KST\n\n#HOSHI: Ah.. ? My stye medicineㅠ I forgot it ..\n\n&gt; ㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it (with me) tho…
## 2916                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2917                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2918                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2919                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2920                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 2921                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2922                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2923                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2924                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 2925                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2926                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 2927                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 2928                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 2929                                  RT @nox_et_stellae: #matchablossom\n\nThey were seventeen. Kaoru sat on the bench overlooking the skatepark, his silhouette framed by the sun…
## 2930                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2931                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 2932                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2933                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2934                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 2935                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 2936                              RT @haominn_: ✨Seventeen Be the Sun in Bulacan✨ freebies by @ai_yjhanie @blinkeu_b &amp; me🙋🏻‍♀️💎\n\nWe'll be giving away 85 packs to random cara…
## 2937                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2938                                  RT @_wonwoorideul__: wts lfb ph seventeen photocards\n#yanatindera \nmostly wonwoo yung andito, strictly sold as set but y'all can look for k…
## 2939                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2940                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2941                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2942                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2943                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2944                         RT @maikwannie: WTS LFB PH\n\nWonwoo, Vernon SET\n- ₱1,600/set\n\n-❌ sensitive\n- pbd in pic\n- strictly sold as set\n\nPlease help rt\n\n🏷 seventeen…
## 2945                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2946                              RT @into_SooHui: wts lfb bets bulacan lbb reg tickets\n\ncan give the tickets for 9k pero negotiable \n- arena meet up\n- can give freebies\n\nsv…
## 2947                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2948                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 2949                                                                                                                                               RT @kimbabnude: Vote seventeen 🙏🏻
## 2950                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2951                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 2952                             RT @smplyfallinforu: ☀️ BE THE SUN in Bulacan ☀️\n\n💎 SCoups, Jeonghan, Woozi and Joshua birthday freebies 🍒😇🍚🦌\n\nDecember 17, 2022\nTime &amp; Loc…
## 2953                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 2954                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2955                                       RT @Yheelabolala: Yeah, heart set on fire, no lie, we’re sure \n#CaratSelcaDay #SCD #SEVENTEEN #세븐틴 @pledis_17 https://t.co/V2moDTQWvY
## 2956                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 2957                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2958                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 2959                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 2960                                             RT @svtbz_Q8: he just won't stop copying me 😤 #CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/HlyMVkiehU
## 2961                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2962                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 2963                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 2964                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 2965                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 2966                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 2967                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 2968                                                            RT @cutelikejoon: just trying something new 📸#CaratSelcaDay #CSD #SEVENTEEN #THE8 @pledis_17 https://t.co/ICxYsVIQqd
## 2969                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2970                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 2971                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2972                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 2973                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2974                          RT @djeongwooz: ꒰ wts / want to sell / lfb ꒱\n\n✦ photocard  \n🛒 shopee\n💸 on pic\n✅ keep event w dp\n📍INA, Jakarta \ntags. wts pc seventeen enhyp…
## 2975                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 2976                             RT @shemcart: #ShemmyPasabuy \n\nWts lfb ph only \n\nSeventeen Gyuhao Dream Kyocera Photocards Set(2 pcs)\n💸 ₱1500 (all in + lsf)\n❗ You can look…
## 2977                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 2978                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2979                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2980                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 2981                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 2982                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 2983                          RT @KVotingPop: FREE VOTES FOR SEOUL MUSIC AWARDS!\n\n💛1,000 hearts\n🏆Main voting\nDay 7\n\n⛔Rules\n—Follow + Like + Retweet\n—Post proof\n—Winner a…
## 2984                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 2985                                RT @Ujing1122: ANNYEONG CARATDEUL HERE ARE THE FREEBIES THAT WE WILL BE GIVING AWAY LATER AT PH ARENA \n\n🧡 TICKET HOLDER \n🧡 WRISTBAND \n🧡 LOO…
## 2986                                  RT @kidultjisoo: as a dinonara, this is the best thing that has ever happened to me.\n\n#Seventeen #SEVENTEEN_WORLDTOUR_BETHESUN #Seventeenin…
## 2987                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 2988                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 2989                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 2990                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 2991                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 2992                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 2993                                RT @_bubblethe8: [ Seoul Music Awards ] \n\nThis is a REMINDER that we STILL HAVE ONGOING VOTING. Everyone can VOTE\n\nPLEASE KEEP COLLECT GOLD…
## 2994                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 2995                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 2996                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 2997                                 RT @SheepEnDiamant: +fully shown off."\n\nFive entries for SEVENTEEN!! Five!!! \nI'm so so proud of all the recognition Face The Sun and Secto…
## 2998                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 2999                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3000                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3001                                                RT @cherishthe17: Seventeen's 2023 Bucket list\n\nWonwoo recommended overseas TTT\n\n😭😭 Wonwoo best boy\nhttps://t.co/btb2FB9QTG
## 3002                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3003                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3004                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3005                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3006                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 3007                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3008                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3009                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3010                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3011                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3012                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3013                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 3014                                                                               RT @miss_svtmafia: SEVENTEEN, Kings of Synchronization @pledis_17 #세븐틴 https://t.co/ZnqVTzbyQf
## 3015                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3016                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3017                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 3018                               RT @coupsblossom: 𝘐’𝘮 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘺𝘰𝘶 𝘤𝘢𝘯 𝘤𝘰𝘮𝘦 𝘵𝘰 \n𝘠𝘰𝘶’𝘳𝘦 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘐 𝘤𝘢𝘯 𝘨𝘰 𝘵𝘰\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #SVT #승관 https://t…
## 3019                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3020                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3021                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3022                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 3023                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3024                       RT @jhsmp4: LEADERS DOING THE MOST AWAITED CHEERS CHOREO \n\n#SEVENTEEN #LA3C #SVT_RockTheLA3C_Festival\n#SEVENTEEN_AT_LA3C\n#세븐틴_더큰꿈을향해_LA3C h…
## 3025                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3026                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3027                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 3028                                                         RT @0HMYTEEN: 221215 #SEVENTEEN #Seungkwan Instagram Story Update with Remember Me by #OHMYGIRL https://t.co/TKRdTlvdly
## 3029                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3030                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3031                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3032                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3033                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3034                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3035                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 3036                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 3037                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3038                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 3039                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 3040                               RT @jamaisvu_n: WTT — WANT TO TRADE\n#BETHESUNinJKT\nBE THE SUN Additional Show \n\nHave: 1 tix MCP BLUE E SC 3xx\nWant: 1 tix MCP BLUE B SC (qn…
## 3041                                    RT @seventeen: Meghan Markle's Instructions for Her British 'Vogue' Cover Shoot Say a Lot About Her https://t.co/NKaqQvMKKI https://t.co/pN…
## 3042                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3043                                   RT @seoksoominwon: ✿ SEVENTEEN #BeTheSuninBulacan FREEBIES ✿\n\n17 days before d-day! I'll be giving some freebies on concert day caratdeul.…
## 3044                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3045                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3046                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3047                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3048                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 3049                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3050                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 3051                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3052                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3053                                                            RT @JeonKate_Que: ꔛ seventeen "be the sun" — manila 221010 in film camera 🎞️📸\n\n- a thread 🪡 https://t.co/1ylPqnPaat
## 3054                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3055                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3056                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 3057                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3058                                                   RT @elyxeura: The art and the artist 🎨\n\n#CaratSelcaDay #SEVENTEEN\n#세븐틴 #THE8 #디에잇 @pledis_17 https://t.co/Kn13F3S7SP
## 3059                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3060                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3061                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 3062                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3063                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3064                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3065                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3066                            RT @kyeomijie: ✨Be The Sun in Bulacan giveaway✨\n\nHi I will be giving away some pcs, unsealed carver (dk&amp;jh) and fts album, and unofficial c…
## 3067                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3068                                                         RT @luvrcheoI: me and bae 🤝 mirror pics #CSD #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #SCOUPS https://t.co/J0dvaGERc8
## 3069                                            RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 3070                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3071                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3072                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3073                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3074                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3075                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3076                                    RT @dokyeomshine: REMINDER TO FILO CARATS, EVERYONE IN GENERAL, TO RESPECT SEVENTEEN’S PRIVACY!! THEY SAID, PLEDIS WON’T BE INCLUDING PHILI…
## 3077                              RT @bestboywonuu: HELP RT\n\nhi ph &amp; intl carats! we're accepting any amount of donations/sponsors to buy bets in bulacan tickets (for giveaw…
## 3078                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3079                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3080                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3081                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3082                                                                     RT @bernacnti: [SEVENTEEN BE THE SUN FREEBIES]\n\nSee you later🤧😭\n\n#BeTSinBULACAN https://t.co/nN7W3Opx7q
## 3083                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3084                                    RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 3085                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 3086                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3087                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 3088                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3089                                    RT @seventeen: Royal Expert Claims Prince William and King Charles Are in a Full Rage Spiral Post-Docuseries https://t.co/iLzq9rYUYo https:…
## 3090                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3091                                    RT @breakerenids: ⋆。˚ ❀ begging for you to take my hand wreck my plans, that's my man ˚ ༘♡ ⋆。˚ ꕥ \n#CSD #CARAT_SELCA_DAY #SEVENTEEN #JEONGHA…
## 3092                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3093                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3094                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3095                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 3096                             RT @gyulcart: wts lfb ph \n\nSEVENTEEN BeTS Bulacan themed Lanyard/ ID Lace ☻\n₱160 each\n\nAvailable in 3 official concert theme colors! 🧡🤍🖤\n\n⤷…
## 3097                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 3098                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 3099                                 RT @cholulasmarket: ‼️ URGENT 😭😭\n\nwts lfb seventeen be the sun bulacan lowerbox 105 row 16\n- meet up ph arena\n- rfs: emergency\n- you’ll be…
## 3100                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3101                                                RT @kzells13: #EKSTRAGA #2\n\n₱50 GCASH GIVEAWAY - 1 WINNER\n\nMust retweet below post 👇🏼 \n\nSeventeen onhand\n\nEnd dec 17 6am
## 3102                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3103                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3104                              RT @kzells13: WTS / LFB \n\nDK ALBUM PC \nHenggarae an ode attacca hana dul set  poet \nJeonghan hoshi dino vernon\nSOGO VER 1\n\nOHAND AND READY…
## 3105                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3106                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3107                                    RT @coupranghae_17: @coupedetaat SEVENTEEN is the king of self produce, not only in music. They need to go see Mingyu self made magazine he…
## 3108                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3109                          RT @cheollie_hannie: WTS LFB PH\n\nSEVENTEEN SG2023 TINGI NETA\n\n— secured\n— dop, January 4\n— NO CANCELLATION\n— Batch 3 to be posted once 1&amp;2…
## 3110                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3111                             RT @SVT_Fancafe: [#MINGYU🌟 Weverse]\n221215 -19:53 KST-\n\n➸ By any chance, has anyone seen my... earphones at the airport.......\n\n#민규 #SEVENT…
## 3112                            RT @jwwbns: wts lfb\n\nhoshi set - 1280php\n\n- onhand\n- prio payo, 2 days dop\n- x sensitive\n- gcash, jnt direct, visayas\n\nseventeen henggarae…
## 3113                     RT @kimshiror: 🍥 ~ wts lfb ~ 🍥\n🍥 ~ #shirosells\n\n♡ enhypen &amp; svt pcs ♡\n\n• onhand\n• see 2nd pic for prices &amp; info\n• rcbyt https://t.co/ShKR4B…
## 3114                            RT @pledischarts: #SEVENTEEN 7th Mini Album `헹가래` has now surpassed 1,600,000 (1.6 Million) copies sold on Circle (GAON). 🎉\n\n#세븐틴 @pledis_1…
## 3115                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 3116                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3117                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3118                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 3119                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3120                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3121                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3122                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3123                            RT @vitamingyuuu: best stress buster?\na video call with him.\n\n#CSD #CaratSelcaDay #WOOZI #우지 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/fN6zRv…
## 3124                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3125                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3126                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3127                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3128                                    RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 3129                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3130                                RT @hanisyruup: Be The Sun in Bulacan Freebies ☀️\n\n↬ Strictly 1:1\n↬ follow @/theadvisordiaries on ig (optional)\n↬ Time/Loc : TBA\n↬ Say “Shi…
## 3131                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3132                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3133                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3134                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 3135                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3136                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3137                                                              RT @kwonhochie: the card was FacE ThE SuN\n\n#CaratSelcaDay  #csd #CARAT #SEVENTEEN #hoshi https://t.co/JxLqsHkgGO
## 3138                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3139                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3140                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3141                             RT @brilliantshua: (please help RT)\nOpen Pre Order by brilliantshua\n\n ✨ Carat Bong Ribbon 🌟\n \n🩰 Pickup venue w dp 20k/pc\n🌷 Keep event 🍊/🍏 j…
## 3142                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 3143                                                                       RT @Bitteriejeon: 👍✌️couple..\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/TTxrwVW3ah
## 3144                                       RT @seventeen: Addison Rae Doubles Down on the No-Pants Trend in an Oversized Vintage Tee https://t.co/Sb7PGmvS7M https://t.co/2qrDWEl9PB
## 3145                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3146                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3147                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3148                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3149                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3150                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3151                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3152                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3153                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3154                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3155                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3156                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 3157                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3158                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 3159                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3160                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 3161                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3162                                    RT @seventeen: Hailey Bieber Gives Her Viral Glazed Donut Nails a Holiday, Candy Cane-Themed Update https://t.co/3jtPpMEp0B https://t.co/ah…
## 3163                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3164                                   RT @m1n9yu_ku: Let them know about us. \n\n#CSD #CaratSelcaDay \n#THE8 #MINGHAO #명호 \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/YkYFpZIqe3
## 3165                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3166                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3167                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3168                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3169                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3170                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 3171                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3172                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3173                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3174                                       RT @philconcerts: SEVENTEEN has arrived safely in Manila. Let's make history tomorrow at the world's largest indoor arena. #BeTSinBULACAN
## 3175                                 RT @loleng_whalien: BE THE SUN BULACAN FREEBIES from @SVTPHUnnie \n\nSEE YALL LATERS CARATDEULS 🫶💎\n\n#bethesunbulacan #BETHESUNwithSVT #CARAT…
## 3176                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3177                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 3178                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3179                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3180                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 3181                                                               RT @Koreaboo: SEVENTEEN's Mingyu Prepares For Philippine Weather With His Airport Fashion https://t.co/Gu7uaNZFJE
## 3182                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3183                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3184                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3185                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3186                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3187                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3188                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3189                               RT @pledis_17: [17'S] SEVENTEEN WORLD TOUR [BE THE SUN] IN MANILA\n\n#SVT_WORLDTOUR_BETHESUN\n#SEVENTEENinMANILA\n#BETHESUN_MANILA\n#BETHESUNwit…
## 3190                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3191                                  RT @essicakes_: YUNG SURE LANG PLEASE. LET US NOT WASTE EACH OTHER'S TIME!!!!\n\nwts 1 roundtrip bus slot for bets in bulacan (cubao pick up)…
## 3192                               RT @pledis_17: [17'S] SEVENTEEN WORLD TOUR [BE THE SUN] IN MANILA\n\n#SVT_WORLDTOUR_BETHESUN\n#SEVENTEENinMANILA\n#BETHESUN_MANILA\n#BETHESUNwit…
## 3193                            RT @seokmin_br: [📸] 16.12.22. #DK, #DINO e #VERNON para o Seventeen Season's Greetings 2023.\n\n© 13thistory\n\n#도겸 #세븐틴 #SEVENTEEN @pledis_17…
## 3194                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3195                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3196                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3197                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3198                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3199                              RT @gelgel_ly: You stole my heart, but i’ll let you keep it❤️\n#CaratSelcaDay #CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철  #choiseungcheol @pledis_17…
## 3200                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3201                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3202                                     RT @jishoocho: 🖇·˚ ༘ ┊͙[Love you to the moon and to Saturn.] !  ˊˎ\n#CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 https://t.co/2am2T8E2IJ
## 3203                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3204                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3205                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 3206                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3207                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3208                                                         RT @caramelchiiato: sunset state of mind \n\n#CSD #CaratSelcaDay #WONWOO\n#SEVENTEEN @pledis_17 https://t.co/Au3nsVI2md
## 3209                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3210                           RT @scribbeys: hi. helping a friend!\n\nWTS LFB \n\nBE THE SUN IN BULACAN \nUPPERBOX B REG 426\nRow 89\nSeat 542\n\nPrice: 4,750 thru gcash or paypa…
## 3211                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3212                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 3213                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 3214                                 RT @mydeardreamies: wts lfb svt seventeen be the sun bulacan manila\n\nLBB Premium\n- price is very negotiable (SURE DISCOUNT)\n- friend can't…
## 3215                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3216                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3217                                   RT @kwon_dino_: carat selca day!! \n#SEVENTEEN #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN_AT_LA3C #16December #dk #DOKYEOM #SEOKMIN https://…
## 3218                                                       RT @fallfljws: from alay to slay. #CaratSelcaDay #CSD #WONWOO #원우 #세븐틴 #SEVENTEEN @pledis_17 https://t.co/hCZQ2FrjBB
## 3219                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3220                                                RT @kzells13: #EKSTRAGA #2\n\n₱50 GCASH GIVEAWAY - 1 WINNER\n\nMust retweet below post 👇🏼 \n\nSeventeen onhand\n\nEnd dec 17 6am
## 3221                      RT @leedk_skmn: ♡   (\\   (\\\n     (&gt;ㅅ&lt; )  ♡\n┏━━∪∪━━━━━━━━━┓\n♡  🌸date with him🌱  ♡\n┗━━━━━♡━━━━━━━┛\n#csd #CaratSelcaDay #SEVENTEEN #DK #DOKYEO…
## 3222                                          RT @kjlvVooo: ㅡ𝐟𝐮𝐧 𝐝𝐚𝐭𝐞 𝐧𝐢𝐠𝐡𝐭 𝐰𝐢𝐭𝐡 𝐲𝐨𝐮. \n\n#CSD #CaratSelcaDay #JOSHUA #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/mhS7TFd4If
## 3223                             RT @oceanzii: That someday it would lead me back to you.\n\n#CaratSelcaDay #CSD #DK #DOKYEOM #SEOKMIN #도겸 @pledis_17 #세븐틴 #SEVENTEEN https://…
## 3224                              RT @kzells13: WTS / LFB \n\nDK ALBUM PC \nHenggarae an ode attacca hana dul set  poet \nJeonghan hoshi dino vernon\nSOGO VER 1\n\nOHAND AND READY…
## 3225                                                             RT @cigembutosunday: – taste,?\n\n#CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN #정한 @pledis_17 https://t.co/CRvgeYpnUU
## 3226                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3227                             RT @gyulcart: wts lfb ph \n\nSEVENTEEN BeTS Bulacan themed Lanyard/ ID Lace ☻\n₱160 each\n\nAvailable in 3 official concert theme colors! 🧡🤍🖤\n\n⤷…
## 3228                               RT @hoRANGHAEshiii: wts lfb svt bets ph \nSeventeen Be the sun in Bulacan\n\n-UBC REG 432 ROW 98 SEAT 678\n-1,500php (discounted from 1,850)\n-P…
## 3229                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 3230                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 3231                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3232                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3233                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3234                                                                                                                RT @imckyunstd: monsta x and seventeen ♡ https://t.co/J2DjHLFRkW
## 3235                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3236                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3237                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3238                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 3239                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3240                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3241                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 3242                                 RT @svntncarat17_: IT'S FINALLY D-DAY CARATS!!! 🔥🔥🔥\n\n#BeTSinBULACAN #SEVENTEENinBULACAN #SEVENTEEN_WORLDTOUR_BETHESUN  @pledis_17\nhttps://t…
## 3243                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 3244                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 3245                              RT @nishiyoons: ╭┈◦•◦❥•◦ 🌸 BETS IN BULACAN FREEBIES 🌸\n\nI’ll be giving out freebies in BETS Bulacan so maghanapan tayo hehe💕\n\n✨To Claim:\n- L…
## 3246                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3247                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3248                                            RT @pledis_17: 20211004 Happy JEONGHAN’s Day 😇\n\n#Happy_JEONGHAN_Day\n\n#정한 #JEONGHAN\n#세븐틴 #SEVENTEEN https://t.co/oEW8gJXgB1
## 3249                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 3250                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3251                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3252                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3253                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3254                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 3255                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3256                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 3257                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 3258                                                  RT @HOSHIeez: Same place, different time .•°\n\n#CaratSelcaDay #CSD #DOKYEOM #DK #SEVENTEEN @pledis_17 https://t.co/3ITyfVRPVa
## 3259                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 3260                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3261                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3262                                          RT @americaprince__: 𝘗𝘏𝘖𝘛𝘖𝘉𝘖𝘛𝘏 𝘞𝘐𝘛𝘏 𝘏𝘐𝘔 📸\n\n#CSD #CaratSelcaDay #JOSHUA #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/k1F4VBvIhp
## 3263                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3264                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3265                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3266                              RT @jammydoodle: ❀ SEVENTEEN Be The Sun in Bulacan ❀\n\nFan Support for #SCOUPS🍒\n\nFor more information, please check photo below. 😊\n\nSee y'al…
## 3267                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3268                       RT @treasure_cart: a little giveaway for #BeTheSunBulacan \n\nFOLLOW us &amp; @teumecarat1213\nRT &amp; LIKE this post..\n\nkamsahamnida...\nSEE YOU ALL…
## 3269                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3270                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3271                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3272                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3273                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3274                                  RT @ann_yeonggggggg: 💎 BE THE SUN IN BULACAN FREEBIES\n\n💎 Hi carats! I’m giving away these customized PH CARAT SEVENTEEN KEYCHAINS on d-day,…
## 3275                                 RT @gyudkmel: “Love is the flower you’ve got to let grow.”🌷 – John Lennon\n\n#CaratSelcaDay #CSD #MINGYU\n#SEVENTEEN  @pledis_17 https://t.co/…
## 3276                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3277                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3278                           RT @kawaiikyeom: . . . for our sun, deekay 🤓\n\n— BeTS in Bulacan freebies —\n\n+ randomly distributed\n+ open to all carats!!\n+ like &amp; rts are…
## 3279                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3280                                RT @ae_fngrl: 💙💗💙💗💙💗💙💗💙💗💙💗💙\n   D-DAY of Be The Sun in BULACAN \n                              ♡\n     see you again, SEVENTEEN !\n 💙💗💙💗💙💗💙💗💙💗💙…
## 3281                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3282                                   RT @seoksoominwon: ✿ SEVENTEEN #BeTheSuninBulacan FREEBIES ✿\n\n17 days before d-day! I'll be giving some freebies on concert day caratdeul.…
## 3283                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3284                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3285                               RT @mujicprod: ꨄ Be the Sun in Bulacan (another) UBC Reg 🎫\n\n[1 winner]\n- like and rt this tweet \n- tag 3 carat besties\n- reply your streami…
## 3286                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3287                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3288                            RT @mownchild: —An art gallery could never be as unique as you.\n\n#CSD #CaratSelcaDay #MINGYU #김민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/M…
## 3289                                                                  RT @wnwoostar: my sunshine and i 💟 ! \n#CSD #CaratSelcaDay #DOKYEOM #SEVENTEEN #디에잇 https://t.co/njvPa9YJiV
## 3290                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3291                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 3292                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3293                                                        RT @butterfluers: Proud boyf\n\n#CaratSelcaDay #CSD\n#WOOZI #버논 #SEVENTEEN\n#세븐틴 @pledis_17 https://t.co/frEd1x4nzZ
## 3294                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3295                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3296                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3297                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 3298                                RT @wonranghxee: Let's go on more dates that require putting greens and golf clubs🏌🏻🤎🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #…
## 3299                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3300                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3301                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3302                             RT @dnonarats: #CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN #세븐틴 @pledis_17 \n\nthe photographer            his favorite view https://t.co/G9y…
## 3303                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3304                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 3305                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 3306                          RT @BrasilDino: [📸 SCAN]- 16.12.22- \n#DINO, #DK e #VERNON para o Season’s Greetings 2023\n\n🦀 \n#DINO #SEVENTEEN #디노 @pledis_17  #세븐틴 \nCr: 13t…
## 3307                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3308                                                             RT @hansolmes: me and my husband 🐈‍⬛\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #VERNON https://t.co/giwPPCznws
## 3309                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3310                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3311                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3312                          RT @BrasilDino: [📸 SCAN]- 16.12.22- \n#DINO para o Season’s Greetings 2023\n\n🦀 \n#DINO #SEVENTEEN #디노 @pledis_17  #세븐틴 \nCr: 13thistory https:/…
## 3313                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3314                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3315                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3316                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3317                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3318                                                   RT @notdandelion: PUT YOUR MOTHER FUCKER HANDS UP\n\n#CSD #HOSHI #CaratSelcaDay @pledis_17 #SEVENTEEN https://t.co/6lZ5cvS68r
## 3319                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3320                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3321                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3322                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3323                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3324                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3325                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3326                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 3327                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3328                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3329                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3330                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3331                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3332                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3333                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3334                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 3335                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 3336                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 3337                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3338                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3339                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 3340                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3341                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3342                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3343                                                                                  RT @absterwebby: you better hit those notes woozi!!!! #LA3C #SEVENTEEN https://t.co/u2MJ7neoIC
## 3344                                         RT @SHUABBY: i never get tired of the blue sky✧⁠*⁠。\n\n[#CSD #CaratSelcaDay #DK #JEONGHAN #SEVENTEEN @pledis_17] https://t.co/JXs8WnBlDP
## 3345                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 3346                                RT @wonranghxee: Let's go on more dates that require putting greens and golf clubs🏌🏻🤎🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #…
## 3347                                                                          RT @wonubliss: getting too excited. just upgraded my tix from ubc to lba 🫠 see u vvv soon, seventeen 🫶
## 3348                             RT @won_wooniee: ❥ My sunshine, my happy place🍃🖤. \n\n-Salam damaii🙏🏻\n───●◎●───\n\n[#MINGYU #CaratSelcaDay #SEVENTEEN #KimMingyu #민규 #CSD @pled…
## 3349                                                             RT @hansolmes: me and my husband 🐈‍⬛\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #VERNON https://t.co/giwPPCznws
## 3350                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3351                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3352                              RT @arcthe8: we could leave the christmas lights up 'til january \n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #JUN #준 #세븐틴 @pledis_17 https://t.…
## 3353                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3354                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3355                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3356                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3357                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 3358                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3359                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 3360                               RT @ayshuahong_: An equation between me and you\n\n🙇‍♀️📷\n\n#SEVENTEEN #CSD #세븐틴 #CaratSelcaDay #민규 #MINGYU @pledis_17 https://t.co/Fz3viTeXHn
## 3361                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3362                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 3363                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3364                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3365                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3366                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3367                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3368                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3369                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 3370                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3371                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3372                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3373                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3374                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3375                                  RT @ciplayoo_n: "If the world attack and you slide off track, remember one fact, i got your back"\n–Will Smith\n\n#CSD #CaratSelcaDay #JOSHUA…
## 3376                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3377                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3378                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3379                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 3380                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 3381                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3382                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3383                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3384                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3385                         RT @jieehaniyoo: "If i can't have you no one should"\n\n#CSD #CaratSelcaDay \n#CARAT_SELCA_DAY\n#DK #도겸\n#SEVENTEEN #세븐틴\n@pledis_17 https://t.co…
## 3386                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 3387                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 3388                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3389                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3390                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3391                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 3392                                  RT @wonusuals: from "we're breathing the same polluted air" "team bahay" "team labas" to "team concert" "see you, seventeen" \n\nI CAN FINALL…
## 3393                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3394                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3395                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3396                                RT @DealsOnRPGs: Check out the Rifts Core Mega Bundle at @BundleHolding \n\nRifts Ultimate Edition and Seventeen(!) major supplements!\n\nhttps…
## 3397                                 RT @cartchives: # want to sell / wts carbong v1 \n\n( 400.000 ) \n✅ all in good condition, nyala terang, inc battery + bonus pc attacca the8,…
## 3398                                    RT @envimediaco: Calling all sneakerheads! 👟👀 If you’re looking for new kicks, check out how you can steal #SEVENTEEN’s #Hoshi’s style from…
## 3399                                     RT @nooirbug: hello ive been watching mlb since 2016 so i decided to join #mlbtwt :-) my name is alice, im seventeen and my fav characters…
## 3400                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3401                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3402                                    RT @breakerenids: ⋆。˚ ❀ begging for you to take my hand wreck my plans, that's my man ˚ ༘♡ ⋆。˚ ꕥ \n#CSD #CARAT_SELCA_DAY #SEVENTEEN #JEONGHA…
## 3403                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3404                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3405                                                                   RT @pupyqi: my fav place in him.\n\n#caratselcaday #csd #MINGYU #seventeen @pledis_17 https://t.co/lROwClPeCF
## 3406                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3407                              RT @hazycacarrot: your lips my lips, apocalypse~\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 @pledis_17 https://t.co/Rf1dnmKq2O
## 3408                               RT @WorldwideCarats: [VOTING]\n2022 HANTEO MUSIC AWARDS NOTICE\n\nTo CARATs,\n\nThe SVT Fanbases have decided to prioritize voting on the "GRAND…
## 3409                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 3410                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 3411                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 3412                                    RT @rvsvtfiles: throwback to red velvet and seventeen's red and black outfits in last year's, 2021, kbs gayo daechukje https://t.co/On48X8L…
## 3413                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3414                                                                                                                                             RT @jacimp3: SEVENTEEN THIRTY EIGHT
## 3415                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3416                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3417                                    RT @svtcontents: 🎥 Boy group TRENDZ performed SEVENTEEN's 'HIT' on 2022 AAA's After Stage! Here's the introduction video of their performan…
## 3418                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 3419                                                                                               RT @sounds_of_cheol: seventeen today going to ph 🛫 ot13 🖤 https://t.co/CVgO1urLZY
## 3420                              RT @etherealdk: —sharing pics bcs we can’t see each other yet ㅠㅠ\n\n[ #CSD #CaratSelcaDay #SEVENTEEN #dokyeom #도겸 @pledis_17 ] https://t.co/4…
## 3421                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3422                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 3423                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3424                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3425                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3426                                                                          RT @sounds_of_cheol: seventeen heading to ph today ✈️ have a safe flight boys 🖤 https://t.co/A11KHyOizW
## 3427                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3428                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3429                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3430                                                                                                                                                      RT @QueenDarong: Seventeen
## 3431                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3432                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3433                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3434                                                                                       RT @sounds_of_cheol: seventeen in ph 🇵🇭 \nlechon - bbq - jollibee https://t.co/cpdM7h85Oo
## 3435                                                             RT @hansolmes: me and my husband 🐈‍⬛\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #VERNON https://t.co/giwPPCznws
## 3436                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3437                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3438                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3439                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3440                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3441                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 3442                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3443                                  RT @JeremyCorbell: I'm excited to be able to do this. For a limited time - watch my THREE films for free on YouTube!\n\nTHESE BE DIRECT LINKS…
## 3444                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3445                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3446                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3447                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3448                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 3449                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3450                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3451                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3452                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3453                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3454                                    RT @svtcontents: 🎥 Boy group TRENDZ performed SEVENTEEN's 'HIT' on 2022 AAA's After Stage! Here's the introduction video of their performan…
## 3455                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3456                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3457                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3458                           RT @jaz_beomjun: ✨BETS IN BULACAN FREEBIES✨\n\n~open to all carats \n~randomly distributed \n~limited quantity \n\n#BeTheSuninBULACAN\n#BeTSinBULA…
## 3459                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3460                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3461                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3462                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3463                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3464                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3465                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3466                                RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 3467                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 3468                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3469                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3470                                                         RT @coupsofnoodle: me and jeonghan: 😎 \n\n#CSD #CARAT_SELCA_DAY #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jPlfIteEXs
## 3471                                    RT @chwepuff: ♡. ·˚ ༘🐻‍❄️🎀༉‧₊˚✧\n𝘺𝘰𝘶 𝘢𝘳𝘦 𝘵𝘩𝘦 𝘳𝘦𝘢𝘴𝘰𝘯 𝘪'𝘮 𝙨𝙢𝙞𝙡𝙞𝙣𝙜\n𝘸𝘩𝘦𝘯 𝘵𝘩𝘦𝘳𝘦'𝘴 𝙣𝙤𝙩𝙝𝙞𝙣𝙜 𝘵𝘰 𝘴𝘮𝘪𝘭𝘦 𝘢𝘣𝘰𝘶𝘵 ₍ᐢ.  ̯.ᐢ₎ \n\n#CaratSelcaDay #CSD\n#VERNON…
## 3472                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 3473                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3474                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 3475                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 3476                                   RT @kwon_dino_: carat selca day!! \n#SEVENTEEN #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN_AT_LA3C #16December #dk #DOKYEOM #SEOKMIN https://…
## 3477                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 3478                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3479                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3480                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 3481                                   RT @kwon_dino_: carat selca day!! \n#SEVENTEEN #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN_AT_LA3C #16December #dk #DOKYEOM #SEOKMIN https://…
## 3482                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3483                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3484                            RT @pledis_17: [SEVENTEEN’s SNAPSHOOT] EP.49 DINO IS BACK!\n\n▶ https://t.co/mPpZoS08WJ\n\n#SEVENTEEN #세븐틴\n#SVT_SNAPSHOOT https://t.co/WO0H9HVd…
## 3485                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3486                    RT @pledis_17: SEVENTEEN 'BE THE SUN' : THE CITY NAGOYA\n\n▶ https://t.co/8DcYWmhRKE\n\n#SEVENTEEN #세븐틴\n#SEVENTEEN_THE_CITY\n#まちとかがやくSEVENTEEN h…
## 3487                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3488                                    RT @malkinmoth: @isocrime this is SO PAINFULLY ACCURATE . “you know they leave me there to die, but it’s okay. i’m just think about how for…
## 3489                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3490                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 3491                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 3492                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3493                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 3494                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3495                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 3496                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 3497                                      RT @adobonishua: same dream, same mind, same night :)\n\n#CSD #CaratSelcaDay #JOSHUA #세븐틴 #SEVENTEEN @pledis_17 https://t.co/snsFnkxfJp
## 3498                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3499                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3500                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 3501                           RT @jinrrys07: Wts LFB\nBets bulacan \nSvt seventeen \n\nLBB regular\nSection 207\nRow 53\n\nPhp 10700 (regular ticket price) \n\nSELLING AT 8000php…
## 3502                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3503                                      RT @adobonishua: same dream, same mind, same night :)\n\n#CSD #CaratSelcaDay #JOSHUA #세븐틴 #SEVENTEEN @pledis_17 https://t.co/snsFnkxfJp
## 3504                                  RT @lucidhaos: track #1 : pagtingin\n \n— wherein two best friends, Mikael and Drei, lost in the sea of their deepest desires find the island…
## 3505                                         RT @17CARATS_INA: Thank you so much for supporting us 💕😊\n\n@pledis_17  #SEVENTEEN #세븐틴 \n#SVT_inJAKARTACity https://t.co/g3ypbSTMrd
## 3506                                RT @kwonushii: ✨BETS IN BULACAN FREEBIES✨\n\nHello, Carats! This is my first time seeing Seventeen, and to celebrate I'm also giving freebies…
## 3507                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 3508                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 3509                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3510                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3511                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 3512                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 3513                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 3514                       RT @MsKwon_15: "Three friends, one heart."\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #JEONGHAN #정한 #JOSHUA #조슈 #SEVENTEEN #세븐틴 @pledis_17 https://…
## 3515                                 RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 3516                                                                                        RT @yoojinchim: seventeen arriving where???\n\nMANILA CITY~ 🤍\n\nhttps://t.co/8oVM4TGfDI
## 3517                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3518                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3519                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3520                              RT @shannabonbon: &lt;&lt; 𝚗𝚘 𝚠𝚘𝚛𝚍𝚜 𝚊𝚛𝚎 𝚎𝚗𝚘𝚞𝚐𝚑 𝚏𝚘𝚛 𝚢𝚘𝚞 ♡ &gt;&gt;\n\n{ #CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 } https://t.co/B3KC2OJvma
## 3521                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 3522                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 3523                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 3524                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3525                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3526                                RT @kalatcarat: help rt \n🎀 seventeen bets bulacan freebies! \nwe’ll be giving away alcohol for your sanitizing needs! 🫧 \n\nsee photos for mor…
## 3527                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 3528                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3529                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3530                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3531                                   RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 3532                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3533                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 3534                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3535                                    RT @yamarie_sjsvt: the fact that it's super junior and seventeen's 2nd time here in ph to have their concert and it will happen in the same…
## 3536                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 3537                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3538                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3539                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 3540                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3541                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3542                                  RT @nyorongiez: ✧ be the sun: bulacan freebies ✧\n\nhi! i'll be giving away booshua x sanrio stickers and svt art prints on d-day ◡̈︎\n\nvery l…
## 3543                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 3544                                   RT @fluffypjw: 💎 #SEVENTEEN #BeTheSuninBulacan ☀️\n\nTogether with @cutiebinwoo @chichie_hao @imdeftuan, we will be giving away these freebie…
## 3545                                     RT @pjsology: not new to kpop or stan twt but i made a new account to start fresh so uh rt if you stan any of these groups bc i need oomfs…
## 3546                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3547                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3548                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3549                              RT @shannabonbon: &lt;&lt; 𝚗𝚘 𝚠𝚘𝚛𝚍𝚜 𝚊𝚛𝚎 𝚎𝚗𝚘𝚞𝚐𝚑 𝚏𝚘𝚛 𝚢𝚘𝚞 ♡ &gt;&gt;\n\n{ #CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 } https://t.co/B3KC2OJvma
## 3550                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 3551                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3552                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 3553                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3554                                  RT @17CARATS_INA: - ' - SEVENTEEN HAS CHECK IN JAKARTA CITY - ' - \n\nThank you for participating and supporting us as a sponsor of this proj…
## 3555                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3556                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 3557                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3558                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 3559                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 3560                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 3561                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3562                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3563                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 3564                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 3565                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3566                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3567                                          RT @svt_verse: [#정한’s reply 🌟 221217] 12:10 AM KST\n\n#JEONGHAN: That’s sad\n\n@pledis_17 #SEVENTEEN #세븐틴 https://t.co/EOqIsYtYs5
## 3568                                                              RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/Rbyd5TX9Lj https://t.co/rR1Hkq1Xyk
## 3569                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3570                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 3571                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3572                              RT @nishiyoons: ╭┈◦•◦❥•◦ 🌸 BETS IN BULACAN FREEBIES 🌸\n\nI’ll be giving out freebies in BETS Bulacan so maghanapan tayo hehe💕\n\n✨To Claim:\n- L…
## 3573                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 3574                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3575                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3576                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3577                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3578                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3579                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3580                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3581                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3582                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 3583                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3584                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3585                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3586                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3587                             RT @nrnlgmn: IT’S DDAY!!!!\n\n✨SEVENTEEN Be The Sun Bulacan Freebies ✨\n\n🧡💎☀️\n\nI’ll be giving out more of these tomorrow! See you tomorrow fel…
## 3588                            RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 3589                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 3590                                RT @meanieral: help rt wtt lft wts lfb seventeen ph\n\n✔️pcs, ❌ trading cards. PRIO: ww/gyu/hao or shua counterparts of the pcs below.\n\nif in…
## 3591                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3592                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3593                                  RT @lisamanobal_327: The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nTXT…
## 3594                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3595                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3596                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3597                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3598                                 RT @sowoozoo613_: 💎 BE THE SUN IN BULACAN FREEBIES\n💎 Caratdeul~ We're giving away these freebies on concert day! 💙\n\n🥕 Crystal beaded bracel…
## 3599                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3600                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3601                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3602                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3603                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3604                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3605                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3606                                                                  RT @snowkhoshi: nobody can seventeen the way the thirteen of seventeen seventeens that’s why they’re seventeen
## 3607                                RT @nugucoups_: ☀️ Be The Sun In Bulacan Giveaway \n\n📍PH Arena \n🗓 December 17\n     \n     ~Kindly check ung mga pics below, see you soon cara…
## 3608                                    RT @treasurecharts_: #TREASURE now joins NCT, Stray Kids, Seventeen, TXT, Twice and BTS as the only Korean acts that have spent 100 weeks w…
## 3609                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3610                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3611                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 3612                                   RT @UaenCarat0912: I will be giving away 100 sets of seoksoo/svt freebies for #BeTheSuninBULACAN \nLimited lang since mahirap ang buhay chos…
## 3613                                RT @jhel172: Be The Sun in Bulacan FREEBIES \n\nHi guys 🍒 I will be giving away Scoupd Hand Banner , Pc , Photostrips.\n\n° follow for updates;…
## 3614                         RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 3615                                                      RT @Dodoljong: I hope i'll meet Seventeen one day, may not be at a con. But someday 🥺🫶🏻 @pledis_17 see you really soon 🧡🧡🧡
## 3616                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3617                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3618                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 3619                                   RT @kartells: hello, carats!♡\n   a just month away before we meet our beloved seventeen ♡ i will be giving a soonwoohao fanart freebies for…
## 3620                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 3621                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 3622                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 3623                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 3624                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3625                                    RT @andengimnida: Like what Minghao said in this live “If they are REAL FANS, they wouldn’t go there (pool) and we have to believe/trust th…
## 3626                                              RT @gyuhuizones: Jun's SVT 2023 Season's Greetings photoshoot behind film\n\n#JUN #준 #SEVENTEEN #세븐틴 \nhttps://t.co/jCBsp8hzPG
## 3627                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 3628                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3629                                    RT @eunoia__svt: @mariyamsayed5 And if you have a big company behind you, you already have a lot of things done and ready, for seventeen th…
## 3630                          RT @cutiepie_niiki3: ✎ . . be the sun freebies ♡\n\n🐯 strictly 1:1\nloc: tba on d-day \nrt &amp; like\n\n♡ might add some more if I have some extra f…
## 3631                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3632                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3633                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3634                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3635                          RT @hae_tiger15: (っ◔◡◔)っ ♥ Rage BeTS Bulacan Freebies♥\n\n- like and rwt \n- strictly 1:1\n- open for trades just dm me &lt;333 \n- limited lang hu…
## 3636                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 3637                                    RT @eunoia__svt: "Self-producing" might be a title for you but for seventeen it was their survival. They literally were able to step on sta…
## 3638                                        RT @s_santanalopez: Me and the color pink, have been in an argument for seventeen years, I can't believe I have to make nice with it now
## 3639                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 3640                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3641                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3642                         RT @softiekyeom: take 2 help rt\n\ni'll be giving random unofficial svt pcs &amp; sweets tomorrow!!! pls see me around ph arenaaa &lt;3\n\nshow me thi…
## 3643                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3644                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 3645                              RT @shannabonbon: &lt;&lt; 𝚗𝚘 𝚠𝚘𝚛𝚍𝚜 𝚊𝚛𝚎 𝚎𝚗𝚘𝚞𝚐𝚑 𝚏𝚘𝚛 𝚢𝚘𝚞 ♡ &gt;&gt;\n\n{ #CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 } https://t.co/B3KC2OJvma
## 3646                            RT @kkoongie_taemin: ╰ christmas gcash giveaway! ╮\n✿ one winner of ₱200\n✿ like + rt this tweet &amp; all my bentables below\n✿ mbf\n✿ will pick w…
## 3647                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 3648                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3649                                                RT @cherishthe17: Seventeen's 2023 Bucket list\n\nWonwoo recommended overseas TTT\n\n😭😭 Wonwoo best boy\nhttps://t.co/btb2FB9QTG
## 3650                                 RT @shopcandtee: Seventeen Shadow Long Sleeves✨\n\nThe design is inspired by one of my favorite svt bside’s! the shapes on the left are the e…
## 3651                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 3652                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 3653                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3654                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3655                       RT @MsKwon_15: "Three friends, one heart."\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #JEONGHAN #정한 #JOSHUA #조슈 #SEVENTEEN #세븐틴 @pledis_17 https://…
## 3656                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 3657                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3658                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 3659                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3660                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3661                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3662                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 3663                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 3664                           RT @yobesuho: ✎ . . be the sun freebies | fan support ☺︎\n\n🐯 strictly 1:1\n🐸 loc: tba on d-day\n🐶 rt &amp; like\n\n#BeTheSuninBULACAN #BeTSinBulacan…
## 3665                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 3666                               RT @voboowuji: Help rt! \nwant to sell / wts / lfb\n\n• selling to each (other tnc on pict 3) \n• open sharing boleh banget\n• exc packing+admin…
## 3667                                  RT @ooo_coups: 221214 SEVENTEEN CAFE 2022 ~WINTER CAMPING~\n\n#에스쿱스 #SCOUPS #세븐틴  \n\nhttps://t.co/jTNp2s4UKE https://t.co/BBTWl0dY1v
## 3668                                 RT @SheepEnDiamant: +fully shown off."\n\nFive entries for SEVENTEEN!! Five!!! \nI'm so so proud of all the recognition Face The Sun and Secto…
## 3669                               RT @Hoshisoo01: 1 UBC REG 404 GIVEAWAY \nFOR BETS BULACAN\n\nHow to join:\n💙 like and rt \n💙 comment your fav svt moment with the tag #BeTSinBUL…
## 3670                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3671                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 3672                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 3673                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 3674                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3675                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3676                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3677                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3678                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3679                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3680                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 3681                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3682                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3683                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3684                                RT @smileyleeDK: 🧡SVT BeTS in PH ARENA giveaways/freebies🧡\n\n❣️MBF\n❣️RT &amp; LIKE\n❣️Show me your twitter on D-day\n❣️reply ur fave svt/bias pic…
## 3685                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3686                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3687                                                RT @cherishthe17: Seventeen's 2023 Bucket list\n\nWonwoo recommended overseas TTT\n\n😭😭 Wonwoo best boy\nhttps://t.co/btb2FB9QTG
## 3688                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3689                                    RT @sound_of_dk: ☀️BE THE SUN IN BULACAN FREEBIES☀️\n\nHi Filo Carats! I'll be giving away Dokyeom hand banners (limited quantity) on Decembe…
## 3690                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 3691                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 3692                                 RT @taecookies_v: ⛅️ #BeTheSuninBULACAN Freebie ☁️\n\n🔅RT and Like\n🔅Follow if u want to be armycarat moots 🤗\n🔅Reply ur fave svt gif + #MAMAVO…
## 3693                           RT @soongyuexe: help rt! #saiwts ph go 🇵🇭\n\n꒰ hoshi mingyu don’t wanna cry acrylic standee &amp; seventeen keyrings by @soongyu ꒱\n- ₱100/ stande…
## 3694                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3695                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 3696                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3697                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3698                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3699                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3700                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3701                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 3702                                RT @abangmingyu: “Hold you laughter Round 1”\n“Failed”\n“I hate you”\n“Hahahahahahaha”\n#caratselcaday #CSD #seventeen #MINGYU @pledis_17 https…
## 3703                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3704                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3705                                RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 3706                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3707                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3708                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3709                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3710                               RT @_gumgummy: 𝑰'𝒍𝒍 𝒘𝒊𝒍𝒍 𝒏𝒆𝒗𝒆𝒓 𝒇𝒊𝒏𝒊𝒔𝒉\n 𝒇𝒂𝒍𝒍𝒊𝒏𝒈 𝒊𝒏 𝒍𝒐𝒗𝒆 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖.\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #승관 @pledis_17 https://t.co/Jlk…
## 3711                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3712                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3713                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3714                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3715                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3716                                RT @_bubblethe8: [ Seoul Music Awards ] \n\nThis is a REMINDER that we STILL HAVE ONGOING VOTING. Everyone can VOTE\n\nPLEASE KEEP COLLECT GOLD…
## 3717                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3718                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3719                        RT @bestboywonuu: SEVENTEEN Be The Sun in Bulacan Concert Ticket Giveaway (LBA Regular) 🥳\n\nMechanics:\n• RT &amp; like this tweet\n• RT &amp; like my…
## 3720                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3721                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 3722                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3723                                RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 3724                                  RT @lisamanobal_327: The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nTXT…
## 3725                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3726                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3727                               RT @coupsblossom: 𝘐’𝘮 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘺𝘰𝘶 𝘤𝘢𝘯 𝘤𝘰𝘮𝘦 𝘵𝘰 \n𝘠𝘰𝘶’𝘳𝘦 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘐 𝘤𝘢𝘯 𝘨𝘰 𝘵𝘰\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #SVT #승관 https://t…
## 3728                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3729                                RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 3730                                       RT @philconcerts: SEVENTEEN has arrived safely in Manila. Let's make history tomorrow at the world's largest indoor arena. #BeTSinBULACAN
## 3731                                    RT @bestboywonuu: Congratulations to @everywon9yu_k !! 🥳🎄This is your chance to see and watch SEVENTEEN live later at PH Arena! Please DM m…
## 3732                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3733                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3734                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3735                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 3736                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3737                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3738                                                                     RT @bernacnti: [SEVENTEEN BE THE SUN FREEBIES]\n\nSee you later🤧😭\n\n#BeTSinBULACAN https://t.co/nN7W3Opx7q
## 3739                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3740                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3741                                     RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 3742                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3743                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3744                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3745                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 3746                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3747                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 3748                                   RT @kyutie0613: HELLOOOOO CARATS! I’ll be giving FREE photocards + snacks tomorrow at PH ARENA ✨🤗 Hoping to meet you since first time ko ma…
## 3749                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3750                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3751                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3752                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 3753                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3754                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3755                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3756                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 3757                                                  RT @mezxig: « you are my crush i got a crush on you🤍 »\n\n#CaratSelcaDay #SEVENTEEN #SCOUPS @pledis_17 https://t.co/r0GyRmf4AT
## 3758                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3759                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3760                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 3761                                                                               RT @CHERRYHAE17: their record hasn't been broken yet.  #SEVENTEEN #세븐틴 https://t.co/6YlP8EjxiB
## 3762                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3763                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3764                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3765                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3766                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3767                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3768                                       RT @the2the8: significant other reveal!! &lt;3\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wgaLeJ1oZw
## 3769                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3770                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3771                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3772                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3773                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3774                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3775                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3776                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3777                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3778                                  RT @sarisaristored: UPPPP PLSSS MALALA!!! Can lower pa to 4600 if meeting up tmr! \n\nWTS LFB PH BETS BULACAN UBB REG SECTION 412 svt sevente…
## 3779                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3780                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3781                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 3782                             RT @seoksoocentric: SEVENTEEN BE THE SUN in BULACAN fan support for #도겸 and #조슈아 \n\nsince i can’t be there physically, the admins of @seokso…
## 3783                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3784                              RT @elluminous_: SEVENTEEN BE THE SUN IN BULACAN FREEBIES💙💖\n\nWe'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only! \n\nTime…
## 3785                                       RT @cheolsinta: lovers reunited once again ♡ \n#CaratSelcaDay #CSD #SEVENTEEN #SCOUPS #에스쿱스 #SEUNGCHEOL #승철 https://t.co/eWQC4YAAaR
## 3786                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3787                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 3788                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3789                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3790                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3791                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3792                                                                      RT @seokminroyal: i wanna match you to my heart \n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/Cl9PfLCkwE
## 3793                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 3794                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 3795                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3796                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3797                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 3798                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3799                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 3800                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 3801                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3802                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3803                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3804                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3805                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3806                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3807                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3808                                 RT @shopcandtee: Seventeen Shadow Long Sleeves✨\n\nThe design is inspired by one of my favorite svt bside’s! the shapes on the left are the e…
## 3809                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3810                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3811                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3812                               RT @coupsblossom: 𝘐’𝘮 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘺𝘰𝘶 𝘤𝘢𝘯 𝘤𝘰𝘮𝘦 𝘵𝘰 \n𝘠𝘰𝘶’𝘳𝘦 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘐 𝘤𝘢𝘯 𝘨𝘰 𝘵𝘰\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #SVT #승관 https://t…
## 3813                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 3814                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3815                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3816                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3817                           RT @jinrrys07: Wts LFB\nBets bulacan \nSvt seventeen \n\nLBB regular\nSection 207\nRow 53\n\nPhp 10700 (regular ticket price) \n\nSELLING AT 8000php…
## 3818                                   RT @woos86: hello, i'm bin ! new to #studytwt n #studytwtph \n\n▫️ i'm bin ; she / her ; istp\n▫️ stem 11 ; leo ; fil n eng \n▫️ future psychol…
## 3819                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3820                                                                        RT @woomygosh: I am hearing a voice in my head and it's wooyoung singing seventeen in that one ateez log
## 3821                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3822                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 3823                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 3824                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3825                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3826                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3827                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3828                            RT @pledischarts: #SEVENTEEN 7th Mini Album `헹가래` has now surpassed 1,600,000 (1.6 Million) copies sold on Circle (GAON). 🎉\n\n#세븐틴 @pledis_1…
## 3829                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 3830                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3831                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3832                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3833                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 3834                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 3835                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 3836                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3837                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3838                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 3839                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 3840                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3841                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3842                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3843                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 3844                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 3845                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 3846                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3847                                                                                                   RT @soiceicebby: @kpophappenings_ YOON from SEVENTEEN https://t.co/9IM5b8J0K6
## 3848                             RT @_sebenteen: #BeTSinBULACAN\nBe The Sun BULACAN\n✨Giveaway/Freebies✨\n\nI'll be giving out Wonwoo and OT13 Hand Banners!\nOpen to everyone #T…
## 3849                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3850                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3851                                RT @nugucoups_: ☀️ Be The Sun In Bulacan Giveaway \n\n📍PH Arena \n🗓 December 17\n     \n     ~Kindly check ung mga pics below, see you soon cara…
## 3852                                  RT @Hoshihora6: @kpophappenings_ You should put year and specific category. \nCz SEVENTEEN won Daesang (AOTY) for "AN ODE" in 2019.\nAnd yest…
## 3853                                RT @DealsOnRPGs: Check out the Rifts Core Mega Bundle at @BundleHolding \n\nRifts Ultimate Edition and Seventeen(!) major supplements!\n\nhttps…
## 3854                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3855                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 3856                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 3857                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3858                                    RT @maine5441: I will be giving away ref magnets tomm and unofficial photocards pag nahulaan mo kung sino ang bias ko 😂 Like, share and sho…
## 3859                                  RT @Wonhui_tintin: #BeTSinBULACAN #BeTSinBULACANFREEBIES for\n#wonhui and #gyuhao \n#seventeen #wonwoo #jun #mingyu #the8 \n*Please check the…
## 3860                                                        RT @seventeen: Mark Tuan Reveals The CRINGIEST 'GOT7' Song And His SECRET Tattoo | Read Receipts https://t.co/JPy1hR3WEo
## 3861                                  RT @lisamanobal_327: The top 10 Most Streamed Artists on Stationhead in 2022! Who did you stream the most?\n\nNicki Minaj\nBTS\n#LISA ❤️‍🔥\nTXT…
## 3862                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3863                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 3864                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3865                                     RT @wonhaozones: More Wonwoo from the 2023 Season's Greetings!\n\ncr. svtww_717\n\n#WONWOO #원우 #SEVENTEEN #세븐틴 https://t.co/oeRIf76t8h
## 3866                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 3867                                         RT @devluvschwe: sweater + glasses gf and hoodie + glasses bf #csd #CaratSelcaDay #VERNON #Seventeen @pledis_17 https://t.co/fvGLOBFnOW
## 3868                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 3869                                                                                              RT @SOURlyricsbot: and i'm so sick of seventeen, where's my fucking teenage dream?
## 3870                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 3871                                 RT @allforeheads: Appreciation post for Athurkyeom bc I'll always be proud of him ❤️\n\n• lady 🥑 signing off •\n\n@pledis_17 #SEVENTEEN #DK #DO…
## 3872                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3873                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 3874                                    RT @LisaWick9: @ame_todd @DisrespectedThe @JustinTrudeau I couldn't go to my 17 yr old grandsons funeral, after he had a heart attack at SE…
## 3875                                                                                         RT @genmnz: why do guys think “imma get u pregnant” is flirting.. bitch i’m scared of u
## 3876                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3877                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 3878                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 3879                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3880                                                                                                                      RT @evellynnncc: guys literally only act right for 2 weeks
## 3881                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3882                                    RT @seventeen: Meet Seventeen Voices of the Year honoree Aniya Butler! 🎙At just 16 years old, Aniya uses her voice to bring attention to cl…
## 3883                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3884                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3885                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3886                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3887                              RT @haelygiveaway: Hael CHOEAEDOL Giveaway\n\n🍁 250 Hearts\n\n– Follow me with 🔔 \n– retweet and like my pin\n– retweet and like this\n– 200 drop…
## 3888                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3889                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 3890                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 3891                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 3892                         RT @softpsyche: BE THE SUN BULACAN\njoshua fansupport \n\n✶ hand banners\n✶ rose quartz and serenity cookies\n   — rt &amp; like to spread\n\nread bel…
## 3893                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3894                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 3895                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3896                                    RT @LisaWick9: @ame_todd @DisrespectedThe @JustinTrudeau I couldn't go to my 17 yr old grandsons funeral, after he had a heart attack at SE…
## 3897                                  RT @livenationph: 💎 Here are the shuttle details for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nPrice is P200 for all routes. Maximum o…
## 3898                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3899                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 3900                                  RT @aki_the8finity: "It’s a good thing we're not vampires."\n\n#CSD #CaratSelcaDay #Minghao #The8 #SEVENTEEN @pledis_17 https://t.co/ltYxcIiK…
## 3901                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3902                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3903                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3904                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 3905                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3906                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3907                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3908                                                                                                             RT @yeopromise: #SEVENTEEN as #ATEEZ songs! https://t.co/qL7FDQLlLP
## 3909                                                                      RT @PT_KOREA: 221216 Jun Twitter Update\n \nhttps://t.co/YBgFsAlgXh\n \n#SEVENTEEN https://t.co/6oWBbzvVCU
## 3910                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3911                                  RT @ann_yeonggggggg: 💎 BE THE SUN IN BULACAN FREEBIES\n\n💎 Hi carats! I’m giving away these customized PH CARAT SEVENTEEN KEYCHAINS on d-day,…
## 3912                                   RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 3913                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 3914                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 3915                              RT @feat_annaaa: helping a friend !\nwts lfb \n\nubc reg 430 row 98\nLONG DOP \n2k (bought online during carat-mem presale)\ndp : 500-600\nrembal…
## 3916                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3917                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3918                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 3919                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3920                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3921                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 3922                                                         RT @luvrcheoI: me and bae 🤝 mirror pics #CSD #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #SCOUPS https://t.co/J0dvaGERc8
## 3923                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3924                                  RT @dokyeomsfool: Just between us, you are always the lead role to me. 🌹🩵\n\n#csd #CaratSelcaDay #17caratselcaday #dokyeom #dk #seventeen @pl…
## 3925                            RT @vitamingyuuu: best stress buster?\na video call with him.\n\n#CSD #CaratSelcaDay #WOOZI #우지 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/fN6zRv…
## 3926                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3927                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3928                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3929                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3930                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 3931                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 3932                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3933                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3934                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 3935                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3936                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3937                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3938                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3939                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3940                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3941                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 3942                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 3943                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3944                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3945                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 3946                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3947                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3948                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3949                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 3950                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 3951                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 3952                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3953                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 3954                                                       RT @katehalliwell: rock with you is a perfect song actually #Seventeen_LA3C #LA3C #SVT @pledis_17 https://t.co/FWeUGFQD1M
## 3955                                    RT @hanniessvt: seeing people from bets bulacan posting giveaways and donations to help carats see seventeen and to make the sold out arena…
## 3956                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 3957                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3958                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 3959                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3960                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 3961                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 3962                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 3963                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 3964                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3965                                            RT @SVT_stagram: [#SEUNGKWAN 📸 Instagram Story] \n221215 pledis_boos \n\n#승관 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/d7ppd0k6gz
## 3966                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 3967                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 3968                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 3969                                  RT @ann_yeonggggggg: 💎 BE THE SUN IN BULACAN FREEBIES\n\n💎 Hi carats! I’m giving away these customized PH CARAT SEVENTEEN KEYCHAINS on d-day,…
## 3970                    RT @SVT_stagram: [#DK 📸 Instagram Story] \n221216 dk_is_dokyeom \n\n➸ Joker movie poster ㅋㅋㅋㅋㅋㅋ\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/t…
## 3971                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3972                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 3973                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3974                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 3975                          RT @feat_annaaa: wts lfb\n\nubc reg 410\n2k\nLONG DOP \ndp : 1k\nrembal : 1k (kahit until end of january na) \n\nrfs : sudden exam sked :(\n\nHELP RT…
## 3976                             RT @binnie_nonna: 🤍 BetS in Bulacan Freebies 🤍\n\nhi carats ☺️ we’ll be giving away freebies on d-day!\n\nto claim:\n💫 like and rt \n💫 mbf\n\nsee y…
## 3977                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3978                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 3979                                     RT @SVT_Fancafe: [#JEONGHAN🌟 Weverse]\n221217 comment\n\n➸ That's upsetting \n\n#정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/inrQngDjf0
## 3980                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 3981                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 3982                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 3983                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3984                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 3985                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3986                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3987                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 3988                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 3989                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3990                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3991                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 3992                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 3993                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 3994                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 3995                               RT @svt_verse: [#호시 🌟 221214] 4:47 PM KST\n\n#HOSHI: Thankfully, it’s not to the point of cutting (the stye) open!!\n\n[Prescription: take for…
## 3996                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 3997                                     RT @min9yu_tttop: seventeen will perform in bulacan with their dancers..? oh my god pls CHEERS on the setlist 🕯️ \n\nhttps://t.co/Ty0HavRLgR
## 3998                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 3999                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4000                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4001                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 4002                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4003                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 4004                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4005                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4006                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4007                             RT @SVT_Fancafe: [#DINO + #DK🌟 Weverse]\n221216 comment\n\nDN : Carats are good at empathizing🙂\n\nDK : Shivering beyond one's imagination 🃏 \n\n#…
## 4008                                RT @king_jakween: Get ready for trauma, @WDTGTPodcast &amp; I are playing more #danganronpav3 tn @ 8:30pm est! #danganronpa #gamer #gamingcommu…
## 4009                                                         RT @luvrcheoI: me and bae 🤝 mirror pics #CSD #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #SCOUPS https://t.co/J0dvaGERc8
## 4010                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4011                                    RT @stellarnoona: 𖤐 BETS IN BULACAN FREEBIES 𖤐\n\nhi, me and @izzuerishu will randomly handout these envelopes on d-day! see you, carats! 🧡…
## 4012                                                         RT @luvrcheoI: me and bae 🤝 mirror pics #CSD #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #SCOUPS https://t.co/J0dvaGERc8
## 4013                     RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 4014                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4015                                                                                                                  RT @shuahonglyfans: seventeen.\n\nend. https://t.co/LIPq74GPIf
## 4016                                 RT @DELULURACHA: Picnic table park dates with him ~🧺\n•••••••••••••••••••••••••••••••••••\n@pledis_17 \n#csd #CaratSelcaDay #seventeen #svt #s…
## 4017                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4018                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4019                              RT @haelygiveaway: Hael CHOEAEDOL Giveaway\n\n🍁 250 Hearts\n\n– Follow me with 🔔 \n– retweet and like my pin\n– retweet and like this\n– 200 drop…
## 4020                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 4021                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4022                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4023                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4024                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 4025                                    RT @RebekkahFord: I never thought I would die at the age of seventeen. https://t.co/XXn9EbWSdJ #paranormalromance #kindle #amreading #bookw…
## 4026                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 4027                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4028                                  RT @snowkhoshi: please retweet pinned tweet to help SVTFLIX reach more carats, especially new carats and ppl who want to stan seventeen\n\n⭐️…
## 4029                                 RT @HHGives: CHOEAEDOL Giveaway poll 🍲\n\n🗳 300 hearts\n\n▪︎ follow @HHGives with 🔔\n▪︎ Like, rt my pin tweet\n▪︎ Like and rt this\n▪︎ 200 drop pr…
## 4030                            RT @yongwonifangirl: Thx u for everything choi seungcheol. I wuf u🫶🏻💖\n\n#CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철 #CaratSelcaDay #CARAT #CARAT_SELC…
## 4031                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4032                                            RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 4033                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4034                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4035                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 4036                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4037                              RT @Kpopidolvoting_: Seoul Music awards giveaway\nMain  💫\n300 gold Hearts for winner 🏆\nRules:\n✓Follow and drop your proofs\n✓Like,RT\n✓Like,RT…
## 4038                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4039                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 4040                           RT @samshauny_shop: 💎Simple BeTS in Bulacan Freebies  💎\n\n💎 Like &amp; rt this tweet \n💎 Loc : TBA \n\n#BeTheSuninBULACAN #BeTsinBUL #BeTSinBULACAN…
## 4041                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4042                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4043                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4044                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4045                                    RT @svntncarat17_: Only hours left till we witness the performance powerhouse SEVENTEEN as the first ever kpop act to perform on the WORLD'…
## 4046                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4047                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 4048                               RT @wonshuamour: —𝒅𝒂𝒓𝒍𝒊𝒏𝒈, 𝒍𝒆𝒕'𝒔 𝒕𝒂𝒌𝒆 𝒕𝒉𝒆 𝒍𝒐𝒏𝒈 𝒘𝒂𝒚 𝒉𝒐𝒎𝒆 ♡\n\n[ #csd #caratselcaday #joshua #조슈아 #seventeen @pledis_17 ] https://t.co/QDAaIVLP…
## 4049                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4050                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4051                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4052                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4053                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 4054                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 4055                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4056                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4057                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4058                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4059                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 4060                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4061                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 4062                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 4063                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4064                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 4065                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4066                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4067                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4068                                     RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 4069                             RT @binnie_nonna: 🤍 BetS in Bulacan Freebies 🤍\n\nhi carats ☺️ we’ll be giving away freebies on d-day!\n\nto claim:\n💫 like and rt \n💫 mbf\n\nsee y…
## 4070                                 RT @DELULURACHA: Picnic table park dates with him ~🧺\n•••••••••••••••••••••••••••••••••••\n@pledis_17 \n#csd #CaratSelcaDay #seventeen #svt #s…
## 4071                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 4072                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4073                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4074                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4075                              RT @ParalumanPST: SEVENTEEN BE THE SUN IN MANILA FREEBIES\n\nrt + rt pinned twt\nfollow us\n\nwill twt our location tomorrow 💎\n\n#BeTheSunManila…
## 4076                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4077                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4078                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4079                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4080                                                           RT @jbhearvt: two pretty best friends 🌟\n\n#CaratSelcaDay #CSD #MINGHAO #SEVENTEEN @pledis_17 https://t.co/BbqBMz7yXA
## 4081                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 4082                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4083                                                                     RT @bernacnti: [SEVENTEEN BE THE SUN FREEBIES]\n\nSee you later🤧😭\n\n#BeTSinBULACAN https://t.co/nN7W3Opx7q
## 4084                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 4085                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4086                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4087                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4088                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4089                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4090                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 4091                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4092                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4093                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4094                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4095                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4096                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4097                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 4098                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4099                                  RT @SciPiHarvey: Here is the official picture let’s celebrate!!!! #teacheroftheweek \n\n⬇️ your list\n📣 tell me what you’re happy about\n♻️ Ret…
## 4100                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4101                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4102                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4103                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4104                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4105                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4106                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 4107                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 4108                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4109                                   RT @junhuiprotector: I could literally tweet about every single step in the limbo choreography you don't get it #준 #JUN @pledis_17 #SEVENTE…
## 4110                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 4111                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 4112                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 4113                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4114                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4115                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 4116                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4117                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4118                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4119                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4120                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4121                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4122                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4123                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4124                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4125                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4126                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4127                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4128                             RT @_sebenteen: #BeTSinBULACAN\nBe The Sun BULACAN\n✨Giveaway/Freebies✨\n\nI'll be giving out Wonwoo and OT13 Hand Banners!\nOpen to everyone #T…
## 4129                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4130                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4131                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4132                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4133                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4134                                                      RT @Chewlastic: You Made My Dawn ✨️🖤🎆\n\n#CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/Nu4uEk1ytD
## 4135                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4136                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 4137                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 4138                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4139                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4140 RT @dreamofyuu: 『 ‘You’re drunk’ \n  ‘I’m not’\n  ‘You’re drunk’\n  ‘I’m not’\n  ‘You’re not’\n ‘I’m drunk- fuck u’  』\n   \n   ˚✧₊⁎⁺˳✧༚\n\n________…
## 4141                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4142                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4143                                                                                                               RT @etherealkims: instead of saying i love you, seventeen will...
## 4144                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 4145                                  RT @SHUASLUVR: HELLOOO !!! IM ZEN not new to #kpoptwt #stantwt this is just a new acc !!  I LIKEEEEE \n\nSEVENTEEN , enhypen, tomorrow X toge…
## 4146                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4147                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4148                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4149                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4150                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4151                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 4152                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4153                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4154                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4155                             RT @myoongjk: 📢 BETS FREEBIES\n\nHI CARATS 💎🍬🍫🍭\n\nRt, like, follow to stay updated! 🤍\n\n#SEVENTEEN #BeTheSuninBULACAN\n#BeTSinBULACAN https://t.…
## 4156                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4157                                              RT @bjyoungfiles: yep, just the two of us\n\n#CSD #CaratSelcaDay #HOSHI #호시 #SEVENTEEN #CARAT @pledis_17 https://t.co/XDhnHUdHNH
## 4158                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 4159                                  RT @LJervoso: SEVENTEEN Be the Sun in BULACAN FREEBIES!\n\nI will be giving 130pcs unofficial fanmade pc, pola, lomo + jeongcheol keychain (l…
## 4160                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 4161                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4162                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4163                                   RT @wxffly: rival in public, lover in private 😎\n\n#CSD #CaratSelcaDay #SEVENTEEN #SEUNGKWAN #세븐틴 #승관 @pledis_17 https://t.co/1CBV24V9Hl
## 4164                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4165                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 4166                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4167                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4168                               RT @coupsblossom: 𝘐’𝘮 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘺𝘰𝘶 𝘤𝘢𝘯 𝘤𝘰𝘮𝘦 𝘵𝘰 \n𝘠𝘰𝘶’𝘳𝘦 𝘵𝘩𝘦 𝘱𝘭𝘢𝘤𝘦 𝘐 𝘤𝘢𝘯 𝘨𝘰 𝘵𝘰\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #SVT #승관 https://t…
## 4169                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4170                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 4171                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4172                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4173                                                                               RT @horangrawrhae: seventeen hoshi first update in the philippines 😂\n\n©️ https://t.co/0x8uHu6M61
## 4174                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4175                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4176                          RT @feat_annaaa: wts lfb\n\nubc reg 410\n2k\nLONG DOP \ndp : 1k\nrembal : 1k (kahit until end of january na) \n\nrfs : sudden exam sked :(\n\nHELP RT…
## 4177                                  RT @trishfgx: 🌻 BeTS in Bulacan freebies 🌻\n\nHi! I'll be giving a pack of candies which includes unofficial photos of Jeonghan. I'll give it…
## 4178                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4179                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 4180                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4181                                    RT @donwilly01_: RETWEET PLEASE and Stream let's be Nice ..🙏🙏🙏 #16December #LISA #yonda #davido #SEVENTEEN #5city #idirepete #donwilly #Tre…
## 4182                                       RT @noniesjacket: me &amp; vernon when the dj plays party rock anthem🤝🏼\n\n#CaratSelcaDay #CSD #VERNON #SEVENTEEN https://t.co/jwn8zgAcbS
## 4183                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 4184                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4185                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4186                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4187                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4188                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 4189                               RT @WorldwideCarats: [VOTING]\n2022 HANTEO MUSIC AWARDS NOTICE\n\nTo CARATs,\n\nThe SVT Fanbases have decided to prioritize voting on the "GRAND…
## 4190                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4191                                    RT @donwilly01_: RETWEET PLEASE and Stream let's be Nice ..🙏🙏🙏 #16December #LISA #yonda #davido #SEVENTEEN #5city #idirepete #donwilly #Tre…
## 4192                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4193                               RT @INFINITEAVE_PH: 💎Be The Sun in Bulacan Freebies💎\n\n32mm glitter button pin\nJust like and rt this tweet and approach us tomorrow. 😊\n\n#BeT…
## 4194                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4195                                                             RT @JimmyDetroit1: I love that 17 Magazine rated xmas horror movies! It's not a bad list. \nhttps://t.co/eZf3M8RODB
## 4196                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 4197                               RT @urmwlovr: ︑︒⚬∙︓·⠄ Seventeen Be The Sun in Bulacan freebies \n\nHi, Carats! Together with @minwonshuji and @everywon_who, we will be givin…
## 4198                    RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME\n✅ Drop proofs\n\n#ENHYPEN #ATEEZ #MONSTA_X…
## 4199                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 4200                                  RT @13_Gems_17: First they tried claiming Seventeen's spot in EBS, now they are out here trying to claim Seventeen isn't Self-Produced\n\nSta…
## 4201                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 4202                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4203                             RT @jww_enthusiast: Now that I know you exist, how do I not love you ~ ♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17…
## 4204                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 4205                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4206                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4207                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4208                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4209                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4210                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 4211                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 4212                             RT @_sebenteen: #BeTSinBULACAN\nBe The Sun BULACAN\n✨Giveaway/Freebies✨\n\nI'll be giving out Wonwoo and OT13 Hand Banners!\nOpen to everyone #T…
## 4213                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4214                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4215                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4216                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4217                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4218                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4219                                  RT @boocutebear2: [#BeTSinBULACAN freebies giveaway]\n\nI'm planning to give 50 pieces of goodie bags and unofficial seventeen cards for #BeT…
## 4220                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 4221                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4222                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4223                             RT @dnonarats: #CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN #세븐틴 @pledis_17 \n\nthe photographer            his favorite view https://t.co/G9y…
## 4224                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4225                    RT @pledis_17: SEVENTEEN 'BE THE SUN' : THE CITY NAGOYA\n\n▶ https://t.co/8DcYWmhRKE\n\n#SEVENTEEN #세븐틴\n#SEVENTEEN_THE_CITY\n#まちとかがやくSEVENTEEN h…
## 4226                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 4227                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 4228                            RT @pledis_17: [SEVENTEEN’s SNAPSHOOT] EP.49 DINO IS BACK!\n\n▶ https://t.co/mPpZoS08WJ\n\n#SEVENTEEN #세븐틴\n#SVT_SNAPSHOOT https://t.co/WO0H9HVd…
## 4229                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 4230                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4231                                    RT @seventeen: Selena Gomez and Stacey Abrams Set to Produce New Music Documentary, “Won't Be Silent” https://t.co/uYUzPHNYC5 https://t.co/…
## 4232                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 4233                                                                          RT @sounds_of_cheol: seventeen heading to ph today ✈️ have a safe flight boys 🖤 https://t.co/A11KHyOizW
## 4234                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4235                                            RT @hogyuhae: 🌿I’ll be your spring during any winter❄️\n\n#CaratSelcaDay #csd #seventeen #Woozi #세븐틴 #우지 https://t.co/Y1ke5bBQ8h
## 4236                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4237                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4238                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4239                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4240                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4241                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4242                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4243                                          RT @americaprince__: 𝘗𝘏𝘖𝘛𝘖𝘉𝘖𝘛𝘏 𝘞𝘐𝘛𝘏 𝘏𝘐𝘔 📸\n\n#CSD #CaratSelcaDay #JOSHUA #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/k1F4VBvIhp
## 4244                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4245                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4246                              RT @CharmSupportLab: Be the Sun in Bulacan freebies\n\nHi! We’re giving away lots of cute fanmade stuff today! In rose quartz &amp; serenity blue…
## 4247                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 4248                          RT @mamangshua: I love you, just only you nobody else 💜💐\n\n#CSD #CaratSelcaDay \n#JOSHUA #조슈아\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/s6dGy1v…
## 4249                                                                   RT @yurlvme: date with gyu 😋💗\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 https://t.co/Y66KywHogR
## 4250                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4251                         RT @softiekyeom: take 2 help rt\n\ni'll be giving random unofficial svt pcs &amp; sweets tomorrow!!! pls see me around ph arenaaa &lt;3\n\nshow me thi…
## 4252                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 4253                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4254                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4255                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4256                            RT @roserenity0ung: 225 𝒅𝒂𝒚𝒔 𝒘𝒊𝒕𝒉 "𝒘"\nhe told me to do "wonwoo's shaking camera pose?"😆\n#CaratSelcaDay #CSD #세븐틴 \n#원우 #WONWOO #SEVENTEEN @p…
## 4257                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4258                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4259                              RT @Kpopidolvoting_: Seoul Music awards giveaway\nMain  💫\n300 gold Hearts for winner 🏆\nRules:\n✓Follow and drop your proofs\n✓Like,RT\n✓Like,RT…
## 4260                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 4261                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 4262                                                                                                   RT @soiceicebby: @kpophappenings_ YOON from SEVENTEEN https://t.co/9IM5b8J0K6
## 4263                                  RT @svtbillboard: [NOTICE : 2022 HANTEO MUSIC AWARDS]\n\nWe have decided to not push for Global Artist Award and Whosfandom poll on Whosfan f…
## 4264                         RT @softiekyeom: take 2 help rt\n\ni'll be giving random unofficial svt pcs &amp; sweets tomorrow!!! pls see me around ph arenaaa &lt;3\n\nshow me thi…
## 4265                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4266                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4267                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4268                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4269                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4270                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4271                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4272                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4273                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 4274                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 4275                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 4276                               RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 4277                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4278                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 4279                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4280                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 4281                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4282                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4283                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4284                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4285                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 4286                                                                     RT @bernacnti: [SEVENTEEN BE THE SUN FREEBIES]\n\nSee you later🤧😭\n\n#BeTSinBULACAN https://t.co/nN7W3Opx7q
## 4287                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4288                                          RT @aeasctyy: a heaven out in space ☁️💙\nwith @sseminzz &lt;33 \n\n#csd #caratselcaday #jeonghan #dk #seventeen https://t.co/8dc0WhbbCM
## 4289                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4290                                                        RT @yeoshuaa_: me &amp; my boyfie ♡\n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN #조슈아 @pledis_17 https://t.co/g5kondqa3y
## 4291                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4292                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4293                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4294                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4295                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4296                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 4297                                                                     RT @bernacnti: [SEVENTEEN BE THE SUN FREEBIES]\n\nSee you later🤧😭\n\n#BeTSinBULACAN https://t.co/nN7W3Opx7q
## 4298                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4299                                                                  RT @fromLover_9: fromis_9 Stay This Way x Seventeen Fallin' Flower\n\nthe pledis print https://t.co/gBbI0lEGbJ
## 4300                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4301                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4302                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4303                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4304                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 4305                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 4306                                RT @byuumie: nlex &amp; sctex traffic advisory ! high volume of traffic is expected in the area. ph is seventeen ready ! 🫶🏻 https://t.co/P8kaah…
## 4307                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 4308                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 4309                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4310                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4311                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4312                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4313                                                                               RT @horangrawrhae: seventeen hoshi first update in the philippines 😂\n\n©️ https://t.co/0x8uHu6M61
## 4314                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4315                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4316                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4317                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 4318                                    RT @BILLLIEFILES: SEVENTEEN’s SEUNGKWAN posted a signed the Billage of perception: chapter 2 album he got from Billlie on his Instagram Sto…
## 4319                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4320                              RT @solastreo: dk and wonwoo forcibly making each other headbang during aju nice 😭😭😭\n\n#SEVENTEEN   #세븐틴   #BeTheSun\n#SEVENTEENinOAKLAND #BE…
## 4321                                                              RT @kwonhochie: the card was FacE ThE SuN\n\n#CaratSelcaDay  #csd #CARAT #SEVENTEEN #hoshi https://t.co/JxLqsHkgGO
## 4322                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 4323                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4324                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4325                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4326                                 RT @HHGives: CHOEAEDOL Giveaway poll 🍲\n\n🗳 300 hearts\n\n▪︎ follow @HHGives with 🔔\n▪︎ Like, rt my pin tweet\n▪︎ Like and rt this\n▪︎ 200 drop pr…
## 4327                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4328                                    RT @rvsvtfiles: throwback to red velvet and seventeen's red and black outfits in last year's, 2021, kbs gayo daechukje https://t.co/On48X8L…
## 4329                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 4330                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 4331                                   RT @blcshao_o: ⑅⁠˖⁠♡ you've always been there for me\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/NqEWOXrN1N
## 4332                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 4333                              RT @haelygiveaway: Hael CHOEAEDOL Giveaway\n\n🍁 250 Hearts\n\n– Follow me with 🔔 \n– retweet and like my pin\n– retweet and like this\n– 200 drop…
## 4334                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 4335                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4336                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4337                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4338                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4339                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4340                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4341                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4342                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4343                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4344                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 4345                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4346                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4347                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4348                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4349                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 4350                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4351                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 4352                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4353                                                                                                                                       RT @YourShop19: SEVENTEEN DINO PHOTOCARDS
## 4354                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4355                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4356                                             RT @svtbz_Q8: he just won't stop copying me 😤 #CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/HlyMVkiehU
## 4357                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4358                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4359                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4360                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4361                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4362                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4363                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4364                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 4365                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4366                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4367                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4368                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4369                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4370                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 4371                                     RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 4372                                         RT @dokyeomfiles: 221213 Lee Seokmin with touch of cuteness today! 🥰\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/4RMc35INfi
## 4373                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4374                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4375                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4376                              RT @maejangunboxed: WTS Be the Sun BeTS\n\nUBA : Row 67\n\n— dp + rembal on d-day meet up\n— claimed tix\n— proof + valid ID + personal contact i…
## 4377                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 4378                              RT @kwannhao: i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ https:…
## 4379                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4380                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4381                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 4382                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4383                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4384                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4385                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4386                            RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 4387                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4388                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4389                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4390                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4391                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4392                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4393                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4394                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4395                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 4396                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4397                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4398                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4399                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 4400                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 4401                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 4402                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4403                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4404                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4405                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4406                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4407                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4408                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 4409                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4410                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4411                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4412                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 4413                                RT @hanisyruup: Be The Sun in Bulacan Freebies ☀️\n\n↬ Strictly 1:1\n↬ follow @/theadvisordiaries on ig (optional)\n↬ Time/Loc : TBA\n↬ Say “Shi…
## 4414                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4415                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4416                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4417                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4418                                                          RT @Zeldaliaa_: Baby I am a shadow of you 🖤\n\n#CaratSelcaDay #carat #SEVENTEEN #minghao #the8 https://t.co/YEAZdUrssL
## 4419                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4420                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4421                                   RT @seoksoominwon: ✿ SEVENTEEN #BeTheSuninBulacan FREEBIES ✿\n\n17 days before d-day! I'll be giving some freebies on concert day caratdeul.…
## 4422                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4423                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4424                                     RT @peach_and_tiger: it has been a while but Seoul's temperature is lowkey cold cold ❄️💙 #CSD #CARAT_SELCA_DAY #CaratSelcaDay #kimmingyu #m…
## 4425                                                                RT @unvrsfee_: — long distance (r)🏙\n\n#CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 https://t.co/Cft1r16MK2
## 4426                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4427                                                           RT @snowwonu: i’ll pick you up after work? \n\n#CARAT_SELCA_DAY #WONWOO #SEVENTEEN @pledis_17 https://t.co/0IuwRYJ5hT
## 4428                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4429                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4430                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4431                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 4432                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4433                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4434                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4435                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4436                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4437                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4438                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4439                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4440                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4441                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4442                              RT @kkumashane: SEVENTEEN Be the Sun Bulacan\nFREEBIES GIVEAWAY \n\n‣ official trading/photo cards\n‣ candy canes\n\ni will post on d-day where y…
## 4443                                   RT @bonbonppan: “my heart moves towards you even amidst a whirlwind, and I will reach out to you”\n#CaratSelcaDay #CSD #CARAT_SELCA_DAY #CAR…
## 4444                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4445                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4446                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 4447                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4448                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4449                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4450                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4451                                  RT @aeinsun: BeTS IN BULACAN FREEBIES \n\nhello carats! we will be giving away crinkles with unofficial pc and stickers. and some random cara…
## 4452                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4453                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4454                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4455                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4456                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 4457                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4458                                                          RT @SVT_Fancafe: [#HOSHI🌟 Weverse] \n221215 -19:49 KST-\n\n#호시 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/nZbhHOvFyY
## 4459                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4460                                  RT @eoia_min: ✧ SEVENTEEN BETS IN BULACAN FREEBIES ✧\n\nHi carats! I'll giveaway official photocards and other unofficial photos of seventeen…
## 4461                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 4462                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4463                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4464                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4465                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 4466                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4467                                  RT @gyuilatte: We're on set, 10 minutes before photoshoot~\n\n#CSD #CaratSelcaDay #CARAT_SELCA_DAY  #MINGYU #SEVENTEEN https://t.co/TNJs83GsUy
## 4468                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 4469                              RT @sunshinejcm: if you see this you're required to list your top 10 groups\n1. the boyz \n2. cix \n3. seventeen \n4. monsta x\n5. enhypen \n6. i…
## 4470                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4471                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 4472                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 4473                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4474                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4475                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 4476                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4477                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 4478                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4479                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 4480                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4481                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4482                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4483                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 4484                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4485                                               RT @miss_svtmafia: SECURED ONE MORE UBC REG TICKET!!! 😭😭😭\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 https://t.co/melvV5cKVl
## 4486                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4487                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4488                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4489                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4490                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 4491                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4492                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 4493                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4494                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4495                                                                                                    RT @horangrawrhae: FINALLY D-DAY!!!!! #BeTSinBULACAN https://t.co/c5yHsXAXEZ
## 4496                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 4497                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4498                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4499                             RT @dinoscheekmoles: Extremely soft pictures of Lee Jihoon \n\nA thread 🌻🌸💖🌈☀️🥰✨️ \n#WOOZI #JIHOON #우지 #SEVENTEEN #세븐틴 @pledis_17 https://t.co…
## 4500                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 4501                             RT @dinoscheekmoles: Extremely soft pictures of Jeon Wonwoo\n\nA thread 🌻🌸💖🌈☀️🥰✨️ \n#WONWOO #원우 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GmthZJ…
## 4502                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4503                             RT @dinoscheekmoles: Extremely soft pictures of Kwon Soonyoung \n\nA thread 🌻🌸💖🌈☀️🥰✨️ \n#HOSHI #호시 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/n0R…
## 4504                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4505                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4506                                RT @dinoscheekmoles: Extremely soft pictures of Wen Junhui\n\nA thread 🌻🌸💖🌈☀️🥰✨️ \n#JUN #준 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6BmTAjABr9
## 4507                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4508                                    RT @POTUS: Seventeen Black women have been confirmed to federal circuit courts in U.S. history. And with the Senate’s confirmation of Judge…
## 4509                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4510                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4511                           RT @CCT_MINGYU: [CHOEAEDOL BANNER]\n\n❤Collect &amp; save ever hearts for Charity Fairy\n🐶Support Mingyu on Choeaedol\n🔗https://t.co/MP59RuoSNu\n💎Be…
## 4512                              RT @forevergluv: If you see this you're required to list your top 10 groups\n1. EVERGLOW\n2. ATEEZ\n3. EXO\n4. ENHYPEN\n5. (G)I-DLE\n6. TWICE\n7.…
## 4513                                  RT @luv__wonu: mirror pics are the best, argue with the wall if you disagree\n\n#CaratSelcaDay #carat #SEUNGKWAN #SEVENTEEN #CSD @pledis_17 h…
## 4514                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4515                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4516                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4517                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4518                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4519                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4520                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4521                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 4522                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4523                                                           RT @kkumashane: only seventeen can make me get out of bed at 4am on a saturday ~ it’s be the sun in bulacan d-day!! 🤍
## 4524                               RT @mujicprod: ꨄ Be the Sun in Bulacan (another) UBC Reg 🎫\n\n[1 winner]\n- like and rt this tweet \n- tag 3 carat besties\n- reply your streami…
## 4525                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 4526                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4527                                    RT @4ever_with17: @kpophappenings_ JEONGHAN and DK from SEVENTEEN... Seriously there is nothing normal in their lives https://t.co/LX2Gim1k…
## 4528                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4529                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4530                            RT @byuumie: #BeTSinBULACAN freebies .ᐟ\n\n📙 i’ll be giving away hand banners &amp; filmstrips on dec 17!\n\n— first 10 to show me baby pics of sev…
## 4531                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4532                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4533                    RT @SVT_stagram: [#DK 📸 Instagram Story] \n221216 dk_is_dokyeom \n\n➸ Joker movie poster ㅋㅋㅋㅋㅋㅋ\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/t…
## 4534                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4535                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4536                       RT @yoonminhoes: ଘ(੭*ˊᵕˋ)੭* Caratdeul!! \nReady na ang candy bar ni seungcheol 🤟🤩\n\n신기방기 뿡뿡방기 lootbags are packed as well! See you there! \n\n*…
## 4537                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 4538                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4539                            RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 4540                               RT @haothinks: minghao inclusions for sg 2023 🌌\n\n#SEVENTEEN #세븐틴 #THE8 #디에잇 #서명호 #徐明浩 #ディエイト #ミンハオ https://t.co/GSwKznCjZJ
## 4541                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4542                                  RT @CheonsaHaniee: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nPlease see photo for more details\nStrictly 1:1 🥺\n\n☀️RT + Like (follow not mandatory…
## 4543                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 4544                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4545                          RT @feat_annaaa: wts lfb\n\nubc reg 410\n2k\nLONG DOP \ndp : 1k\nrembal : 1k (kahit until end of january na) \n\nrfs : sudden exam sked :(\n\nHELP RT…
## 4546                                                 RT @onelywoo: just had a night walk with my boyfIE 🌀💌💭🌷\n.\n.\n.\n#CaratSelcaDay #CSD #SEVENTEEN #CARAT https://t.co/Uif745tQQJ
## 4547                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 4548                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4549                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4550                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4551                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 4552                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 4553                                                                                 RT @433: A RECORD-BREAKING number of SEVENTEEN YELLOW CARDS TONIGHT 🥵🥊⚠️ https://t.co/ATYwngKdtO
## 4554                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 4555                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4556                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4557                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4558                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 4559                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4560                                  RT @ciplayoo_n: "If the world attack and you slide off track, remember one fact, i got your back"\n–Will Smith\n\n#CSD #CaratSelcaDay #JOSHUA…
## 4561                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 4562                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4563                                       RT @jeonwonhao: hey hey hey, carats! i'll be giving away haikyu x seventeen freebies for #BeTSinBULACAN ◡̈ .⁠。⁠*⁠♡\n\n✿ includes 1 member ea…
## 4564                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4565                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4566                              RT @hiautosng: HELP RETWEET PLS 🙏\n\n(Foreign Used)Affordable 2012 Upgraded Lexus GX460\nPrice: 15Million Naira\n\nDM📩 for more info or\nCall 080…
## 4567                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4568                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4569                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4570                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4571                                          RT @baekhyunee_EX0_: •We keep this love in a photograph•\n\n#CaratSelcaDay #SEVENTEEN\n#JoshuaHong  @pledis_17 https://t.co/PJ208Q2vjw
## 4572                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 4573                                      RT @dawncheol: a Carat asked Jeonghan to show his room and he said he can’t, but he ended up showing the room’s reflection in his spoon 😂…
## 4574                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4575                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4576                                 RT @buleloveeee: WTB SEVENTEEN pcs ph\n⭕️buy buy buy!\n❌sell\nI am looking for the following pcs😭😭😭😭🤤\nplease dm me!🙇🏻‍♀️If the price is right,…
## 4577                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4578                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4579                                    RT @neo__phyte: Let’s see my happiness~ ♡♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/pslTZAeFLG
## 4580                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 4581                                    RT @OHMYPROM0: not new to rp promo gdm exo bts chanbaek wonwoo kyungsoo jennie album solo follow trick nsfw 18+ views wonwoo seventeen taeh…
## 4582                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4583                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4584                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4585                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4586                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 4587                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 4588                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 4589                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4590                                    RT @BILLLIEFILES: SEVENTEEN’s SEUNGKWAN posted a signed the Billage of perception: chapter 2 album he got from Billlie on his Instagram Sto…
## 4591                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4592                                   RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 4593                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4594                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 4595                                        RT @shuahae_3_: 𝐎𝐮𝐫 𝐇𝐞𝐚𝐥𝐢𝐧𝐠, 𝐇𝐞𝐚𝐥𝐢𝐧𝐠~ 💙\nWith Mingyu \n\n#CSD #Mingyu #민규 #CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/UvyYAGjB8E
## 4596                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4597                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4598                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4599                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4600                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4601                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4602                                 RT @mydeardreamies: wts lfb svt seventeen be the sun bulacan manila\n\nLBB Premium\n- price is very negotiable (SURE DISCOUNT)\n- friend can't…
## 4603                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4604                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 4605                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4606                                                        RT @butterfluers: Proud boyf\n\n#CaratSelcaDay #CSD\n#WOOZI #버논 #SEVENTEEN\n#세븐틴 @pledis_17 https://t.co/frEd1x4nzZ
## 4607              RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nBEST DANCE PERFORMANCE(Overs…
## 4608                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 4609                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4610                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 4611                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4612                                    RT @BILLLIEFILES: SEVENTEEN’s SEUNGKWAN posted a signed the Billage of perception: chapter 2 album he got from Billlie on his Instagram Sto…
## 4613                             RT @jjwihauls: ☁️. Be The Sun Bulacan Freebies\n\n — rt &amp; like this tweet to spread !\n —  will prio attendees due to limited quantities \n — o…
## 4614             RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nRECORD OF THE YEAR(Overseas)…
## 4615                                   RT @m1n9yu_ku: Let them know about us. \n\n#CSD #CaratSelcaDay \n#THE8 #MINGHAO #명호 \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/YkYFpZIqe3
## 4616                                                                                     RT @luvrshuas: can i get to the yams #CSD #CaratSelcaDay #SEVENTEEN https://t.co/BPyGN1tsLW
## 4617                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4618                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4619                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4620                                                                                    RT @kimmingyuux: Date?🖼🎨\n#CaratSelcaDay #CSD #seungcheol #SEVENTEEN https://t.co/jTj5n9D5Hj
## 4621                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 4622                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4623                                                                          RT @jjbihoon: Santa claus is coming to town 🤍❄️☃️ #csd #dk #seventeen @pledis_17 https://t.co/9BhMnHVtPw
## 4624                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 4625                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4626                            RT @LaliceUpdates: 2023 New Kpop Wave/Keyword: \n\nThe rapid rise of INDIA (for kpop):\n#1 BTS\n#2 @BLACKPINK\n#3 #LISA \n#4 TWICE\n#5 ITZY \n\n(As…
## 4627                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 4628                                             RT @kkssllwoo: couple with my ayang 😆💗✨\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/Gpr5I4CCca
## 4629                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4630                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 4631                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 4632                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4633                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 4634                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4635                              RT @sarahoshuji: ✨#Seventeen Be The Sun in Bulacan Fan Support/Freebies✨\n\nHello Caratdeuls! \n\n@nilaj_tee, @aidan_andrea, and I are giving a…
## 4636                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4637                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 4638                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4639                               RT @lcvezip: __ 🫧 be the sun in bulacan freebies ! 🫧__\n\nhello! i’ll be giving away a svt mask case + fanmade stickers on the concert &lt;3 see…
## 4640                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 4641                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4642                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 4643                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 4644                                RT @abangmingyu: “Hold you laughter Round 1”\n“Failed”\n“I hate you”\n“Hahahahahahaha”\n#caratselcaday #CSD #seventeen #MINGYU @pledis_17 https…
## 4645                              RT @loreyneleeey: SEVENTEEN BE THE SUN IN BULACAN✨FREEBIES✨\n\nOpen to all carats! Team Concert/Team Labas. See you! 💗💎\n\n#BeTheSuninBULACAN #…
## 4646                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 4647                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4648                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 4649                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4650                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4651                                     RT @xuminghao_ok: may want ba ng minghao banner ko? 🥹 i will also give some random freebies like candy, unofficial pc, and more. see you 😊…
## 4652                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 4653                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4654                                 RT @Kpopmap: What Is An 'Ace' In K-Pop? Featuring 10 K-Pop Idol Aces Who Shone In 2022\nhttps://t.co/isjSdW9XGx \n\n#GOT7 #JinYoung #BTS #JHop…
## 4655                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4656                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4657                             RT @SVT_Fancafe: [#MINGYU🌟 Weverse]\n221215 -19:53 KST-\n\n➸ By any chance, has anyone seen my... earphones at the airport.......\n\n#민규 #SEVENT…
## 4658                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4659                          RT @hae_tiger15: (っ◔◡◔)っ ♥ Rage BeTS Bulacan Freebies♥\n\n- like and rwt \n- strictly 1:1\n- open for trades just dm me &lt;333 \n- limited lang hu…
## 4660                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4661                                    RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 4662                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 4663                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 4664                                          RT @dailygyushua: kim mingyu when he talks in pout (re: in baby).\n\n#MINGYU #민규 #SEVENTEEN #세븐틴 #セブチ\nhttps://t.co/nWoJ5DnhYR
## 4665                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4666                                            RT @mcpnews: Missing Seventeen-Year-Old\n\nhttps://t.co/Z9mi8EAAjU\n\n#MCPD #MCPNews #Missing #MissingPerson https://t.co/jTd3yWM7i8
## 4667                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4668                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4669                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 4670                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4671                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4672                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4673                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4674                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4675                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4676                                RT @kwonushii: ✨BETS IN BULACAN FREEBIES✨\n\nHello, Carats! This is my first time seeing Seventeen, and to celebrate I'm also giving freebies…
## 4677                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 4678                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4679                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4680                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4681                                  RT @snowkhoshi: please retweet pinned tweet to help SVTFLIX reach more carats, especially new carats and ppl who want to stan seventeen\n\n⭐️…
## 4682                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4683                             RT @nelly_nella_: 1. Astro\n2. Bts\n3. Stray kids\n4. Ateez\n5.  The rose\n6.Seventeen\n7. Txt \n8. P1harmony\n9. Monsta x\n10. Treasure or oneus 😭
## 4684                                                                                   RT @1UVAZR4: Me and my bf💗💎\n\n#CSD #CaratSelcaDay #MINGYU #SEVENTEEN https://t.co/LMrSVzrbx8
## 4685                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4686                                    RT @EnvAm: Seventeen international insurers now have policies against covering new oil and gas projects in the Coastal Plain of the #Arctic…
## 4687                              RT @hyojinsmile: if you see this, you're required to list your top 10 groups\n\n1. onf\n2. kingdom\n3. seventeen\n4. txt\n5. twice\n6. oh my girl…
## 4688                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4689                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4690                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 4691                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4692                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4693                                  RT @nyorongiez: ✧ be the sun: bulacan freebies ✧\n\nhi! i'll be giving away booshua x sanrio stickers and svt art prints on d-day ◡̈︎\n\nvery l…
## 4694                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4695                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4696                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4697                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4698                                  RT @FLOWERBOYSVTN: to the one who gave me his heart ... 😳💗\n\n#CaratSelcaDay #17CaratSelcaDay #CSD #XUMINGHAO #SEVENTEEN @pledis_17 ♡ https:/…
## 4699                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 4700                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4701                                                             RT @koomotive: winter enjoyers ❄️🤍 \n\n#CaratSelcaDay #CSD #DINO #디노 #SEVENTEEN @pledis_17 https://t.co/NmOhXhXWnw
## 4702                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4703                              RT @snwugyu: to celebrate my 7th year w/ svt, i will be giving away svt merch for free!\n\nalso, ✨ be the sun in bulacan giveaway ✨\n\nto join:…
## 4704                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 4705                               RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 4706                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4707                                       RT @the2the8: significant other reveal!! &lt;3\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wgaLeJ1oZw
## 4708                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4709                              RT @kimingyuzone: [#NinongMingyuGives]\n\n(1) WINNER OF UBC PREMIUM TICKET FOR BE THE SUN IN BULACAN.\n\nMechanics:\n- mbf\n- Reply below the scr…
## 4710                                                                                                        RT @whagsoo: #SEVENTEEN - hot performance at aaa https://t.co/qg14uArikE
## 4711                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 4712                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 4713                                RT @jaysungsells: RE-POST BE THE SUN IN BULACAN FREEBIES\n\nhello, i'll be giving away freebies for be the sun in bulacan on Dec 17, 2022!\n\nl…
## 4714                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 4715                                 RT @haosbitch: priorities before I fly……BLURRY PICS IS OUR THING!!!!! #CSD #CaratSelcaDay #MINGHAO #徐明浩 #SEVENTEEN @pledis_17 https://t.co/…
## 4716                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4717                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4718                               RT @SMTOWNGLOBAL: 2022 Winter SMTOWN : SMCU PALACE - ID Portrait Image\n\n➫ 2022.12.26 6PM (KST)\n\n#SMTOWN2023 #SMCU_PALACE \n#2022_WINTER_SMTO…
## 4719                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4720                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 4721                            RT @lovescoups_: Relationship goal: pursuing master's degree together 💗\n#CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #에스쿱스 #세븐틴 @pledis_17 https:…
## 4722                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4723                                 RT @haosbitch: priorities before I fly……BLURRY PICS IS OUR THING!!!!! #CSD #CaratSelcaDay #MINGHAO #徐明浩 #SEVENTEEN @pledis_17 https://t.co/…
## 4724                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 4725                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 4726                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4727                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4728                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 4729                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4730                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 4731                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4732                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 4733                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4734                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4735                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4736                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4737                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 4738                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4739                                RT @xum8nghao_o2: [SVT GALLERY ; MEDIA OFFICIAL]\n221127 \n2022 SEVENTEEN WORLD TOUR [BE THE SUN] in TOKYO Press Photos \n\n#SEVENTEEN #SVT_GAL…
## 4740                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4741                                                 RT @yupsheskitten: JOSHUA for MAPS MAGAZINE KR 2023 \n\n#조슈아 #JOSHUA \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/1FPnnHZ6Em
## 4742                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 4743                                  RT @JeremyCorbell: I'm excited to be able to do this. For a limited time - watch my THREE films for free on YouTube!\n\nTHESE BE DIRECT LINKS…
## 4744                                               RT @junranghae_hui: Shit, this is red too!!❤️\n\n#CSD #CaratSelcaDay #MINGYU #SEVENTEEN #세븐틴 @pledis_17 https://t.co/BPzcDvvjWr
## 4745                           RT @kawaiikyeom: . . . for our sun, deekay 🤓\n\n— BeTS in Bulacan freebies —\n\n+ randomly distributed\n+ open to all carats!!\n+ like &amp; rts are…
## 4746                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4747                             RT @binnie_nonna: 🤍 BetS in Bulacan Freebies 🤍\n\nhi carats ☺️ we’ll be giving away freebies on d-day!\n\nto claim:\n💫 like and rt \n💫 mbf\n\nsee y…
## 4748                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4749                                   RT @CoupsOfMinWon: ☀️ Be The Sun in Bulacan ☀️\n                                  Freebies\n\nCarats!! We will be giving away freebies on d-da…
## 4750                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4751                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4752                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 4753                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 4754                              RT @kwannhao: i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ https:…
## 4755                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 4756                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4757                         RT @bluehrkyo: [not in order] \n\n1. txt \n2. exo \n3. le sserafim \n4. stayc \n5. red velvet \n6. twice \n7. aespa \n8. nct \n9. seventeen \n10. shin…
## 4758                                   RT @Octubre2022: 🐣#Ukraine #inflation #SEVENTEEN #dkpol #SUPERJUNIOR #JHOPE #timraik #Russian\nEcoLife: artificial wombs, READY to replace H…
## 4759                                RT @binnie_nonna: #BinnieBigay 🐶 for BeTS in Bulacan \n\nhi #TeamLabas carats, we’ll be giving away one (1) LBA ticket for #BeTSinBulacan \n\nH…
## 4760                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 4761                                     RT @dazed420gaming: How dumb #pzgd #pzgdfam #dazedgaming #XboxSeriesX #PS4share #PS5 #gaming #streamer #win #SmallStreamersConnectRT #news…
## 4762                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4763                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4764                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4765                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4766                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 4767                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4768                                 RT @soobincrumbs: Soobincrumbs' mini giveaway for #BeTSinBULACAN (GyuHao)\n\n• RT + Like this tweet.\n• Follow (for updates purposes, optional…
## 4769                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4770                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4771                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4772                                                                    RT @iIywh: HE KNEW EXACTLY WHAT HE WAS DOING HERE @pledis_17 #SEVENTEEN #HOSHI #LA3C https://t.co/y8NRa1z4uI
## 4773                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4774                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4775                                                RT @junhuiprotector: Omg he loves making people giggle, attention whore\n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/yOkOMMBZZR
## 4776                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4777                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4778                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4779                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4780                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 4781                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 4782                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4783                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 4784                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4785                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4786                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4787                                                   RT @SVT_stagram: [#JUN 📸 Instagram]\n221207 junhui_moon \n\n➸ ☀️ \n\n#준 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/rGl8SfJCoF
## 4788                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 4789                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4790                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 4791                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4792                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4793                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4794                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4795                                            RT @SVT_stagram: [#JUN 📸 Instagram] \n221211 junhui_moon \n\n➸ see you~\n\n#준 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/5tx1AV3XAs
## 4796                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 4797                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4798                                                                                                                                   RT @666lkn: seventeen https://t.co/VgZtjd6MLg
## 4799                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4800                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 4801                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 4802                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 4803                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4804                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4805                           RT @shuatokki: want to sell seventeen exo got7 monsta x astro poster \n\ndom jakarta\nshopee ✅\nsharing di GO ✅\nkeep event ✅ (dp 50%)\npacking (…
## 4806                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 4807                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4808                                                                                  RT @absterwebby: you better hit those notes woozi!!!! #LA3C #SEVENTEEN https://t.co/u2MJ7neoIC
## 4809                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 4810                              RT @CharmSupportLab: Be the Sun in Bulacan freebies\n\nHi! We’re giving away lots of cute fanmade stuff today! In rose quartz &amp; serenity blue…
## 4811                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4812                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 4813                                             RT @svtbz_Q8: he just won't stop copying me 😤 #CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/HlyMVkiehU
## 4814                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4815                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4816                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 4817                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4818                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4819                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4820                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 4821                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4822                                    RT @RebekkahFord: @A_DiAngelo I never thought I would die at the age of seventeen. https://t.co/XXn9EbWSdJ #paranormalromance #kindle #amre…
## 4823                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4824                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4825                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4826                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 4827                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4828                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4829                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 4830                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4831                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4832                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4833                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4834                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4835                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4836                          RT @for717s: ✦ SEVENTEEN Be The Sun in Bulacan Freebies ✦\n\nfan support for #도겸 and #조슈아 ♡\n\nsee photo for more details :)\n#BeTheSuninBULACAN…
## 4837                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4838                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4839                                 RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR S.COUPS♡*\n\nhello carats! i'll be giving away these fan…
## 4840                                RT @byuumie: yk why campfire is the suitable song for a fan project? because at the end of the day, carats &amp; seventeen can rely with each o…
## 4841                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 4842                             RT @seoksoocentric: SEVENTEEN BE THE SUN in BULACAN fan support for #도겸 and #조슈아 \n\nsince i can’t be there physically, the admins of @seokso…
## 4843                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4844                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 4845                                                                     RT @miss_svtmafia: 2 LBB TICKETS UP FOR GIVEAWAY LATER!!! 🧡\n\n#BeTSinBULACAN #BeTheSuninBULACAN @pledis_17
## 4846                                 RT @hellokrisan: Hello Carat 💎 \nHere's my Freebie Giveaway! Read the image for details and how to claim!\n\nI'll post the location on each da…
## 4847                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4848                            RT @dotdaers: ⁕ SEVENTEEN\nbe the sun bulacan\nfanmade freebies יִ\n\n꒰ esp for soonwoo- and seoksoo- ists ꒱\n\nrts are very much appreciated!\nhe…
## 4849                                    RT @twylyricbot: When I was seventeen, I wrote a song about how I'm drinking kerosene to light a fire in my gut, and I'll be coughing out e…
## 4850                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 4851                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 4852                            RT @22kristy: On hand na yay! 🥰☺️ \n\nstill sorting out pa some unsealed album and Official PC and Poster from my collection 😊👌\n\nlike &amp; rt\nfo…
## 4853                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4854                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4855                            RT @totallydeekay: ᘜ BE THE SUN in BULACAN freebies ᘜ\n\nEnlo yeorubun! I will give some freebies on svt con.\n⇢ rt &amp; like 🫶🏼\n⇢ follow for upd…
## 4856                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 4857                                    RT @jseunie07: @yupsheskitten I deserve to see #SEVENTEEN in #BeTSinBULACAN bc I really want to support them live and makadagdag to express…
## 4858                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4859                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4860                                                           RT @_itsmeolv: ~one step at one time🩶~\n\n#CaratSelcaDay #CSD #DK #도겸 #SEVENTEEN @pledis_17 https://t.co/O71rZxhjaA
## 4861                                   RT @bodylike3racha: i haven’t taken cute pics of myself since summer oops 💚💚💚\n\n#CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/2pEHkKBhwF
## 4862                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 4863                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4864                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4865                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 4866                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 4867                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4868                                  RT @sarisaristored: UPPPP PLSSS MALALA!!! Can lower pa to 4600 if meeting up tmr! \n\nWTS LFB PH BETS BULACAN UBB REG SECTION 412 svt sevente…
## 4869                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 4870                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 4871                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4872                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 4873                                  RT @SciPiHarvey: Here is the official picture let’s celebrate!!!! #teacheroftheweek \n\n⬇️ your list\n📣 tell me what you’re happy about\n♻️ Ret…
## 4874                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4875                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4876                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4877                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 4878                                   RT @yoonzinahae: One lucky #teamlabas will be able to see Seventeen later! Good luck! 💗\n\nI’ll post my whereabouts later if you wish to get…
## 4879                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4880                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4881                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4882                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 4883                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 4884                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4885                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 4886                             RT @pledis_17: [INSIDE SEVENTEEN] SEVENTEEN WORLD TOUR [BE THE SUN] ASIA BEHIND #2\n\n▶ https://t.co/9YYOuRp0t8\n\n#SEVENTEEN #세븐틴\n#INSIDE_SVT…
## 4887                                     RT @shuabambies: you know, without you i'm so lonely\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #DK #도겸 @pledis_17 https://t.co/WywsNdRV0q
## 4888                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4889                    RT @pledis_17: SEVENTEEN 'BE THE SUN' : THE CITY NAGOYA\n\n▶ https://t.co/8DcYWmhRKE\n\n#SEVENTEEN #세븐틴\n#SEVENTEEN_THE_CITY\n#まちとかがやくSEVENTEEN h…
## 4890                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 4891                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 4892                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 4893                            RT @pledis_17: [SEVENTEEN’s SNAPSHOOT] EP.49 DINO IS BACK!\n\n▶ https://t.co/mPpZoS08WJ\n\n#SEVENTEEN #세븐틴\n#SVT_SNAPSHOOT https://t.co/WO0H9HVd…
## 4894                                                 RT @yngishua: me and boyfie 💓💓💓\n\n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ #JOSHUA https://t.co/iIlmeKyFc3
## 4895                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 4896                                                   RT @notdandelion: PUT YOUR MOTHER FUCKER HANDS UP\n\n#CSD #HOSHI #CaratSelcaDay @pledis_17 #SEVENTEEN https://t.co/6lZ5cvS68r
## 4897                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 4898                                                                               RT @miss_svtmafia: See you tomorrow SEVENTEEN &amp; CARATs! ✨ @pledis_17 https://t.co/FsSy5P2ZN5
## 4899                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 4900                                   RT @junhuiprotector: I could literally tweet about every single step in the limbo choreography you don't get it #준 #JUN @pledis_17 #SEVENTE…
## 4901                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 4902                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 4903                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 4904                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4905                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4906                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4907                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 4908                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 4909                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4910                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 4911                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 4912                                    RT @svntncarat17_: Only hours left till we witness the performance powerhouse SEVENTEEN as the first ever kpop act to perform on the WORLD'…
## 4913                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4914                                                RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221208 min9yu_k \n\n➸ 🖤🤍🖤\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/9MzkhNde7L
## 4915                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4916                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4917                                  RT @SVT_stagram: [#MINGYU 📸 Instagram Story]\n221211 min9yu_k \n\n➸ #/LA3C ❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/rz79H…
## 4918                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4919                                        RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220627 min9yu_k \n\n➸ Be The Sun❤️\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/z6UdjhjyJk
## 4920                                                  RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220829 min9yu_k \n\n➸ 🖤\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/ktDJG9PKql
## 4921                                                 RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221020 min9yu_k \n\n➸ 🏀🏀\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/dIJ6og6WhP
## 4922                               RT @Brando_WX: Today's SigTor Spotlight: Tekamah, NE\n\n• Date: May 1, 1930\n• Rated: (Estimated) F4\n  — Windspeed: 207-260 mph\n• Path Length/…
## 4923                                         RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221012 min9yu_k \n\n➸ Cartier 💋 \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/RJkkud9fBt
## 4924                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 4925                                                   RT @SVT_stagram: [#MINGYU 📸 Instagram Story]\n220813 min9yu_k \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/278MVLYmKI
## 4926                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 4927                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 4928                                            RT @mcpnews: Missing Seventeen-Year-Old\n\nhttps://t.co/Z9mi8EAAjU\n\n#MCPD #MCPNews #Missing #MissingPerson https://t.co/jTd3yWM7i8
## 4929                                              RT @SVT_stagram: [#MINGYU 📸 Instagram] \n220814 min9yu_k \n\n➸ 💚🤎💚🤎\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/v51Qj8omO6
## 4930                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 4931                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4932                                                  RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220725 min9yu_k \n\n➸ 🖤\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/S0FqznpuT2
## 4933                                    RT @ZeGcgh: It’s time you start making lots of profit from trades without loses. Learn how to trade Binance futures and get free signals fr…
## 4934                                                        RT @SVT_stagram: [#MINGYU 📸 Instagram] \n220922 min9yu_k \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/kekzK2V8CH
## 4935                                                                            RT @horangsese: heart boys❤️‍🔥\n\n#HANSE #한세 #HOSHI #호시 #VICTON #SEVENTEEN https://t.co/J7TZeuak7f
## 4936                                                 RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220827 min9yu_k \n\n➸ 🏀🏀\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wukt1JPvs7
## 4937                                                  RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220826 min9yu_k \n\n➸ 🖤\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/RCNSmhBnby
## 4938                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 4939                                            RT @mcpnews: Missing Seventeen-Year-Old\n\nhttps://t.co/Z9mi8EAAjU\n\n#MCPD #MCPNews #Missing #MissingPerson https://t.co/jTd3yWM7i8
## 4940                                          RT @SVT_stagram: [#MINGYU 📸 Instagram] \n220814 min9yu_k \n\n➸ Seattle💙\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/m4jyrzOaSn
## 4941                                                RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221108 min9yu_k \n\n➸ 🤎..\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/3joUVFvxYk
## 4942                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 4943                                                         RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220912 min9yu_k \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GiIFWe2hu9
## 4944                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 4945                                                        RT @SVT_stagram: [#MINGYU 📸 Instagram] \n221207 min9yu_k \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/uIVpQgJP9H
## 4946                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4947                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4948                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4949                                                 RT @SVT_stagram: [#MINGYU 📸 Instagram] \n221201 min9yu_k \n\n➸ 🤍\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/h8YLUiiyCx
## 4950                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 4951                                            RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220901 min9yu_k \n\n➸ A-Town❤️\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0OQicc62ra
## 4952                           RT @22kristy: Finding some na pwde ko ipa freebies on Dec 17.  \n\nlike &amp; rt\nfollow for updates \n1 set inclusions per person only \nlocation :…
## 4953                                              RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220908 min9yu_k \n\n➸ ❤️💛💚💙💜\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/pDvTdlc5lb
## 4954                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 4955                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 4956                            RT @dinoscheekmoles: My carat squad 💎\n\n#CSD #CaratSelcaDay #JOSHUA\n#JEONGHAN #DINO #DK #SEVENTEEN #세븐틴 @pledis_17 \n\n@hannieduIset @ATEEZlov…
## 4957                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 4958                                      RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220815 min9yu_k\n\n➸ San Francisco😝\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/l1lVFAFNgA
## 4959                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 4960                                                   RT @SVT_stagram: [#MINGYU 📸 Instagram Story]\n221111 min9yu_k \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/RzWpLR058w
## 4961                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4962                                             RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221111 min9yu_k \n\n➸ Japan💙\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/VZkbTGdtMT
## 4963                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 4964                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 4965                                  RT @shuasmwah: @Stutiyoon , Wanna go back in that restroom and not rest?\n\n#CaratSelcaDay #CSD #stuti #whims #SEVENTEEN @pledis_17 https://t…
## 4966                                    RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 4967                                            RT @mcpnews: Missing Seventeen-Year-Old\n\nhttps://t.co/Z9mi8EAAjU\n\n#MCPD #MCPNews #Missing #MissingPerson https://t.co/jTd3yWM7i8
## 4968                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4969                                             RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221125 min9yu_k \n\n➸ JAPAN🖤\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/c7SYa9i65b
## 4970                                         RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220810 min9yu_k \n\n➸ Vancouver💙\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/1pH6lYouX1
## 4971                                  RT @alexaxoxo__: the skies are pretty but dokyeom is prettier 🤍💙\n\n#CaratSelcaDay #DOKYEOM #DK #SEVENTEEN #CSD @pledis_17 https://t.co/mPjpi…
## 4972                                          RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220803 min9yu_k \n\n➸ CHANEL 💋 \n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/JghehM00i0
## 4973                             RT @_sebenteen: #BeTSinBULACAN\nBe The Sun BULACAN\n✨Giveaway/Freebies✨\n\nI'll be giving out Wonwoo and OT13 Hand Banners!\nOpen to everyone #T…
## 4974                                           RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220720 min9yu_k \n\n➸ Welcome🌼\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/ns1dzJ3dLM
## 4975                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 4976                                           RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220802 min9yu_k \n\n➸ Holiday💛\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/kTQownjKiC
## 4977                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4978                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4979                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4980                                        RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221027 min9yu_k \n\n➸ 🤎\n\n#민규 #MAMAVOTE #seventeen #세븐틴 @pledis_17 https://t.co/IjYhW1qKqU
## 4981                       RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221118 min9yu_k\n\n➸ 💋December💋 \n#/Advertisement\n#/Cartier\n#/DazedKorea\n\n#민규 #SEVENTEEN #세븐틴 @pledis_1…
## 4982                                    RT @leeseokminheart: 221216 dk_is_dokyeom update\n\n⚔️ : white snow piled up 🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/BadiZyWG7e
## 4983                            RT @leeseokminheart: 221215 DK🌟 Weverse update\n\n⚔️ : Who's that friend on the right? 🥸\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/mOQw8vR…
## 4984                                       RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220913 min9yu_k \n\n➸ Photo by DK💚\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/D1uVAH03dK
## 4985                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 4986                                  RT @sarisaristored: UPPPP PLSSS MALALA!!! Can lower pa to 4600 if meeting up tmr! \n\nWTS LFB PH BETS BULACAN UBB REG SECTION 412 svt sevente…
## 4987                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 4988                            RT @sarisaristored: [#sarisaristore HELP RT]\n\nWTS LFB PH BETS BULACAN UBB REG SECTION 412 &amp; VERNON BE THE SUN SEOUL CARATZONE PC\n\n– deets i…
## 4989                                    RT @4ever_with17: @kpophappenings_ JEONGHAN and DK from SEVENTEEN... Seriously there is nothing normal in their lives https://t.co/LX2Gim1k…
## 4990                                     RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221213 min9yu_k \n\n➸ LA\n2022.12.10\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/OgncINmp1i
## 4991                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 4992                         RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221029 min9yu_k\n\n➸ 💛YELlOw💛\n#/Advertisement #/DUVETICA\n\n#민규 #MAMAVOTE #seventeen #세븐틴 @pledis_17 htt…
## 4993                                        RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220808 min9yu_k\n\n➸ Family golf💚\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/RPFQncNY6V
## 4994                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 4995                                            RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220701 min9yu_k \n\n➸ summer💙\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/vp3fdvx6W0
## 4996                                                                   RT @jhhs7777: 【 scan】SEVENTEEN INCOMPLETE \n\n#HOSHI #호시 #ホシ #WOOZI #우지 #ウジ https://t.co/SOL5KSaO36
## 4997                                    RT @SVT_stagram: [#MINGYU 📸 Instagram Story]\n221213 min9yu_k \n\n➸ @/snoopdogg We were so happy to be able to perform on the same stage ❤️‍🔥…
## 4998                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 4999                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 5000                           RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221011 min9yu_k \n\n➸ Red shining night 💋\n#/Advertisement #/Cartier #/CartierSeoul \n\n#민규 #SEVENTEEN #세…
## 5001                         RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220815 min9yu_k \n\n➸ Enjoy tour flight\nbye #/Seattle🖤\nsee you soon #/SanFrancisco\n\n#민규 #SEVENTEEN #세븐…
## 5002                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5003                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 5004                            RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220816 min9yu_k \n\n➸ Oakland💚\ni filmed a Sunday Morning music video of Joshua in Oakland\n\n#민규 #SEVENT…
## 5005                                                                                                     RT @gre9re: #에스쿱스 that  •᷄△•᷅  guy from seventeen https://t.co/AcyOg5ahzz
## 5006                             RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221129 min9yu_k \n\n➸ ❤️‍🔥 Be The Sun ❤️‍🔥\nin tokyo dome\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/…
## 5007                                 RT @EloisaAli5: Wts Lfb Seventeen Assorted Pc\n\n🐸 Sold as Set Only\n🐸 6,500 (6k if PAYO) \n🐸 Can look for kahati and can ship to diff address…
## 5008                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 5009                       RT @SVT_stagram: [#MINGYU 📸 Instagram]\n221008 min9yu_k \n\n➸ We got the heart We got the \n🧡soul🧡\n\nManila 2022.10.7\n\n#민규 #SEVENTEEN #세븐틴 @pled…
## 5010                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5011                          RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220716 min9yu_k\n\n➸ Pork rice soup + Daeseon (alcohol brand) + rain = 🤍\n\n#민규 #SEVENTEEN #세븐틴 @pledis_…
## 5012                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 5013                          RT @SVT_stagram: [#MINGYU 📸 Instagram]\n220722 min9yu_k \n\n➸ Off to work and off of work\n\n#민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/jwQyNdZ…
## 5014                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5015                              RT @joyiiieeee_: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away these freebies on D-Day!…
## 5016                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5017                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5018                          RT @cartdeulset: Secured sg2023 but no POB..\nmay inch pa ba if ever ipatingi? \nNeta, long dop\n\nwill get sc, mg, js &amp; vn lang\n\nDM if u like.…
## 5019                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5020                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5021                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 5022                                  RT @dokyeomfiles: Now, y’all STOP. This is so fragile! 😭\n\nSEVENTEEN: “For me Dokyeom is such a pure, innocent and sincere guy. He’s so exce…
## 5023                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5024                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5025                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5026                                 RT @diamondcartu: wts lfb \n\nSeventeen SG 23 \n- desk calendar outbox photobook digital code heart paper holder paper door hanger heart messa…
## 5027                          RT @tigerrhae: RTs &amp; LIKEs are appreciated🤍\n\n🎀SEVENTEEN BE THE SUN IN JAKARTA — ADDITIONAL SHOW🎀\n\nfreebies by @tigerrhae\n\n🗓 28 Desember 202…
## 5028                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5029                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5030                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5031                            RT @hominamina: [HELP RT &amp; LIKE ]\n☀️FREEBIES FOR BE THE SUN ADDITIONAL SHOW IN JAKARTA☀️\n\nby @hominamina \n\n📅 28 Dec 2022\n📍 GBK STADION MADY…
## 5032                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5033                                RT @kwonushii: ✨BETS IN BULACAN FREEBIES✨\n\nHello, Carats! This is my first time seeing Seventeen, and to celebrate I'm also giving freebies…
## 5034                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5035                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5036                        RT @jww_jiung: bets bulacan freebies/give away!!\n\n(minwon+cheol unofficial pcs)\n\n~ rt &amp; like \n~ open to all carats \n~ location: TBA \n\nsee u…
## 5037                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5038                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5039                      RT @jiminsols: 💌 seventeen be the sun bulacan freebies ☻\n\n♡ strictly 1:1 (random pack)\n♡ time &amp; loc: tba on d-day\n♡ mbf, rt &amp; like\n\nsee you…
## 5040                           RT @luv4hybeboys: !! BeTS IN BULACAN FREEBIES !!\n\nhello caratdeuls ♡ i’ll be giving away these ot13 hand banners ^^ see u!! \n\n↳ rt &amp; like\n↳…
## 5041                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5042                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5043                                RT @diamondcartu: Wts lfb #cee_sells \n\nSeventeen SG 23 tingi (from 1st Pre-order) \n\nHS JN MG SK VN DN still avail 165 ea member set (pc + f…
## 5044                             RT @sound_of_snow7_: •••\n𝑂𝑛𝑙𝑦 𝑡ℎ𝑜𝑠𝑒 𝑤ℎ𝑜 𝑐𝑎𝑟𝑒 𝑎𝑏𝑜𝑢𝑡 𝑦𝑜𝑢 𝑐𝑎𝑛 ℎ𝑒𝑎𝑟 𝑦𝑜𝑢 𝑤ℎ𝑒𝑛 𝑦𝑜𝑢'𝑟𝑒 𝑞𝑢𝑖𝑡𝑒\n•••\n#CSD\n#CaratSelcaDay\n#DINO\n#SEVENTEEN \n#CARAT http…
## 5045                                                                             RT @Jihooniebuys: Wts lfb seventeen face the sun yzy f\n\n7500 all in\nPAYO https://t.co/Wr60FxQagA
## 5046                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 5047                           RT @DKVOTINGTEAM: [INSTAGRAM] dk_is_dokyeom Story update ❄️\n\n@pledis_17 #세븐틴 #SEVENTEEN #DK #DOKYEOM #SEOKMIN \n#도겸 \n\n1/2 https://t.co/TrfVu…
## 5048                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5049                           RT @miss_svtmafia: D-DAY TOMORROW\nCARATS HELP RT PLEASE 😭\n\nSEVENTEEN BE THE SUN BULACAN \n\nwtt lft\n\nHAVE: (2) VIP B SOUNDCHECK\n\nWANT: (2) VI…
## 5050                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5051                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5052                                                                                                     RT @gre9re: #에스쿱스 that  •᷄△•᷅  guy from seventeen https://t.co/AcyOg5ahzz
## 5053                                      RT @CCT_WOOZI: [💎] HOT TIME! Claim 30❤️ by logging in on the app + extra 100❤️ if you post an HD pic (square) or a YouTube link! #CHOEAEDOL…
## 5054                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 5055                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5056                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5057                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5058                                          RT @baekhyunee_EX0_: •We keep this love in a photograph•\n\n#CaratSelcaDay #SEVENTEEN\n#JoshuaHong  @pledis_17 https://t.co/PJ208Q2vjw
## 5059                                   RT @tinkswonu: P1Harmony Jongseob to Hoshi: \n\n"Hello, im P1Harmony Jongseob. really, i’ve been watching your fancams and going seventeen a…
## 5060                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 5061                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5062                                RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 5063                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5064                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 5065                          RT @p1harmonyp1ece: Jongseob and intak #_WORLD challenge with seventeen hoshi 🐯\n\n#P1Harmony #피원하모니 #P1H #HARMONY #ZEROIN #둠두둠 #Doom_Du_Doom…
## 5066                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 5067                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5068                                      RT @cheolattes: you're telling me.....whatever (waves hand in the air confusingly) seventeen wears in the airport is curated by a stylist?
## 5069                                              RT @bjyoungfiles: yep, just the two of us\n\n#CSD #CaratSelcaDay #HOSHI #호시 #SEVENTEEN #CARAT @pledis_17 https://t.co/XDhnHUdHNH
## 5070                                                RT @MeetVernon_218: 221203 BE THE SUN ACHI \n\n#버논 #VERNON  #バーノン #최한솔 \n#세븐틴     #SEVENTEEN https://t.co/R0E2TOejus
## 5071                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5072                          RT @p1harmonyp1ece: Jongseob and intak #_WORLD challenge with seventeen hoshi 🐯\n\n#P1Harmony #피원하모니 #P1H #HARMONY #ZEROIN #둠두둠 #Doom_Du_Doom…
## 5073                                   RT @tinkswonu: P1Harmony Jongseob to Hoshi: \n\n"Hello, im P1Harmony Jongseob. really, i’ve been watching your fancams and going seventeen a…
## 5074                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 5075                                                   RT @mcrlyric_bot: Hold your breath when a black bird flies\nCount to seventeen and close your eyes\nI'll keep you safe inside
## 5076                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 5077                                   RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 5078                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5079                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5080                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5081                     RT @_tappiioca: ✧ BE THE SUN IN BULACAN FREEBIES ✧\n\n• RT &amp; Like\n• Location tba\n• Open for Team Con &amp; Team Labas\n• LETS TRADE 🥺\n \nMight incl…
## 5082                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 5083                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5084                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 5085                                                                      RT @SVT_Fatisha: In Jeonghans defence ‘how tf should we know know???’ 🙄🙄🙄\n\n@pledis_17 #세븐틴 #SEVENTEEN
## 5086                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5087                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5088                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 5089                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5090                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5091                             RT @kyeomfinds: (ノ◕ヮ◕)ノ*:・゚✧\n\nhello ~ we'll be handing out fanmade freebies on december 17! ✨ \n\n↬time and location tba \n↬also open for trad…
## 5092                                    RT @_jopayluvs: 𓆸 Be the sun in Bulacan freebies ˚ ༘ \n\nhenlo ebriwan ◡̈  I'll be giving out photocards and postcards at #SEVENTEEN  's Be t…
## 5093                          RT @jiminsols: 🖼 seventeen be the sun bulacan freebies ☻\n\n♡ for team labas\n♡ strictly 1:1 only\n♡ mbf, rt &amp; like\n\n~ official posters! see yo…
## 5094                                                                                                                 RT @loverlyricsbot: it's like i'm seventeen, nobody understands
## 5095                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5096                                   RT @ihrtjaehyunn: Don’t make me choose yet😭\n#csd #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN @pledis_17 #MINGYU #minghao https://t.co/v3jlln…
## 5097                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5098                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5099                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 5100                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5101                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 5102                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5103                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 5104                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 5105                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5106                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5107                         RT @kpopmultigain: like / rt if you stan any of these groups! \n\nseventeen\nred velvet\nateez\ntwice\ntxt\nitzy\nnewjeans\nblackpink\nle sserafim \nf…
## 5108                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5109                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5110                        RT @SoonTaeJayK: ✿ SEVENTEEN BE THE SUN BULACAN FREEBIES ✿\n\n-LIKE &amp; RT (mention friends)\n- follow me &amp; @ShashaKim13 (Sponsor of bracelet)\n-…
## 5111                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5112                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5113                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5114                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5115                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5116                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5117                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5118                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5119                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5120                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5121                                                                   RT @SvtShazam: #DREAM has surpassed 17,000 Shazams\n\n#세븐틴 #SEVENTEEN @pledis_17jp https://t.co/SODPsrQvAm
## 5122                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5123                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5124                              RT @kwannhao: i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ https:…
## 5125                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5126                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5127                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5128                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 5129                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5130                                                                             RT @wayvbubs: •it’s all a blur &lt;3\n#CSD #CaratSelcaDay #SEVENTEEN #HOSHI https://t.co/clt7ksVxX8
## 5131                                 RT @haosbitch: priorities before I fly……BLURRY PICS IS OUR THING!!!!! #CSD #CaratSelcaDay #MINGHAO #徐明浩 #SEVENTEEN @pledis_17 https://t.co/…
## 5132                  RT @svt_verse: [#호시 🌟 221216] 4:24 PM KST\n\n#HOSHI: Ah.. ? My stye medicineㅠ I forgot it ..\n\n&gt; ㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it (with me) tho…
## 5133                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5134                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 5135                                    RT @imhaegs: the cram packing of my freebies for tomorrow. I’ll give this envelopes randomly sa makakasalubong ko. And some lucky envelopes…
## 5136                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 5137                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5138                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5139                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5140                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5141                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5142                                RT @_bubblethe8: [ Seoul Music Awards ] \n\nThis is a REMINDER that we STILL HAVE ONGOING VOTING. Everyone can VOTE\n\nPLEASE KEEP COLLECT GOLD…
## 5143                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5144                                  RT @nugubgs_: THE BIGDIPPER's Eunbin and Siwoo have released a vocal cover of "17" by Pink Sweat$ and SEVENTEEN!\n\n🔗 https://t.co/SQE8qfYNLm…
## 5145                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 5146                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5147                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 5148                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5149                                   RT @17stationhead: SEVENTEEN is among the top 10 most streamed artists on @STATIONHEAD in 2022! 🥂\n\nCONGRATULATIONS, @pledis_17 and CARATs!…
## 5150                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5151                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5152                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5153                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5154                                                                               RT @horangrawrhae: seventeen hoshi first update in the philippines 😂\n\n©️ https://t.co/0x8uHu6M61
## 5155                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 5156                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5157                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5158                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 5159                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5160                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5161                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5162                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 5163                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5164                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5165                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5166                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5167                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5168                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5169                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5170                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 5171                                   RT @bodylike3racha: i haven’t taken cute pics of myself since summer oops 💚💚💚\n\n#CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/2pEHkKBhwF
## 5172                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5173                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5174                              RT @kwannhao: i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ https:…
## 5175                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5176                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5177                                    RT @SopheaJane: @tinkswonu I love how we have access to the chronology of this stories.. bits here and ther in different platform but alway…
## 5178                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5179                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5180                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5181                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5182                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5183                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5184                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5185                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 5186                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 5187                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5188                                    RT @treasurecharts_: #TREASURE now joins NCT, Stray Kids, Seventeen, TXT, Twice and BTS as the only Korean acts that have spent 100 weeks w…
## 5189                              RT @kwannhao: i’m the place you can come to, you’re the place i can go to 🤍 \n#CSD #CaratSelcaDay #SEVENTEEN #세븐틴 #CARAT #호시 @pledis_ https:…
## 5190                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5191                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5192                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5193                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5194                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5195                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5196                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5197                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5198                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5199                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5200                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5201                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5202                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5203                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 5204                               RT @medortophobic: 🖼🪸FREEBIES for BE THE SUN IN JAKARTA ADDITIONAL SHOW🪸🖼\nby @medortophobic \n\n📍GBK Madya Stadium\n📆December 28 2022 \n❗️Limit…
## 5205                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 5206                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5207                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5208                                    RT @4ever_with17: @kpophappenings_ JEONGHAN and DK from SEVENTEEN... Seriously there is nothing normal in their lives https://t.co/LX2Gim1k…
## 5209                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 5210                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5211                                RT @macaldeolshop: GA: Seventeen Dicon 101 Postcard\n1) Follow and turn on all notifs\n2) Follow:\nhttps://t.co/urr2lT1ZTQ\nhttps://t.co/OqPWIF…
## 5212                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5213                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 5214                               RT @adorekgyu: hi! we will be giving away freebies for seventeen #BeTheSuninBULACAN ♡\n\n1:1 ratio! limited qty\nopen for trade~\n\nto claim:\n𖧷…
## 5215                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5216                              RT @SvtShazam: Shazam Daily Top 10 (2022.12.16)\n\n1. Cheers — 598\n2. HOT — 510\n3. Very Nice — 448\n4. _WORLD — 316\n5. Darl+ing — 275\n6. Fear…
## 5217                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5218                                RT @minwonhaosss: Be the sun bulacan freebies ☀️\n\nHello, carats! I’ll be giving away minwon banners &amp; seventeen postcards on BeTS bulacan.…
## 5219                           RT @minshuwa: ✿ SEVENTEEN BE THE SUN BULACAN FREEBIES ✿\n\n📌 HELP LIKE &amp; RT\n📌 PLACE AND TIME: TBA\n📌 OPEN DMS FOR TRADING\n\nThank you! See you…
## 5220                                 RT @estaemanies: ♡ Rts and Likes are appreciated ♡ \n\nWTS CLEARANCE SALES BTS, NCT DREAM, SEVENTEEN, ENHYPEN, THE BOYZ \n\n✅️ BISA NEGO, TAKE…
## 5221                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5222                                  RT @BeySVTColombia: Seventeen about to play to 50,000 people at the Philippines Stadium in some hours \n\nBiggest K-pop concert of all time h…
## 5223                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5224                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5225                            RT @wonuahcart: 🌷 Be The Sun Bulacan Freebies 🌷\n\n♡ rt and like this tweet to spread !\n♡ mfb^^ lets be moots hehe\n♡ open for team labas &amp; te…
## 5226                                                        RT @seventeen: Mark Tuan Reveals The CRINGIEST 'GOT7' Song And His SECRET Tattoo | Read Receipts https://t.co/JPy1hR3WEo
## 5227                                 RT @xxxfelixeu: #BeTsinBulacan Giveaway ✨\n\nBecause me and @feat_gyuchan was able to secure our tickets for the con. Here's some giveaway as…
## 5228                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 5229                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 5230                              RT @gelgel_ly: You stole my heart, but i’ll let you keep it❤️\n#CaratSelcaDay #CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철  #choiseungcheol @pledis_17…
## 5231                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 5232                        RT @ardel_kim: 💎 HELP RT &amp; LIKE GUYS 💎\nFREEBIES CONCERT SEVENTEEN #BETHESUNinJKT ADDTIONAL SHOW\n\n By : @ardel_kim &amp; Kak @ji_channn\n📍 GBK Ma…
## 5233                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5234                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5235                              RT @pewrdn: 💎SEVENTEEN BE THE SUN IN JAKARTA - ADDITIONAL SHOW💎 \nFreebies by @pewrdn X @kkomaengnyel\n\n📆 28th Dec 2022\n⏰ TBA\n📍 GBK Madya Sta…
## 5236                        RT @HiragiJujika: Seventeen BeTS Bulacan Freebies \n\n💎 open for all carats (team labas &amp; team con)\n💎 pls RT &amp; 💗 to spread\n💎 pls fall in line…
## 5237                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 5238                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5239                            RT @taehyuncore: kissy from minghao &amp; i ( ˘ ³˘) ♡ \n#CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #THE8 #csd #CARAT #세븐틴 https://t.co/IZgU9nryRB
## 5240                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5241                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5242                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5243                               RT @mochishuuu: "I don't think glasses look good on you, sir"\n\n#CSD #CaratSelcaDay #scoups #seventeen #세븐틴 @pledis_17 https://t.co/GyH3x8qc…
## 5244                                   RT @KkaKka_MeoRi: Heyhooo guys!!!\nCause it will be my first concert, I want to share the joy with all of you by giving this freebies in col…
## 5245                                  RT @bestboywonuu: to those who are willing to sponsor tickets / donate for tickets please dm me! \n\nwe'll try to buy tickets para maipamigay…
## 5246                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5247                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 5248                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 5249                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5250                             RT @shemcart: #ShemmyPasabuy \n\nWts lfb ph only \n\nSeventeen Jeonghan Dream Kyocera Photocard\n💸 ₱1680 each (all in + lsf)\n❗ all must be taken…
## 5251                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5252                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 5253                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5254                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5255                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5256                                     RT @pledis_17: [17'S 원우] DAZED KOREA Behind Photo📸\n\n@DazedKorea\n#원우 #WONWOO\n#세븐틴 #SEVENTEEN\n#DAZEDKOREA https://t.co/SO01sISTL5
## 5257                                RT @soobdragonhoe: No matter what happens \nWe’ll be together\nJust like always🌷\n\n#csd #seventeen #minghao #the8 #CaratSelcaDay @pledis_17 ht…
## 5258                            RT @jeongshuabby: 💎RTs &amp; LIKEs are very appreciated💎\n\nSEVENTEEN #BETHESUNinJKT\n.。*♡ freebies by Jeongshuabby x @byScenvantaee \n\n🗓️ 28 Desem…
## 5259                           RT @pdestiana23: Likes &amp; RT Are very Appreciated 💙\n\n 💞 Freebies SEVENTEEN Be The Sun Additional Show in Jakarta 💞 \nby : xumeihua \n\nGBK Mady…
## 5260                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 5261                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5262                                 RT @luvbananapie: [HELP RT &amp; LIKE ]\n☀️FREEBIES FOR BE THE SUN ADDITIONAL SHOW IN JAKARTA☀️\n\nby @luvbananapie x @fettuxyne x @mingyoupuppy…
## 5263                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(2) UBC Regular Ticket Giveaway\n\n1. MBF (unfollow me laterrr yes u can)\n2…
## 5264                                                                          RT @sounds_of_cheol: seventeen heading to ph today ✈️ have a safe flight boys 🖤 https://t.co/A11KHyOizW
## 5265                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5266                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5267                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5268                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5269                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 5270                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 5271                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5272                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5273                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5274                                 RT @wintecrown: 💎 FREEBIES SEVENTEEN BE THE SUN - ADDITIONAL SHOW IN JAKARTA 💎 \nby @wintecrown \n\n📍 GBK Madya Stadium\n📆 28 Dec 2022\n⏰ TBA…
## 5275                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5276                               RT @wonuonuw: [Help like &amp; rt]\n\n❤️‍🔥FREEBIES ADDITIONAL SHOW SEVENTEEN "BE THE SUN" IN JAKARTA❤️‍🔥\n\nFreebies presented by: \n@scoupse88  @wo…
## 5277                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5278                          RT @harulorss: #LORSS_ONHANDS\n\nwts lfb ph help rt \n\n₱250 ea\n- nct universe\n- nct 127 sticker\n- ive eleven\n\n₱150 ea\n- tbz maverick\n- monsta…
## 5279                               RT @4m_jessica99: [ RTS are appreciated ] \n\n🐯SEVENTEEN BE THE SUN ADDITIONAL SHOW IN JAKARTA🐯\nfreebies by @4m_jessica99\n\n📍Stadion Madya GBK…
## 5280                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5281                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5282                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5283                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5284                              RT @wonuesia: [ RT and Likes are appreciated ]\n\n              ✨️ 𝐁𝐄 𝐓𝐇𝐄 𝐒𝐔𝐍 ✨️\n𝐀𝐃𝐃𝐒𝐇𝐎𝐖 𝐢𝐧 𝐉𝐀𝐊𝐀𝐑𝐓𝐀 𝐅𝐑𝐄𝐄𝐁𝐈𝐄𝐒\nby @wonuesia \n\n📍: GBK Madya Stad…
## 5285                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5286                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5287                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 5288                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5289                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5290                              RT @cherubfinds: UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN An Ode\n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: Imile, Whoos…
## 5291                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5292                              RT @cherubfinds: UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN Semicolon \n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: Imile, W…
## 5293                              RT @cherubfinds: UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN Your Choice \n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: Imile,…
## 5294                           RT @emergencygyu: Hi~ Kindly help RT/Like\nFREEBIES SEVENTEEN BE THE SUN (additional show)\nBy @emergencygyu &amp; @raxieeww_\n\n📅: 28.12.22\n📍: GBK…
## 5295                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 5296                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5297                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5298                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5299                              RT @scoups_of_suga: [ RT and Likes are appreciated ]\n\n💎 SEVENTEEN BE THE SUN 💎\nADDSHOW IN JAKARTA\n\nFreebies Jompo by @scoups_of_suga \n\n📍 :…
## 5300                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 5301                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5302                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5303                                        RT @mjkrokosmoss: they call us children of barbara d'urso 💋\n\n#CaratSelcaDay #CSD #MINGYU #SEVENTEEN @pledis_17 https://t.co/7A2N7pHW7v
## 5304                             RT @youmicasa: ╰☆☆ FREEBIES BE THE SUN ADD SHOW IN JAKARTA☆☆╮\nFan support for Minwon Seventeen\n\n💫By : @youmicasa &amp; @chellehansol 💫\n📍 : GBK…
## 5305                                      RT @adobonishua: same dream, same mind, same night :)\n\n#CSD #CaratSelcaDay #JOSHUA #세븐틴 #SEVENTEEN @pledis_17 https://t.co/snsFnkxfJp
## 5306                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5307                               RT @sugamyaw: 💎Seventeen Be The Sun Additional Show in Jakarta Freebies💎\n\nby @sugawmyaw\n\n📆: 28 December 2022\n📍: Gelora Bung Karno Madya Sta…
## 5308                                   RT @17stationhead: SEVENTEEN is among the top 10 most streamed artists on @STATIONHEAD in 2022! 🥂\n\nCONGRATULATIONS, @pledis_17 and CARATs!…
## 5309                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5310                                   RT @junhuiprotector: I could literally tweet about every single step in the limbo choreography you don't get it #준 #JUN @pledis_17 #SEVENTE…
## 5311                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5312                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 5313                                 RT @leemayrah: 🌻SEVENTEEN BE THE SUN IN JAKARTA - ADDSHOW🌻\nminwon ver. freebies by @cloudygureumi x @leemayrah\n\n🗓️Dec 28th, 2022\n📌GBK Madya…
## 5314                                 RT @cloudygureumi: 🌻SEVENTEEN BE THE SUN IN JAKARTA - ADDSHOW🌻\nminwon ver. freebies by @cloudygureumi x @leemayrah\n\n🗓️Dec 28th, 2022\n📌GBK M…
## 5315                                     RT @SVT_Fancafe: [#JEONGHAN🌟 Weverse]\n221217 comment\n\n➸ That's upsetting \n\n#정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/inrQngDjf0
## 5316                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5317                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5318                         RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 5319                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5320                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5321                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5322                               RT @gimbapkidding: [rt and likes are very appreciated ✨]\n\nSEVENTEEN WORLD TOUR #BETHESUNinJKT ADDITIONAL SHOW\n\n----- freebies by @gimbapkid…
## 5323                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5324                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5325                             RT @min19_cm: [RT &amp; Likes are very appreciated]\n\n☀️FREEBIES SEVENTEEN BE THE SUN ADDITIONAL SHOW JAKARTA☀️\nby: @min19_cm\n\n📍GBK Madya Stadiu…
## 5326                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 5327                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5328                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5329                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5330                                                            RT @louspiderboy: io che aspetto di compiere 17 anni solo per avere that kind of radiance you only have at seventeen
## 5331                           RT @skypypinky: ꒰ RTs &amp; LIKEs are very appreciated ꒱♡\n\n💕 SEVENTEEN BE THE SUN ADDITIONAL SHOW IN JAKARTA FREEBIES 💕\nby @skypypinky @XstipCo…
## 5332                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 5333                                RT @shuasophy: seventeen be the sun bulacan\n\n🚨 i will be giving away Minwon and Seoksoo  and SVT grad pic freebies for #BeTSinBULACAN \n\n🐶 r…
## 5334                                                                                               RT @sounds_of_cheol: seventeen today going to ph 🛫 ot13 🖤 https://t.co/CVgO1urLZY
## 5335                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 5336                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5337                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 5338                           RT @scribbeys: hi. helping a friend!\n\nWTS LFB \n\nBE THE SUN IN BULACAN \nUPPERBOX B REG 426\nRow 89\nSeat 542\n\nPrice: 4,750 thru gcash or paypa…
## 5339                                                                      RT @PT_KOREA: 221216 Jun Twitter Update\n \nhttps://t.co/YBgFsAlgXh\n \n#SEVENTEEN https://t.co/6oWBbzvVCU
## 5340                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5341                                 RT @DELULURACHA: Picnic table park dates with him ~🧺\n•••••••••••••••••••••••••••••••••••\n@pledis_17 \n#csd #CaratSelcaDay #seventeen #svt #s…
## 5342                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5343                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5344                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5345                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5346                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 5347                               RT @CaryennG: Don’t forget to vote for SEVENTEEN on Seoul Music Awards in Fancast.\n\n#SEVENTEEN @pledis_17 #세븐틴 #Svt_Dream https://t.co/blZT…
## 5348                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 5349                                     RT @minghaocheol_: neways super excited for betsinbulacan tomorrow !!!!!!! seventeen as the first kpop group to hold a solo concert in the…
## 5350                                     RT @AP: A huge aquarium in Berlin burst, spilling debris, water and hundreds of tropical fish out of the AquaDom tourist attraction in the…
## 5351                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5352                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5353                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5354                             RT @pledis_17: [INSIDE SEVENTEEN] SEVENTEEN WORLD TOUR [BE THE SUN] ASIA BEHIND #1\n\n▶ https://t.co/yvJns7gAfL\n\n#SEVENTEEN #세븐틴\n#INSIDE_SVT…
## 5355                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5356                                    RT @UNESCO: The #SEVENTEEN members became who they are thanks to #education❤️\n\nNow @pledis_17 want to use the power of education to create…
## 5357                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5358                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5359                                   RT @17stationhead: SEVENTEEN is among the top 10 most streamed artists on @STATIONHEAD in 2022! 🥂\n\nCONGRATULATIONS, @pledis_17 and CARATs!…
## 5360                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5361                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 5362                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5363                               RT @ChinaMusicData: 🇨🇳 “Best Selling Male Group Album” nominees\n\n• ‘Beatbox’ — NCT DREAM\n• ‘Glitch Mode’ — NCT DREAM\n• ‘Proof’ — BTS\n• ‘Fac…
## 5364                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5365                                 RT @CCT_DINO: 🦖 [ #DINO's Daily Banner ] 🦦\n\n🍀Vote your Daily hearts on Community post\n🍀Collect and Save Ever Hearts for Charity Fairy Proje…
## 5366                             RT @_svtandyou_: 🌻BE THE SUN in JAKARTA ☀️\nSUPPORT FREEBIES BY @_svtandyou_ \n\n📍GBK MADYA STADION\n🗓️ 28 DECEMBER 2022\n⏰ TIME &amp; LOCATION TBA…
## 5367                            RT @seokmin_br: [📸] 16.12.22. #DK, #DINO e #VERNON para o Seventeen Season's Greetings 2023.\n\n© 13thistory\n\n#도겸 #세븐틴 #SEVENTEEN @pledis_17…
## 5368                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 5369                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5370                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5371                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 5372                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5373                              RT @tianggyu: 💎BE THE SUN JAKARTA ADDITIONAL SHOW FREEBIES✨\nby me @tianggyu \n\n📅 December 28th, 2022\n📍 GBK Madya Stadium (detail loc TBA)\n⏰…
## 5374                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5375                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5376                                                                               RT @miss_svtmafia: SEVENTEEN, Kings of Synchronization @pledis_17 #세븐틴 https://t.co/ZnqVTzbyQf
## 5377                                  RT @wonpirisesang: ☀️Be The Sun Additional Show in JKT Freebies by @wonpirisesang☀️\n\nDetails? Check below.\n\nLimited quantity, so grab it fa…
## 5378                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5379                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5380                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5381                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 5382                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5383                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5384                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 5385                                RT @nugucoups_: ☀️ Be The Sun In Bulacan Giveaway \n\n📍PH Arena \n🗓 December 17\n     \n     ~Kindly check ung mga pics below, see you soon cara…
## 5386                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5387                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 5388                            RT @xoxosvtfatt: 🧩💎SEVENTEEN BE THE SUN ADD-SHOW IN JAKARTA FREEBIES💎🧩\n\nby: @xoxosvtfatt \n~RT &amp; Like are very appreciated~\n\n🗓️ Rabu, 28 Des…
## 5389                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5390                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5391                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5392                                                                                                        RT @astraleisa: #seventeen's  gentle masculinity https://t.co/CmeeqkHoP5
## 5393                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5394                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 5395                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5396                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 5397                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5398                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5399                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5400                                    RT @jeonselca: basically seventeen from korea to japan to korea to la to japan to philippines to korea to indonesia just going home to pack…
## 5401                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5402                             RT @getmorefine: [SEVENTEEN WORLD TOUR]\n\nBE THE SUN JAKARTA\n-addition shows-\n\n💖JOSHUA EARLY BDAY💖\n        Special Freebies\n       by @getmo…
## 5403                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5404                           RT @meplushim: [RT &amp; Like will be appreciated]\n\nFREEBIES SEVENTEEN BE THE SUN ADDITIONAL SHOW JAKARTA\nby @meplushim 💎\n\n📍GBK Madya\n📅 28 Dec…
## 5405                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5406                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 5407                                  RT @lucidhaos: track #1 : pagtingin\n \n— wherein two best friends, Mikael and Drei, lost in the sea of their deepest desires find the island…
## 5408                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5409                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5410                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5411                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5412                                    RT @CaratLandPH: Before this day ends (and before the dday begins), we would like to take this time to appreciate all CARATS who support us…
## 5413                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5414                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5415                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5416                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5417                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5418                                RT @darling_hjs: [PREVIEW] FREEBIES SEVENTEEN BE THE SUN ADDITIONAL SHOW IN JAKARTA 💎☀️ by @darling_hjs &amp; @mo0n_beanz \n\n🗓️ Wednesday, 28.12…
## 5419                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 5420                              RT @rayofsunkyeom: If you leave me,\nMy tears turn into rain and fall down,\nAnd the four seasons will never stop.\n\n𝙄𝙛 𝙮𝙤𝙪 𝙡𝙚𝙖𝙫𝙚 𝙢𝙚.\n\n#CSD #C…
## 5421                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5422                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5423                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 5424                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5425                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5426                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 5427                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 5428                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5429                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5430                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 5431                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5432                                 RT @taecookies_v: ⛅️ #BeTheSuninBULACAN Freebie ☁️\n\n🔅RT and Like\n🔅Follow if u want to be armycarat moots 🤗\n🔅Reply ur fave svt gif + #MAMAVO…
## 5433                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 5434                               RT @sugamyaw: 💎Seventeen Be The Sun Additional Show in Jakarta Freebies💎\n\nby @sugawmyaw\n\n📆: 28 December 2022\n📍: Gelora Bung Karno Madya Sta…
## 5435                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5436                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5437                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5438                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 5439                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 5440                        RT @heedungiesunflo: RTs &amp; LIKEs are appreciated💖\n\n✨SEVENTEEN BE THE SUN IN JAKARTA — ADDITIONAL SHOW✨\n\nfreebies by @heedungiesunflo \n\n🗓 28…
## 5441                                        RT @deariekyu: come, come into my world 🍓!!!\n\n#CaratSelcaDay #CARAT #csd #SEVENTEEN #JOSHUA #조슈아 @pledis_17 https://t.co/2wfPrMFdiJ
## 5442                                 RT @leeseoksy: [ BE THE SUN in JKT Additional Show ]\n☀️🤪 FREEBIES BY @leeseoky ☀️🤪\n\nrt and like are much appreciated🫶🏼\n\n📍GBK MADYA, SENAYAN…
## 5443                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5444                                                                      RT @seokminroyal: i wanna match you to my heart \n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/Cl9PfLCkwE
## 5445                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5446                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5447                                     RT @NME: #SEVENTEEN didn’t just bring their ‘Be The Sun’ world tour to Japan – they brought a whole extravaganza of experiences with them,…
## 5448                           RT @yobesuho: ✎ . . be the sun freebies | fan support ☺︎\n\n🐯 strictly 1:1\n🐸 loc: tba on d-day\n🐶 rt &amp; like\n\n#BeTheSuninBULACAN #BeTSinBulacan…
## 5449                            RT @pledis_17: [#17pcs] ‘DREAM’ Release Event Behind film photo\n\n▶ https://t.co/VsWIpdEDsY\n\n#SEVENTEEN #세븐틴\n#SVT_DREAM #DREAM https://t.co/…
## 5450                            RT @Diamond_nineee: 🧸RT &amp; Like are very appreciated🧸\n\n🍊Seventeen Add Show #BETHESUNinJKT Freebies by PERAWAN🍊\n\n📍GBK Madya Stadium \n🗓28 Dec…
## 5451                            RT @darapss: ꕥ [𝚁𝚃 &amp; 𝚕𝚒𝚔𝚎 𝚊𝚛𝚎 𝚟𝚎𝚛𝚢 𝚊𝚙𝚙𝚛𝚎𝚌𝚒𝚊𝚝𝚎!] ꕥ\n\n💎 Seventeen Be The Sun in Jakarta - Additional Show 💎\n\nFreebies by : @darapss @adorablee…
## 5452                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5453                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5454                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5455                         RT @kpopmultigain: like / rt if you stan any of these groups! \n\nseventeen\nred velvet\nateez\ntwice\ntxt\nitzy\nnewjeans\nblackpink\nle sserafim \nf…
## 5456                            RT @jeonwuh: 💎BE THE SUN ADDITIONAL SHOW IN JKT💎\nFreebies by @jeonwuh @thepistolstaar\n\nkindly rt &amp; like this tweet❣️\n- let’s be moots?\n- sp…
## 5457                              RT @ourleadersfatu: will you smile again for me ?\n\n#CaratSelcaDay #CSD #Seungcheol \n#최승철 #SCOUPS #ChoiSeungcheol #SEVENTEEN https://t.co/yX…
## 5458                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5459                                 RT @leemayrah: 🌻SEVENTEEN BE THE SUN IN JAKARTA - ADDSHOW🌻\nminwon ver. freebies by @cloudygureumi x @leemayrah\n\n🗓️Dec 28th, 2022\n📌GBK Madya…
## 5460                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5461                                    RT @OHMYPROM0: not new to rp promo gdm exo bts chanbaek wonwoo kyungsoo jennie album solo follow trick nsfw 18+ views wonwoo seventeen taeh…
## 5462                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5463                            RT @neo__phyte: [RT &amp; Like will be appreciated]\n\nBe The Sun Additional Show in Jakarta \nFreebies by @neo__phyte x @km9yugf\n\n🗓️ Rabu, 28 Des…
## 5464                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5465                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 5466                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 5467                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5468                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 5469                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5470                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5471                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 5472                            RT @frilemercier: ✶ wts lfb ph .ᐟ #polsells \n\njeonghan attacca beatroad set: 3400\n\n— strictly sold as set \n— payo / 2 days res\n— rcbyt \n\nt.…
## 5473                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5474                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5475                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 5476                              RT @frilemercier: P500 gcash giveaway .ᐟ\n\n- rt this tweet and tweets below \n- ends once both sets are sold\n\n✶ wts lfb ph .ᐟ\nt. enhypen sakr…
## 5477                                 RT @winterangelhao: good afternoon 😄\n\n#CSD #caratselcaday #carat #joshua #shua #조슈아  #seventeen #세븐틴 @pledis_17 https://t.co/RmoCan0WGP
## 5478                                                                  RT @bubble_ncteaa: car selcas with gyu ( ´▽`)\n#CaratSelcaDay #CSD #MINGYU #SEVENTEEN https://t.co/dRLXRp5v1y
## 5479                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5480                               RT @Brando_WX: Today's SigTor Spotlight: Tekamah, NE\n\n• Date: May 1, 1930\n• Rated: (Estimated) F4\n  — Windspeed: 207-260 mph\n• Path Length/…
## 5481                                                                                                       RT @1woo17: SEVENTEEN AND CARAT IN TOKYO DOME 🥹🥰\nhttps://t.co/zVnygtNIns
## 5482                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5483                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 5484                                   RT @UaenCarat0912: I will be giving away 100 sets of seoksoo/svt freebies for #BeTheSuninBULACAN \nLimited lang since mahirap ang buhay chos…
## 5485                                 RT @MANIIC11: CANYOUSEEME? by DANNY RAN OUT ON ALL PLATS (prod.MANIIC) \nhttps://t.co/gPn89hSZ39\n\n#SEVENTEEN #rap #newmusic #g59 #16December…
## 5486                                   RT @blcshao_o: ⑅⁠˖⁠♡ you've always been there for me\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/NqEWOXrN1N
## 5487                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5488                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5489                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5490                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5491                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5492                       RT @print_tales: 〖KPOP large tote bags〗\n\n» MAMAMOO, SEVENTEEN, IU, SUPER JUNIOR, ENHYPEN, NewJeans\n\n☑ SCO &amp; 50% DP Opt\n☑ Bundle Deal\n\nPre-o…
## 5493                            RT @dinoscheekmoles: My carat squad 💎\n\n#CSD #CaratSelcaDay #JOSHUA\n#JEONGHAN #DINO #DK #SEVENTEEN #세븐틴 @pledis_17 \n\n@hannieduIset @ATEEZlov…
## 5494                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5495                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5496                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5497                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 5498                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5499                         RT @pritiunnie: BE THE SUN ADDITIONAL SHOW IN JAKARTA\n\n🐯FREEBIES FOR HOSHI🐯\n\n📍Stadium Madya, GBK\n🗓 28 Dec 2022\n⏰ TBA\n\n❗️very limited❗️\n\nple…
## 5500                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5501                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5502                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5503                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5504                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 5505                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 5506                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5507                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 5508                               RT @masjeongwonu: RT/Like for a Appreciated🫶🏻\n\n💗🌸Freebies Be The Sun Jakarta Additional Show by @masjeongwonu🌸💗\n\n📆: 28 December 2022\n📍: Gel…
## 5509                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 5510                                       RT @philconcerts: SEVENTEEN has arrived safely in Manila. Let's make history tomorrow at the world's largest indoor arena. #BeTSinBULACAN
## 5511                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5512                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5513                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5514                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5515                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5516                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5517                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5518                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5519                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5520                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5521                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 5522                                RT @sebongchin: FREEBIES Seventeen Be the Sun (Additional Show in JKT) \n\nby: @marrktz on ig and @sebongchin \nLIMITED QTY ❣️\n\n° rt and likes…
## 5523                                    RT @philconcerts: SEVENTEEN at the Incheon Airport on the way to the Philippines for #BeTSinBULACAN, happening on December 17 at the Philip…
## 5524                                  RT @gyuilatte: We're on set, 10 minutes before photoshoot~\n\n#CSD #CaratSelcaDay #CARAT_SELCA_DAY  #MINGYU #SEVENTEEN https://t.co/TNJs83GsUy
## 5525                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5526                                  RT @AboutScotlandd: 🏴󠁧󠁢󠁳󠁣󠁴󠁿 | Ben Doak\n\nCongratulations to Ben Doak on his first assist for @LFC as his low driven cross is turned in by Da…
## 5527                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5528                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5529                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5530                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 5531                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5532                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5533                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5534                                RT @smileyleeDK: 🧡SVT BeTS in PH ARENA giveaways/freebies🧡\n\n❣️MBF\n❣️RT &amp; LIKE\n❣️Show me your twitter on D-day\n❣️reply ur fave svt/bias pic…
## 5535                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 5536                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 5537                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5538                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5539                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 5540                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5541                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5542                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5543                                                                      RT @seokminroyal: i wanna match you to my heart \n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/Cl9PfLCkwE
## 5544                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5545                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5546                            RT @ikeukartz: wts lfb #qwery_sells\n\nSeventeen Fleece Anorak \nPower of Love Concert Merch \n\n— 1500\n— size medium \n— can lower if payo\n— fre…
## 5547                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 5548                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 5549                                                                      RT @seokminroyal: i wanna match you to my heart \n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/Cl9PfLCkwE
## 5550                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5551                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 5552                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5553                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5554                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5555                          RT @wongyusebongie: RTs &amp; LIKEs are very appreciated💎\n\nSEVENTEEN #BETHESUNinJKT\n.。*♡ freebies by @ariyantiCRT\n\n🗓️ 28 Desember 2022\n🕘 TBA\n📍G…
## 5556                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 5557                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5558                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5559                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5560                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5561                                                               RT @min9yu_tttop: seventeen departure for be the sun in bulacan ! safe skies @pledis_17 ♡ https://t.co/K5SyKxITPt
## 5562                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 5563                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5564                  RT @svt_verse: [#호시 🌟 221216] 4:24 PM KST\n\n#HOSHI: Ah.. ? My stye medicineㅠ I forgot it ..\n\n&gt; ㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it (with me) tho…
## 5565                           RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nmingyu photocard set - ₱2,650\n\n- rcbyt\n- ❌ sensitive collectors\n- flexi dop\n\nreply mine to cl…
## 5566                                          RT @svt_verse: [#정한’s reply 🌟 221217] 12:10 AM KST\n\n#JEONGHAN: That’s sad\n\n@pledis_17 #SEVENTEEN #세븐틴 https://t.co/EOqIsYtYs5
## 5567                               RT @min9yu_kimg: wts lfb seventeen svt pc ph\n\nseungkwan photocard set - ₱1,200\n\n- sector17 weverse album version (unscanned qr) + pob\n- fac…
## 5568                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5569                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5570                                  RT @lucidhaos: track #1 : pagtingin\n \n— wherein two best friends, Mikael and Drei, lost in the sea of their deepest desires find the island…
## 5571                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5572                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 5573                          RT @BrasilDino: [📸 SCAN]- 16.12.22- \n#DINO, #DK e #VERNON para o Season’s Greetings 2023\n\n🦀 \n#DINO #SEVENTEEN #디노 @pledis_17  #세븐틴 \nCr: 13t…
## 5574                             RT @jww_enthusiast: Now that I know you exist, how do I not love you ~ ♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17…
## 5575                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5576                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5577                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5578                                  RT @ready_to_woo: For today's selca day let me bring back whatever this was I did with Jeonghan \n\n#SEVENTEEN #CaratSelcaDay  #CSD #JEONGHAN…
## 5579                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5580                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 5581                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5582                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5583                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5584                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5585                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5586                                     RT @Cloudflare: In this blog post, we’ll highlight a few stories from some of our seventeen Employee Resource Groups (ERGs), including the…
## 5587                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5588                                  RT @CheonsaHaniee: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nPlease see photo for more details\nStrictly 1:1 🥺\n\n☀️RT + Like (follow not mandatory…
## 5589                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5590                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 5591                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5592                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5593                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5594                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5595                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5596                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5597                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5598                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5599                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5600                                                          RT @xu8hao_o: ube pandan couple 💚💜\n#CaratSelcaDay #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/SSZPNXqKDB
## 5601                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 5602                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5603                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5604                    RT @SVT_stagram: [#DK 📸 Instagram Story] \n221216 dk_is_dokyeom \n\n➸ Joker movie poster ㅋㅋㅋㅋㅋㅋ\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/t…
## 5605                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5606                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5607                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5608                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5609                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5610                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5611                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5612                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5613                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 5614                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 5615                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5616                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 5617                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5618                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 5619                              RT @cherubfinds: UAE 🇦🇪/ WW 🌎 DECLUTTERING SALE \n\n↬ SEVENTEEN Heng:garæ \n\n💰payment: Bank transfer, PayPal, COD\n\n📦shipment options: Imile, W…
## 5620                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 5621                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5622                                                                   RT @RJ27Princess: @SRJKASHIKA @saurabhraajjain It's at seventeen now\n\n#3YrsOfChefNeilOberoi\nSRJ Lived Neil
## 5623                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5624                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5625                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5626                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5627                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 5628                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5629                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5630                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5631                                                                              RT @wooyoobubble: my darling &lt;3 \n\n#CSD #SEVENTEEN #CaratSelcaDay #jun https://t.co/NCtcMmtEHC
## 5632                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5633                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5634                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5635                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5636                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5637                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5638                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5639                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5640                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5641                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5642                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5643                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5644                               RT @macaldeolshop: GA: Seventeen Sector 17\n1) Follow and turn on all notifs\n2) Follow:\nhttps://t.co/urr2lT1ZTQ\nhttps://t.co/OqPWIFFw4s\n3) L…
## 5645                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 5646                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 5647                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 5648                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5649                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5650                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5651                                                 RT @wonuversee: matchy with wonu 🫶🏻 \n\n#CaratSelcaDay #CSD #WONWOO #원우 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/y6wg3sw8uy
## 5652                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5653                                            RT @isekaigyu: Glad that the airport personnel confiscated the videos of those who attempted to film and record seventeen's arrival.
## 5654                                 RT @cholulasmarket: ‼️ URGENT 😭😭\n\nwts lfb seventeen be the sun bulacan lowerbox 105 row 16\n- meet up ph arena\n- rfs: emergency\n- you’ll be…
## 5655                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5656                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5657                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 5658                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 5659                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5660                           RT @kawaiikyeom: . . . for our sun, deekay 🤓\n\n— BeTS in Bulacan freebies —\n\n+ randomly distributed\n+ open to all carats!!\n+ like &amp; rts are…
## 5661                                       RT @noniesjacket: me &amp; vernon when the dj plays party rock anthem🤝🏼\n\n#CaratSelcaDay #CSD #VERNON #SEVENTEEN https://t.co/jwn8zgAcbS
## 5662                                                                                                                 RT @loverlyricsbot: it's like i'm seventeen, nobody understands
## 5663                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5664                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 5665                                 RT @DELULURACHA: Picnic table park dates with him ~🧺\n•••••••••••••••••••••••••••••••••••\n@pledis_17 \n#csd #CaratSelcaDay #seventeen #svt #s…
## 5666                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 5667                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 5668                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5669                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5670                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5671                            RT @odetovou: me 🤝 cheol\nnever looking at the camera\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/6ZA5Db0p4P
## 5672                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5673                                  RT @sngj7hyobns: BE THE SUN IN BULACAN FREEBIES\n\nhi carats! me and user @bebeamoraaa14 will be giving away freebies, open for team loob and…
## 5674                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5675                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5676                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5677                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 5678                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5679                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5680                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5681                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 5682                                                           RT @itsjba0325: Just how fast the night changes!😊 \n#KimSejeong #HongJisoo #Sejeong #Joshua #ioi #gugudan #SEVENTEEN…
## 5683                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 5684                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5685                                                                                                    RT @taehyuncore: seventeen pictures that are so pinterest coded ; a thread 💌
## 5686                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5687                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 5688                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 5689                                                                                                    RT @taehyuncore: seventeen pictures that are so pinterest coded ; a thread 💌
## 5690                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 5691                                RT @snwulove: wts lfb help rt pre order keyrings for soonwoo lovers!\n\n₱100 only for keyrings( 3 slots per keyring )\n\ncan open for other mem…
## 5692                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5693                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5694                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5695                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5696                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5697                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5698                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5699                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 5700                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5701                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5702                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5703                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 5704                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5705                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5706                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 5707                                 RT @seolarenjun: I long to become a ray of light and caress his face 🖤\n\n#CaratSelcaDay #CARAT #CSD #SEVENTEEN #MINGHAO #THE8\n@pledis_17 htt…
## 5708                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5709                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 5710                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 5711                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5712                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5713                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5714                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5715                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 5716                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5717                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5718                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 5719                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 5720                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5721                                  RT @_wonwoorideul__: wts lfb ph seventeen photocards\n#yanatindera \nmostly wonwoo yung andito, strictly sold as set but y'all can look for k…
## 5722                                  RT @BooNon_98: remember when woozi said this in AAA 2019...\n\n"It's a big honor for us to win album of the year daesang on a self produced a…
## 5723                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5724                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5725                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5726                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5727                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 5728                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5729                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5730                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5731                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5732                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 5733                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5734                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 5735                               RT @scoups4life: WTS LFB PH\n\nSeventeen Be the sun in Bulacan\n\n❤️ (1) LBA REG 103 R32 S29\n🧡 ₱8k (discounted from 12.7k!) \n💛 Already same pri…
## 5736                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 5737                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5738                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5739                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5740                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5741                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5742                                   RT @woojoodollz: we’re matchy matchy 🫶🏻\n\n{#CSD #CaratSelcaDay #SEVENTEEN    #CARAT #WOOZI #세븐틴 #우지 @pledis_17} https://t.co/Jbf82MNdBg
## 5743                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 5744                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5745                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5746                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5747                             RT @jww_enthusiast: Now that I know you exist, how do I not love you ~ ♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17…
## 5748                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5749                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5750                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5751                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5752                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 5753                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 5754                                                           RT @itsjba0325: Just how fast the night changes!😊 \n#KimSejeong #HongJisoo #Sejeong #Joshua #ioi #gugudan #SEVENTEEN…
## 5755                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5756                                      RT @xuminghaoluvr: me 🤝🏼 hoshi\nselfies in the dark &gt;&gt;&gt;\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/xtEHKp5KKX
## 5757                            RT @taehyuncore: kissy from minghao &amp; i ( ˘ ³˘) ♡ \n#CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #THE8 #csd #CARAT #세븐틴 https://t.co/IZgU9nryRB
## 5758                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 5759                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5760                                 RT @DokyeomGaabs: 'Cause we never go out of style ✨️\n\neu e o nonu de roupa chique 😋\n#CSD #CaratSelcaDay #SEVENTEEN #WONWOO @pledis_17 https…
## 5761                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5762                             RT @RaidenVotes: SMA VOTES GIVEAWAY (Main Prize)\n\n⭐ 500 Gold Hearts\n\n🪁 Like and RT this Tweet\n🪁 Follow me (Must reach 150 followers)\n🪁 Drop…
## 5763                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5764                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5765                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 5766                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 5767                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5768                                                                   RT @shuarandom: fairy joshua and his 4 little doves\n\n#JOSHUA #조슈아 #SEVENTEEN\n\n https://t.co/UhfyawieXf
## 5769                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5770                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5771                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5772                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5773                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5774                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 5775                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5776                                                                RT @seobkitty: me and my date. 💋\n~@pledis_17 \n\n#CSD #CaratSelcaDay #Mingyu #SEVENTEEN https://t.co/rhWKVH4krk
## 5777                              RT @smplyfallinforu: 📞 ℍ𝕖𝕝𝕝𝕠 ⭐\n\nᴊᴏꜱʜᴜᴀ ʙɪʀᴛʜᴅᴀʏ ᴄᴀꜰᴇ ᴇᴠᴇɴᴛ\n🦌 December 30, 2022\n🦌 WouldULike PH Branches @WouldULikeph \n(SM Light Mall, SM G…
## 5778                        RT @wwonecart: 「 wts lfb ph | help rt ! 」\n\ndk dangwa set\n   ー ₱1000 (all-in + lsf)\n   ー only sold as set \n   ー ☓ sensi\n   ー also wtt dokyeo…
## 5779                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5780                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5781                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 5782                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5783                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5784                                                                 RT @svtcontents: [THREAD]  SEVENTEEN at LA3C Festival - Day 1 \n\nvia Average Socialite https://t.co/Br41wNAKur
## 5785                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5786                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 5787                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5788                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 5789                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5790                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 5791                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5792                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5793                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 5794                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5795                               RT @Calli_x06: 💎SEVENTEEN BE THE SUN BULACAN FREEBIES💎\n\nHi carats, I will be giving these on December 17 \n\n- Open for all Carats\n- PLACE AN…
## 5796                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5797                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5798                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 5799                           RT @yoonz1n004: happy jeongcheol day~ 💙💜\n\n🍒🍓 𝐬𝐭𝐫𝐞𝐧𝐠𝐭𝐡 &amp; 𝐞𝐬𝐜𝐚𝐩𝐞 🍓🍒 \nseventeen be the sun bulacan\n\n📢 i will be giving away coupjeong/jeongche…
## 5800                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5801                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5802                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5803                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5804                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5805                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5806                                RT @shuasophy: seventeen be the sun bulacan\n\n🚨 i will be giving away Minwon and Seoksoo  and SVT grad pic freebies for #BeTSinBULACAN \n\n🐶 r…
## 5807                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 5808                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5809                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5810                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5811                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5812                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5813                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5814                                         RT @devluvschwe: sweater + glasses gf and hoodie + glasses bf #csd #CaratSelcaDay #VERNON #Seventeen @pledis_17 https://t.co/fvGLOBFnOW
## 5815                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5816                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5817                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5818                                                                                                                  RT @slvppy: twitter needs a dislike button so i can be a hater
## 5819                                    RT @neo__phyte: Let’s see my happiness~ ♡♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17 https://t.co/pslTZAeFLG
## 5820                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5821                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5822                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 5823                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5824                                RT @shuasophy: seventeen be the sun bulacan\n\n🚨 i will be giving away Minwon and Seoksoo  and SVT grad pic freebies for #BeTSinBULACAN \n\n🐶 r…
## 5825                                   RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 5826                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 5827                           RT @yoonz1n004: happy jeongcheol day~ 💙💜\n\n🍒🍓 𝐬𝐭𝐫𝐞𝐧𝐠𝐭𝐡 &amp; 𝐞𝐬𝐜𝐚𝐩𝐞 🍓🍒 \nseventeen be the sun bulacan\n\n📢 i will be giving away coupjeong/jeongche…
## 5828                                RT @shuasophy: seventeen be the sun bulacan\n\n🚨 i will be giving away Minwon and Seoksoo  and SVT grad pic freebies for #BeTSinBULACAN \n\n🐶 r…
## 5829                                                                                                                           RT @mirandaescobarr: my hip dips make me feel so ugly
## 5830                           RT @yoonz1n004: happy jeongcheol day~ 💙💜\n\n🍒🍓 𝐬𝐭𝐫𝐞𝐧𝐠𝐭𝐡 &amp; 𝐞𝐬𝐜𝐚𝐩𝐞 🍓🍒 \nseventeen be the sun bulacan\n\n📢 i will be giving away coupjeong/jeongche…
## 5831                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5832                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5833                                RT @verseok_: vernonified.\n\nwill wear the same fit tomorrow see you guys!\n#CSD #CaratSelcaDay\n#VERNON #SEVENTEEN @pledis_17 https://t.co/Bl…
## 5834                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5835                                  RT @trishfgx: 🌻 BeTS in Bulacan freebies 🌻\n\nHi! I'll be giving a pack of candies which includes unofficial photos of Jeonghan. I'll give it…
## 5836                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5837                               RT @pixylshi: [USA/WW GO] ViVi 2023.02 JAPAN MAGAZINE (SEVENTEEN)\n\n💸$7 - CAP=20\n⏲Dec 19th 7PM EST\n📝https://t.co/RtqeL78rYo\n🆙https://t.co/U0…
## 5838                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5839                               RT @glassofcoups: (helping a friend) \nRT/likes vv appreciated💌\n\nWTS Be The Sun Additional Show In Jakarta\n- Blue C Carmem (1x)\n- reasonable…
## 5840                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 5841                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5842                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5843                                            RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 5844                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5845                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5846                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 5847                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 5848                                                                       RT @QBall_Ww: 221215\nICN✈️EyeS on U\n#SEVENTEEN   #원우  #WONWOO  #ウォヌ #세븐틴 https://t.co/QE8YTV2iHu
## 5849                               RT @pledischarts: #SEVENTEEN 4th Album ‘Face the Sun’ has now surpassed 3,000,000 (3 Million) copies sold on Circle (GAON). 🎉\n\n#세븐틴 @pledis…
## 5850                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 5851                                                                                                       RT @cscthnkr: #scoups : that 😗 guy from seventeen https://t.co/TuFP5JhAHA
## 5852                                       RT @the2the8: significant other reveal!! &lt;3\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wgaLeJ1oZw
## 5853                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5854                                                        RT @yeoshuaa_: me &amp; my boyfie ♡\n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN #조슈아 @pledis_17 https://t.co/g5kondqa3y
## 5855                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 5856                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5857                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5858                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5859                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5860                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 5861                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5862                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 5863                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5864                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5865                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5866                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5867                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 5868                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5869                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5870                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5871                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 5872                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5873                               RT @svtcharts: #SVT_DREAM is now certified 3x Platinum in Japan (RIAJ) for reaching 750,000 shipments!\n\n#SEVENTEEN #세븐틴 @pledis_17 @pledis_…
## 5874                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5875                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5876                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 5877                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5878                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5879                             RT @jww_enthusiast: Now that I know you exist, how do I not love you ~ ♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17…
## 5880                                                                        RT @_leathv_: With the love of my life 🤍 #CaratSelcaDay #CSD #MINGHAO #SEVENTEEN https://t.co/s5SiJkzrON
## 5881                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5882                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 5883                                                                        RT @_leathv_: With the love of my life 🤍 #CaratSelcaDay #CSD #MINGHAO #SEVENTEEN https://t.co/s5SiJkzrON
## 5884                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 5885                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5886                              RT @RCTIPlus: GIVEAWAY TIME 🥳🥳🥳\n\nRCTI+ bagi-bagi 2 official Lighstick K-Pop PENTAGON, TREASURE &amp; 8 Album SEVENTEEN, THE BOYZ, STRAY KIDS da…
## 5887                                                        RT @yeoshuaa_: me &amp; my boyfie ♡\n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN #조슈아 @pledis_17 https://t.co/g5kondqa3y
## 5888                                 RT @17_seventeen_05: When I see my face in your two eyes\nAs if the world has stopped, I will hug you. \n\n#SEVENTEEN #HOSHI #CSD  #CaratSelca…
## 5889                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 5890                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 5891                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5892                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 5893                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 5894                                                         RT @mulletd1no: fuzzy hat season!❄️☃️🌨️ \n#csd #CaratSelcaDay #SCOUPS #에스쿱스 #세븐틴 #SEVENTEEN https://t.co/W3yhmEVe8L
## 5895                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5896                                    RT @treasurecharts_: #TREASURE now joins NCT, Stray Kids, Seventeen, TXT, Twice and BTS as the only Korean acts that have spent 100 weeks w…
## 5897                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5898                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 5899                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 5900                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 5901                                   RT @soompi: #SEVENTEEN Goes Triple Platinum For 1st Time In Japan + #BTS's #Jin Earns 1st Solo RIAJ Album Certification\nhttps://t.co/X7jeqe…
## 5902                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 5903                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5904                                                                RT @seobkitty: me and my date. 💋\n~@pledis_17 \n\n#CSD #CaratSelcaDay #Mingyu #SEVENTEEN https://t.co/rhWKVH4krk
## 5905                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5906                                                        RT @yeoshuaa_: me &amp; my boyfie ♡\n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN #조슈아 @pledis_17 https://t.co/g5kondqa3y
## 5907                                  RT @gobypurplekiss: 🛍️PURPLEKISS ONGOING PRE-ORDERS\n\n🛒 NCT Dream - Winter Special Mini Album (Candy) X Sellkor\n🛒 Tabungan Lightstick (All G…
## 5908                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5909                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 5910                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 5911                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5912                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 5913                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5914                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 5915                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5916                                    RT @cheolkwons: hello! i won't be there today but i've got a few freebies to share as well! just look for the same person on the tweet belo…
## 5917                                                            RT @rervoke: — we keep it colorful 🌈\n[ #CSD #CaratSelcaDay #SVT\n#Hoshi #SEVENTEEN #CARAT ] https://t.co/uYCkeVEqAo
## 5918                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5919                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 5920                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5921                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 5922                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5923                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 5924                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5925                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 5926                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 5927                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 5928                                RT @yoonminhoes: ଘ(੭*ˊᵕˋ)੭* Caratdeul!! \n\nMe and @Kylavv18 will be giving away freebies for BeTS 🤩\n\n♡Read and follow the mechanics to claim…
## 5929                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 5930                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 5931                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5932                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5933                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5934                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5935                                                          RT @xu8hao_o: ube pandan couple 💚💜\n#CaratSelcaDay #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/SSZPNXqKDB
## 5936                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 5937                                    RT @envimediaco: Calling all sneakerheads! 👟👀 If you’re looking for new kicks, check out how you can steal #SEVENTEEN’s #Hoshi’s style from…
## 5938                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 5939                                   RT @yoonzinahae: One lucky #teamlabas will be able to see Seventeen later! Good luck! 💗\n\nI’ll post my whereabouts later if you wish to get…
## 5940                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 5941                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 5942                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5943                              RT @booshushuu: [RTs are appreciated] 🫶🏼\n\n🌼 SEVENTEEN “BE THE SUN” ADD SHOW IN JAKARTA FREEBIES 🌼\nby : @booshushuu \n\n📍Stadion Madya GBK\n🗓 2…
## 5944                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5945                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5946                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5947                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5948                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 5949                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5950                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5951                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 5952                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5953                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5954                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 5955                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 5956                                        RT @dinosfavgf: im going ia again sorry &gt;&lt; #csd #CARAT_SELCA_DAY #최승철 #SEUNGCHEOL #SEVENTEEN @pledis_17 https://t.co/tJdu2XEuTC
## 5957                                                   RT @elyxeura: The art and the artist 🎨\n\n#CaratSelcaDay #SEVENTEEN\n#세븐틴 #THE8 #디에잇 @pledis_17 https://t.co/Kn13F3S7SP
## 5958                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 5959                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 5960                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 5961                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 5962                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 5963                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 5964                                   RT @Seoul_Merchant: ⚠️RT FOR A SURPRISE DM⚠️\n#SeoulMerchant_SALE\n\n12.15 SALE RANDOM ALBUM FOR 99 EACH\n\n• FREE SHIPPING on selected items!…
## 5965                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 5966                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5967                                         RT @devluvschwe: sweater + glasses gf and hoodie + glasses bf #csd #CaratSelcaDay #VERNON #Seventeen @pledis_17 https://t.co/fvGLOBFnOW
## 5968                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 5969                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 5970                                                                                        RT @svtcontents: [#INSTAGRAM] munwansik IG update with SEVENTEEN https://t.co/JyVbKphiuy
## 5971                                  RT @daljackgyeom: wts lfb seventeen minghao jeonghan ph padilla kihno postcards dicon heart cheek \n\n600 for set only\ncan ship to different…
## 5972                               RT @dxlcefarniente: jeonghan will always be the #1 seventeen vocal enthusiast: \n\nsecond life ver.\n\n#SVT_RockTheLA3C_Festival\n#SEVENTEEN_AT_…
## 5973                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 5974                                                                                                       RT @ankiiithecutiee: Sixteen seventeen eighteen\n\nBB16 SHOW US PRIYANKIT
## 5975                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 5976                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5977                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 5978                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5979                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 5980                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 5981                                                                                                           RT @sseraespagirls: SEVENTEEN - fear | STAYC  https://t.co/XcGeruA7M9
## 5982                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 5983                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 5984                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 5985                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 5986                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 5987                                     RT @min9yu_tttop: seventeen will perform in bulacan with their dancers..? oh my god pls CHEERS on the setlist 🕯️ \n\nhttps://t.co/Ty0HavRLgR
## 5988                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 5989                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 5990                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 5991                               RT @ChinaMusicData: 🇨🇳 “Best Selling Male Group Album” nominees\n\n• ‘Beatbox’ — NCT DREAM\n• ‘Glitch Mode’ — NCT DREAM\n• ‘Proof’ — BTS\n• ‘Fac…
## 5992                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 5993                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 5994                                        RT @dinosfavgf: im going ia again sorry &gt;&lt; #csd #CARAT_SELCA_DAY #최승철 #SEUNGCHEOL #SEVENTEEN @pledis_17 https://t.co/tJdu2XEuTC
## 5995                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 5996                                RT @svtcontents: [#MAGAZINE] SEVENTEEN for ViVi Magazine February 2023 Issue Details\n\nSpecial Edition\nAmazon: https://t.co/JclzJkLqzU\nRakut…
## 5997                                 RT @svtcontents: [#FANSIGN] SEVENTEEN 4th Full Album 'Face the Sun' Yizhiyu Fansign Event Round F Photocards\n\n— Random 1 out of 13\n\n🖇️ http…
## 5998                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 5999                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 6000                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6001                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6002                                    RT @svtcontents: 📰 SEVENTEEN is nominated under several categories at the 2022 China Year End Awards! Winners will be announced on December…
## 6003                                                  RT @svtcontents: 📰 SEVENTEEN's 'HOT' is one of the most streamed songs in Stationhead this 2022!! 🥳\n\nhttps://t.co/I3tTsn1sgK
## 6004                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6005                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 6006                                     RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 6007                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6008                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6009                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6010                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 6011                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 6012                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6013                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6014                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 6015                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6016                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6017                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6018                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 6019                                    RT @Heavy_Dew: @SimonDavisBarry AHHHHHH I promise I will promote the show and make people sign the petition to the concert I’m attending la…
## 6020                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 6021                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6022                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6023                                   RT @loeyshuaa: “Confuse Hoshi with clam Joshua ft hyper girl with protective women” 😋❤️ @pledis_17 \n\n#CSD #CaratSelcaDay #JOSHUA #HOSHI #SE…
## 6024                                            RT @isekaigyu: Glad that the airport personnel confiscated the videos of those who attempted to film and record seventeen's arrival.
## 6025                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6026                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 6027                                                                   RT @shuarandom: fairy joshua and his 4 little doves\n\n#JOSHUA #조슈아 #SEVENTEEN\n\n https://t.co/UhfyawieXf
## 6028                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6029                             RT @honeygyuhao: leagues apart but still very obsessed with Jeonghan\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.…
## 6030                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6031                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6032                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6033                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6034                                                       RT @Kurotsuchi_____: 𝑀𝑟 𝑎𝑛𝑑 𝑀𝑟𝑠 𝐵𝑜𝑜🍊\n\n.\n\n#CaratSelcaDay #CSD #SEVENTEEN #SEUNGKWAN @pledis_17 https://t.co/T6eAu9JArf
## 6035                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6036                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6037                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6038                                  RT @17CARATS_INA: - ' - SEVENTEEN HAS CHECK IN JAKARTA CITY - ' - \n\nThank you for participating and supporting us as a sponsor of this proj…
## 6039                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6040                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6041                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 6042                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6043                           RT @soongyuexe: help rt! #saiwts ph go 🇵🇭\n\n꒰ hoshi mingyu don’t wanna cry acrylic standee &amp; seventeen keyrings by @soongyu ꒱\n- ₱100/ stande…
## 6044                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6045                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6046                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6047                                    RT @CaratLandPH: We have received reports of people sharing videos of SEVENTEEN recorded in places where they shouldn't be disturbed in the…
## 6048                         RT @cafe_joshua_th: ꒰ pls rt 💎꒱\n\n🌹#JOSHUA 'Birthday Cafe BKK🌹\n\n🗓️ 22 - 28 DEC.\n🚩@fanscafe_bkk\n\n  🌹HASHTAG \n#DreamOfRedRose_1230 \n\n#Happy_JO…
## 6049                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6050                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6051                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6052                             RT @SVT_Fancafe: [#MINGYU🌟 Weverse]\n221215 -19:53 KST-\n\n➸ By any chance, has anyone seen my... earphones at the airport.......\n\n#민규 #SEVENT…
## 6053                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6054                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6055                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6056                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6057                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 6058                                                          RT @SVT_Fancafe: [#HOSHI🌟 Weverse] \n221215 -19:49 KST-\n\n#호시 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/nZbhHOvFyY
## 6059                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6060                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6061                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6062                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6063                                                                                               RT @sounds_of_cheol: seventeen today going to ph 🛫 ot13 🖤 https://t.co/CVgO1urLZY
## 6064                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6065                                                               RT @min9yu_tttop: seventeen departure for be the sun in bulacan ! safe skies @pledis_17 ♡ https://t.co/K5SyKxITPt
## 6066                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6067                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6068                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 6069                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 6070                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6071                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6072                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 6073                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6074                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 6075                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6076                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6077                  RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 6078                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6079                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6080                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6081                             RT @smplyfallinforu: ☀️ BE THE SUN in Bulacan ☀️\n\n💎 SCoups, Jeonghan, Woozi and Joshua birthday freebies 🍒😇🍚🦌\n\nDecember 17, 2022\nTime &amp; Loc…
## 6082                                RT @verseok_: vernonified.\n\nwill wear the same fit tomorrow see you guys!\n#CSD #CaratSelcaDay\n#VERNON #SEVENTEEN @pledis_17 https://t.co/Bl…
## 6083                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6084                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6085                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6086                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6087                           RT @jinrrys07: Wts LFB\nBets bulacan \nSvt seventeen \n\nLBB regular\nSection 207\nRow 53\n\nPhp 10700 (regular ticket price) \n\nSELLING AT 8000php…
## 6088                                    RT @khanea_: it’s dday of be the sun in bulacan! may this day go well for seventeen and carats. let’s cherish this moment as svt is the fir…
## 6089                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6090                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6091                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6092                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 6093                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6094                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6095                                                                          RT @sounds_of_cheol: seventeen heading to ph today ✈️ have a safe flight boys 🖤 https://t.co/A11KHyOizW
## 6096                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6097                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6098                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6099                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6100                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6101                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6102                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6103                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6104                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6105                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6106                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 6107                               RT @chansolboo: wts lfb ph\n\nsvt seventeen bets bulacan\nLBA regular 112 , row 23\n\n- ₱12,700 (tix+ sm fees) can lower to 12k if getting today…
## 6108                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6109                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6110                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6111                                   RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' 3 CITY MIX D-1\n\nVOD ON-AIR\n2022.11.25 8PM (FRI) \n▶ https://t.co/BjDpzxmTvJ…
## 6112                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6113                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6114                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6115                                                         RT @mulletd1no: fuzzy hat season!❄️☃️🌨️ \n#csd #CaratSelcaDay #SCOUPS #에스쿱스 #세븐틴 #SEVENTEEN https://t.co/W3yhmEVe8L
## 6116                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6117                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6118                               RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' VOD Official Photo #3\n\nVOD ON-AIR TONIGHT 8PM!\n▶ https://t.co/BjDpzx5QtJ \n\n#S…
## 6119                                                                              RT @wooyoobubble: my darling &lt;3 \n\n#CSD #SEVENTEEN #CaratSelcaDay #jun https://t.co/NCtcMmtEHC
## 6120                            RT @pledis_17: [#17pcs] ‘DREAM’ Release Event Behind film photo\n\n▶ https://t.co/VsWIpdEDsY\n\n#SEVENTEEN #세븐틴\n#SVT_DREAM #DREAM https://t.co/…
## 6121                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6122                               RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' VOD Official Photo #3\n\nVOD ON-AIR TONIGHT 8PM!\n▶ https://t.co/BjDpzx5QtJ \n\n#S…
## 6123                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6124                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 6125                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 6126                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6127                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6128                               RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' VOD Official Photo #3\n\nVOD ON-AIR TONIGHT 8PM!\n▶ https://t.co/BjDpzx5QtJ \n\n#S…
## 6129                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6130                               RT @pledis_17: 'TOUR-ING : SEVENTEEN WORLD TOUR [BE THE SUN]' VOD Official Photo #3\n\nVOD ON-AIR TONIGHT 8PM!\n▶ https://t.co/BjDpzx5QtJ \n\n#S…
## 6131                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6132                                  RT @ready_to_woo: For today's selca day let me bring back whatever this was I did with Jeonghan \n\n#SEVENTEEN #CaratSelcaDay  #CSD #JEONGHAN…
## 6133                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 6134                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. when did you feel the happiest recently? \n\n🦌: the happiest....\n😇: i feel so happy becau…
## 6135                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6136                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6137                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6138                                                                    RT @iIywh: HE KNEW EXACTLY WHAT HE WAS DOING HERE @pledis_17 #SEVENTEEN #HOSHI #LA3C https://t.co/y8NRa1z4uI
## 6139                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6140                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6141                     RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 6142                                                 RT @svtcontents: [THREAD]  SEVENTEEN at LA3C Festival - Day 1 \n\nvia Asia Pacific Arts Online Magazine https://t.co/t5vFFwDeoA
## 6143                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6144                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6145                                    RT @livenationph: Check out this guide to Philippine Arena Doors for an easy and hassle-free entry to your ticket sections. See you tomorro…
## 6146                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6147                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6148                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6149                                                                                             RT @eunoia__svt: SEVENTEEN IS 13\n\n@pledis_17 #SEVENTEEN \nhttps://t.co/l0SKnbz3Ph
## 6150                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 6151                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6152                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6153                  RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 6154                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6155                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6156                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6157                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6158                  RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 6159                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 6160                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 6161                                       RT @dokyeomfiles: I survived 2022, thanks to DK / SEVENTEEN OT13! 🥺😭\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK \nhttps://t.co/uJM8HOC6IV
## 6162                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6163                                                        RT @xum8nghao_o2: [SEVENTEEN WEVERSE]\n221201\n#JEONGHAN 🌟\n\n#SEVENTEEN #SVT_UPDATES @pledis_17 https://t.co/E2VuFDLKUE
## 6164                        RT @alaiwahmeng: wtb / want to buy\n\nsg23 photocards\n- jeonghan\n- joshua\n- mingyu\n- hoshi\n- wonwoo\n\n✅pair is ok\n✅satuan with higher price is…
## 6165                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6166                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6167                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6168                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6169                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6170                                                                                                   RT @wonubliss: seventeen's quarantine life @pledis_17 https://t.co/T5X3OeB9vj
## 6171                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6172                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 6173                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6174                          RT @seoksooinlove: ✨Be The Sun in Bulacan freebies✨\n\nI'll be giving away glow in the dark bracelets, approx 150pcs \n\n♡ For team concert &amp; t…
## 6175                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6176                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6177                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6178                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 6179                                                                                       RT @sounds_of_cheol: seventeen in ph 🇵🇭 \nlechon - bbq - jollibee https://t.co/cpdM7h85Oo
## 6180                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6181                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6182                               RT @Calli_x06: 💎SEVENTEEN BE THE SUN BULACAN FREEBIES💎\n\nHi carats, I will be giving these on December 17 \n\n- Open for all Carats\n- PLACE AN…
## 6183                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6184                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6185                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6186                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6187                                                      RT @ye0sunx: alexa, play 'crazy in love' by seventeen&lt;3\n\n#CaratSelcaDay #csd #Junhui #MINGHAO https://t.co/mk8uiUCRUj
## 6188                                                                                                      RT @wonubliss: seventeen and jollibee chicken joy🍗 https://t.co/RFoVNkAA8p
## 6189                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6190                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6191                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6192                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6193                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6194                                                                                                                                    RT @2_moka2006: Seventeen \n#الروح_الحلوة_في
## 6195                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 6196                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 6197                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6198                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6199                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6200                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6201                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6202                                                 RT @svtcontents: [THREAD]  SEVENTEEN at LA3C Festival - Day 1 \n\nvia Asia Pacific Arts Online Magazine https://t.co/t5vFFwDeoA
## 6203                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 6204                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6205                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6206                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6207                     RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 6208                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6209                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6210                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6211                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6212                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6213                            RT @pledis_17: [#17pcs] ‘DREAM’ Release Event Behind film photo\n\n▶ https://t.co/VsWIpdEDsY\n\n#SEVENTEEN #세븐틴\n#SVT_DREAM #DREAM https://t.co/…
## 6214                                   RT @_bubblethe8: D-1 to BE THE SUN IN BULACAN! ☀️\n\nTickets: https://t.co/hoSlgwAFwa\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/QNLdySgiY8
## 6215                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 6216                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6217                                 RT @shuareads: Hello to my fellow joshushushu &amp; couprang! i will be giving away limited cheolshua/cheolsoo freebies on d-day! 🍒🦌 will also…
## 6218                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 6219                                  RT @wonubliss: 2022 Asia Artist Awards \n🏆 Hot Trend\n🏆 Fabulous\n🏆 Singer of the Year \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/2zMWmc3gPU
## 6220                            RT @seokmin_br: [📸] 16.12.22. #DK, #DINO e #VERNON para o Seventeen Season's Greetings 2023.\n\n© 13thistory\n\n#도겸 #세븐틴 #SEVENTEEN @pledis_17…
## 6221                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6222                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6223                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6224                                                                               RT @miss_svtmafia: See you tomorrow SEVENTEEN &amp; CARATs! ✨ @pledis_17 https://t.co/FsSy5P2ZN5
## 6225                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6226                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6227                               RT @Genius_kor: #GeniusCharts | 2022 Year-End Genius Korea Chart | Top Male Groups\n1. Stray Kids\n2. BTS\n3. ENHYPEN\n4. TOMORROW X TOGETHER\n5…
## 6228                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6229                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6230                            RT @dadeuthannie: going seventeen universe with dino (picheolin) as the main character 😌\n\nwhat on earth &gt; boo drop guru &gt; wonwoo’s diary ht…
## 6231                                                                                  RT @smolseokmin: PLEASE 😭\n\n221210 #DOKYEOM DK #LA3C #SEVENTEEN #도겸 https://t.co/yhOXFRWGZ3
## 6232                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6233                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6234                               RT @essicakes_: 🧡 BE THE SUN IN BULACAN FREEBIES 🧡\n\nHi! I'll be giving out diamond ring pop with light + random unofficial pcs later! ✨\n \nK…
## 6235                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6236                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6237                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6238                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6239                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅ LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#SEVENTEEN #TWICE #TXT #…
## 6240                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 6241                                  RT @dadeuthannie: “The whole thing was made possible thanks to their sense of humor and their trustworthy acting skills.”\n\n“ We just gave t…
## 6242                                    RT @BILLLIEFILES: SEVENTEEN’s SEUNGKWAN posted a signed the Billage of perception: chapter 2 album he got from Billlie on his Instagram Sto…
## 6243                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6244                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6245                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 6246                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6247                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6248                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6249                                       RT @jeonwonhao: hey hey hey, carats! i'll be giving away haikyu x seventeen freebies for #BeTSinBULACAN ◡̈ .⁠。⁠*⁠♡\n\n✿ includes 1 member ea…
## 6250                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6251                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 6252                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6253                          RT @feat_annaaa: wts lfb\n\nubc reg 410\n2k\nLONG DOP \ndp : 1k\nrembal : 1k (kahit until end of january na) \n\nrfs : sudden exam sked :(\n\nHELP RT…
## 6254                                RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 6255                             RT @underscore_kdot: wts lfb onhand\n\nSeventeen Be The Sun tix\nUBB PREM 417 same price + online fee\n\nrfs: decided not to go \n\ndm me for more…
## 6256                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6257                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6258                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6259                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 6260                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6261                          RT @teumecarat1213: a little giveaway for #BeTheSunBulacan \n\nFOLLOW @treasure_cart\nRT &amp; LIKE this post..\n\nkamsahamnida...\nSEE YOU ALL TOMOR…
## 6262                              RT @rayofsunkyeom: If you leave me,\nMy tears turn into rain and fall down,\nAnd the four seasons will never stop.\n\n𝙄𝙛 𝙮𝙤𝙪 𝙡𝙚𝙖𝙫𝙚 𝙢𝙚.\n\n#CSD #C…
## 6263                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6264                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 6265                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6266                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6267                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6268                       RT @treasure_cart: a little giveaway for #BeTheSunBulacan \n\nFOLLOW us &amp; @teumecarat1213\nRT &amp; LIKE this post..\n\nkamsahamnida...\nSEE YOU ALL…
## 6269                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6270                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6271                                 RT @svtcontents: [#FANSIGN] SEVENTEEN 4th Full Album 'Face the Sun' Yizhiyu Fansign Event Round F Photocards\n\n— Random 1 out of 13\n\n🖇️ http…
## 6272                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6273                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6274                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6275                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6276                                RT @svtcontents: [#MAGAZINE] SEVENTEEN for ViVi Magazine February 2023 Issue Details\n\nSpecial Edition\nAmazon: https://t.co/JclzJkLqzU\nRakut…
## 6277                                                                                        RT @svtcontents: [#INSTAGRAM] munwansik IG update with SEVENTEEN https://t.co/JyVbKphiuy
## 6278                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6279                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6280                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 6281                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6282                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6283                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6284                                                                 RT @Blossomseason_: 221213 #버논 #세븐틴 #vernon #seventeen\nMy black cat is rockstar.. https://t.co/9evJZZlapu
## 6285                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6286                                RT @gyumicart: wts lfb ph seventeen fts yzy f [batch 2]\n\n❌ scoups jeonghan jun mingyu\n✅ joshua hoshi wonwoo woozi the8 dk seungkwan vernon…
## 6287                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6288                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6289                               RT @byunscart456: wts lfb ph svt\n\nseventeen dk your choice hmv vernon face the sun weverse sector17 pc —  2200 (free sf)\n\n— payo\n— dm to cl…
## 6290                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6291                                RT @J2hann: WTS Seventeen Be The Sun in Bulacan ticket:\n\n— UBC REG 409 Row seat: 99-165\n\n1,850+ 100 online fee (Same price bought) = ₱1,950…
## 6292                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6293                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6294                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6295                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 6296                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6297                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6298                                    RT @SopheaJane: @tinkswonu I love how we have access to the chronology of this stories.. bits here and ther in different platform but alway…
## 6299                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6300                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6301                              RT @cinnamonkeu: helping a friend!! help rt 🫶🏻\n\n🔥 WTS LFB SEVENTEEN BE THE SUN - BULACAN 🔥\n\n(2) Tickets \n💎SECTION: UBOX C PREM 417\n💎ROW: 11…
## 6302                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6303                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6304                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6305                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6306                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 6307                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6308                                       RT @noniesjacket: me &amp; vernon when the dj plays party rock anthem🤝🏼\n\n#CaratSelcaDay #CSD #VERNON #SEVENTEEN https://t.co/jwn8zgAcbS
## 6309                                                                                     RT @soonchanranghae: SEVENTEEN BE THE SUN WORLD TOUR LYRICS AND FANCHANT GUIDE\n\nA thread;
## 6310                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6311                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6312                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6313                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6314                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6315                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6316                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6317                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6318                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6319                                   RT @classytae18: 💌 Be The Sun Ticket Envelope 💌\n\n✔️ Matte printed\n✔️ thickness is similar to folder\n✔️ Can choose ur bet members\n✔️ 30 peso…
## 6320                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6321                               RT @kpopvotes_ga: GIVEAWAY SEOUL MUSIC AWARDS 2022 MAIN\n\n🎁 10 votes (1000 💛) \n\nRules:\n📌Like and Rt this\n📌 Follow @kpopvotes_ga (must reach…
## 6322                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6323                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6324                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6325                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6326                                                 RT @svtcontents: [THREAD]  SEVENTEEN at LA3C Festival - Day 1 \n\nvia Asia Pacific Arts Online Magazine https://t.co/t5vFFwDeoA
## 6327                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6328                                                                        RT @_leathv_: With the love of my life 🤍 #CaratSelcaDay #CSD #MINGHAO #SEVENTEEN https://t.co/s5SiJkzrON
## 6329                                                                      RT @Twentieshoyo: sheeesh 😎\n\n[ #THE8 #SEVENTEEN #CSD #CaratSelcaDay @pledis_17 ] https://t.co/3yKZqTxMLn
## 6330                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6331                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6332                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6333                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6334                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 6335                                 RT @SVT_Fancafe: [#JOSHUA🌟 Weverse]\n221214 -00:43 KST-\n\n➸ I asked Jeonghan to take pics making my legs look long, and this is how he took i…
## 6336                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6337                                 RT @kyeomcarthur: — seventeen be the sun in bulacan 🌻\n\nhi! I'll be giving out freebies on dec 17 🫶 thank you and see you carats! \n\nrts are…
## 6338                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6339                                RT @kyeomcarthur: annyeong it's lee chan! \n\nso ayon, I'll be selling baby seventeen bubbleheads tom. 60 pesos each ^^ \n\nsadly, I wasn't abl…
## 6340                                 RT @DokyeomGaabs: 'Cause we never go out of style ✨️\n\neu e o nonu de roupa chique 😋\n#CSD #CaratSelcaDay #SEVENTEEN #WONWOO @pledis_17 https…
## 6341                                    RT @sevalentine_: CARATs! SEVENTEEN is coming back this December 17 for their additional show, #BeTheSuninBULACAN! 💎☀️ \n\nJoin them as they…
## 6342                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6343                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6344                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6345                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 6346                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6347                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 6348                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6349                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6350                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 6351                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6352                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6353                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6354                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6355                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6356                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6357                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6358                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6359                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6360                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6361                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6362                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6363                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6364                                RT @qwertdkk: wts lfb svt ph || help rt !  \n\ndk 200 | jn 300 | ww 400 | hs 250 | wz 200 | sk 200 | js 250 | hs 250\n\nset price: 2,050 | 2000…
## 6365                                RT @SVT_Fancafe: [#DK🌟 Weverse]\n221213 -23:44 KST-\n\n➸ Carats♥️ Thankyou for making Seventeen proud todayㅎㅎ Thanks to our Carats' love and s…
## 6366                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6367                            RT @mownchild: —An art gallery could never be as unique as you.\n\n#CSD #CaratSelcaDay #MINGYU #김민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/M…
## 6368                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6369                                                                               RT @miss_svtmafia: See you tomorrow SEVENTEEN &amp; CARATs! ✨ @pledis_17 https://t.co/FsSy5P2ZN5
## 6370                        RT @miss_svtmafia: D-DAY TOMORROW ㅠㅠㅠ\nCARATS HELP RT PLEASE 😭\n\nSEVENTEEN BE THE SUN BULACAN \n\nwtt lft\n\nHAVE: (2) VIP B SOUNDCHECK\n\nWANT: (2…
## 6371                               RT @_gumgummy: 𝑰'𝒍𝒍 𝒘𝒊𝒍𝒍 𝒏𝒆𝒗𝒆𝒓 𝒇𝒊𝒏𝒊𝒔𝒉\n 𝒇𝒂𝒍𝒍𝒊𝒏𝒈 𝒊𝒏 𝒍𝒐𝒗𝒆 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖.\n\n#CSD #CaratSelcaDay #Seungkwan #SEVENTEEN #승관 @pledis_17 https://t.co/Jlk…
## 6372                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6373                                                        RT @kenari_na: 👖🪣🎩🍊 | Jeans Bucket Hat with Kwan\n❣️\n#CaratSelcaDay #CARAT #SEUNGKWAN #SEVENTEEN https://t.co/pbQQXRtoVz
## 6374                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6375                                    RT @yamarie_sjsvt: the fact that it's super junior and seventeen's 2nd time here in ph to have their concert and it will happen in the same…
## 6376                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6377                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6378                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6379                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6380                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6381                                    RT @livenationph: FOUR DAYS LEFT 'TIL SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 LIVE AT THE BIGGEST INDOOR ARENA IN THE WORLD - PHILIPP…
## 6382                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 6383                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6384                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6385                                                                                                      RT @snowkhoshi: seventeen has always been the same https://t.co/mRuHBPIohL
## 6386                                 RT @seokkiebby: ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n     "so... where are we going for our date?"\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#CaratSelcaDay…
## 6387                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6388                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6389                                   RT @fae_______: In answering a question to fans, Hoshi of Seventeen said that GDRAGON is an artist he likes!❤️ cr. @/hoshzone \n\n#GDRAGON @I…
## 6390                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6391                               RT @ayshuahong_: An equation between me and you\n\n🙇‍♀️📷\n\n#SEVENTEEN #CSD #세븐틴 #CaratSelcaDay #민규 #MINGYU @pledis_17 https://t.co/Fz3viTeXHn
## 6392                                                 RT @wonuversee: matchy with wonu 🫶🏻 \n\n#CaratSelcaDay #CSD #WONWOO #원우 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/y6wg3sw8uy
## 6393                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6394                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6395                                RT @SVT_Fancafe: [#WONWOO🌟 Weverse]\n221213 -23:14 KST-\n\n➸ Thankyou for always walking together with me, though I walk in silence.\nI'll supp…
## 6396                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6397                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 6398                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 6399                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6400                                    RT @caratdeu113_: For those who'll come tomorrow for BeTSinBulacan, please take care and please be safe!! And of course, PLEASE ENJOY THE C…
## 6401                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 6402                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 6403                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6404                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6405                              RT @hazycacarrot: your lips my lips, apocalypse~\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 @pledis_17 https://t.co/Rf1dnmKq2O
## 6406                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6407                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 6408                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6409                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6410                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 6411                                  RT @hawtmatchalatte: Let's eat with bononie ᕙ(`▽´)ᕗ\n#CaratSelcaDay #CSD\n#VERNON #버논 #SEVENTEEN\n#세븐틴 @pledis_17 https://t.co/mZPpJ85jHK
## 6412                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6413                                   RT @ihrtjaehyunn: Don’t make me choose yet😭\n#csd #CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN @pledis_17 #MINGYU #minghao https://t.co/v3jlln…
## 6414                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 6415                               RT @belongs_to_j: i’m just like you, you’re just like me~~~ 😆🌀🏃🏻‍♂️\n\n#CSD #CaratSelcaDay #DK #도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wX…
## 6416                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 6417                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6418                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 6419             RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nRECORD OF THE YEAR(Overseas)…
## 6420                              RT @gelgel_ly: You stole my heart, but i’ll let you keep it❤️\n#CaratSelcaDay #CSD #세븐틴 #SEVENTEEN #SCOUPS  #최승철  #choiseungcheol @pledis_17…
## 6421              RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nBEST DANCE PERFORMANCE(Overs…
## 6422                               RT @SVT_Fancafe: [#JOSHUA🌟 Weverse]\n221213 -23:02 KST-\n\n➸ Thankyou so much Carats ㅠㅠ I'm very happy because thanks to Carats, we received t…
## 6423                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 6424                                 RT @dinwoogf: i love you, i love you and i love you.\n\n#CaratSelcaDay #CSD #DINO #디노 #SEVENTEEN  #세븐틴  @pledis_17 https://t.co/nn2eb0Ab8D
## 6425                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6426                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6427                               RT @luvzhyuk: i kinda wanna go on a follow spree for all the groups i stan so if u stan these groups pls interact:\n\ne’last\nkara\ncsr\nkingdom…
## 6428                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 6429                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6430                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 6431                                   RT @m1n9yu_ku: Let them know about us. \n\n#CSD #CaratSelcaDay \n#THE8 #MINGHAO #명호 \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/YkYFpZIqe3
## 6432                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 6433                                                        RT @kenari_na: 👖🪣🎩🍊 | Jeans Bucket Hat with Kwan\n❣️\n#CaratSelcaDay #CARAT #SEUNGKWAN #SEVENTEEN https://t.co/pbQQXRtoVz
## 6434                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6435                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6436                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6437                                RT @SVT_Fancafe: [#SCOUPS🌟 Weverse]\n221213 -22:44 KST-\n\n➸ Thankyou Carats🤍💛\nI believe you'll be watching us from anywhere, I'll work really…
## 6438                                            RT @jeongshooa: 𝑦𝑜𝑢 𝑎𝑟𝑒 𝑚𝑦 𝑠𝑜𝑦𝑚𝑎𝑡𝑒 🥢\n\n#CaratSelcaDay #CSD #JEONGHAN  #윤정한 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/L6COEyUgpJ
## 6439                                  RT @wonubliss: 2022 Asia Artist Awards \n🏆 Hot Trend\n🏆 Fabulous\n🏆 Singer of the Year \n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/2zMWmc3gPU
## 6440                               RT @min9yu_tttop: SEVENTEEN on 2022 Asia Artist Awards 🎉 \n\n🏆 Fabulous Award \n🏆 Hot Trend Award \n🏆 Daesang — Singer of the Year\n\n@pledis_17…
## 6441                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6442                                RT @gottamarryem17: 𝑺𝒕𝒓𝒐𝒍𝒍𝒊𝒏𝒈 𝒂𝒓𝒐𝒖𝒏𝒅 𝒊𝒄𝒐𝒏𝒊𝒄 𝒑𝒍𝒂𝒄𝒆𝒔 𝒘𝒉𝒊𝒍𝒆 𝒄𝒂𝒑𝒕𝒖𝒓𝒊𝒏𝒈 𝒎𝒆𝒎𝒐𝒓𝒊𝒆𝒔\n— 𝑶𝒍𝒅 𝒃𝒖𝒕 𝒈𝒐𝒍𝒅\n\n#CSD #CaratSelcaDay\n#JOSHUA #SEVENTEEN @pledis_…
## 6443                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 6444                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 6445                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6446                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 6447                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6448                                        RT @shuahae_3_: 𝐎𝐮𝐫 𝐇𝐞𝐚𝐥𝐢𝐧𝐠, 𝐇𝐞𝐚𝐥𝐢𝐧𝐠~ 💙\nWith Mingyu \n\n#CSD #Mingyu #민규 #CaratSelcaDay #SEVENTEEN @pledis_17 https://t.co/UvyYAGjB8E
## 6449                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6450                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6451                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 6452                            RT @mgyuppy: ( 03 : 00 AM ) . \n- you're are the reason that i lie awake ;\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN #세븐틴 @pledis_17 https…
## 6453                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6454                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 6455                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 6456                                            RT @SVT_stagram: [#SEUNGKWAN 📸 Instagram Story] \n221215 pledis_boos \n\n#승관 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/d7ppd0k6gz
## 6457                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6458                                  RT @itzgfdk__: [🖤]\n\nimmeasurably beside you is the most beautiful thing i ever wanted. beyond measure in your arms is the most beautiful th…
## 6459                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6460                                                    RT @z0crt: Carat selca day with this giant baby\n\n#CSD #CaratSelcaDay #SEVENTEEN #MINGYU @pledis_17 https://t.co/LbgkZrYrwr
## 6461                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6462                                   RT @Cathleenexus: Happy sweet seventeen @Daisy_JKT48 !\nI wish you much much love on your sweet 17, you’re not so little anymore! Keep growi…
## 6463                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6464                                   RT @dekpoky: 🎞️ 𝙖𝙗𝙨𝙤𝙡𝙪𝙩𝙚𝙡𝙮 𝙨𝙢𝙞𝙩𝙩𝙚𝙣 🎞️\n"after last night, i think i'm in love with you, i can't get you out of my head"\n\n#CaratSelcaDay #CSD…
## 6465                      RT @bieberscoups: S COUPS DURING CHEERS OMFG IM NOT OKAY !!!!! \n\n#SCOUPS\n#SVT_RockTheLA3C_Festival\n#SEVENTEEN_AT_LA3C\n#세븐틴_더큰꿈을향해_LA3C http…
## 6466                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6467                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6468                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6469                             RT @brightestmo_on: Last night was fun. Thanks, Mingyu ^__^\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #세븐틴 #SECTOR17 #_WORLD @pled…
## 6470                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 6471                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6472                                   RT @17sBaddest: Friend sent this and said “THE SCOUPS ASS” lmaoooo #la3cfestival #SVT_RockTheLA3C_Festival\n#SEVENTEEN_AT_LA3C @pledis_17 ht…
## 6473                                RT @hanisyruup: Be The Sun in Bulacan Freebies ☀️\n\n↬ Strictly 1:1\n↬ follow @/theadvisordiaries on ig (optional)\n↬ Time/Loc : TBA\n↬ Say “Shi…
## 6474                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6475                                  RT @shuasmwah: @Stutiyoon , Wanna go back in that restroom and not rest?\n\n#CaratSelcaDay #CSD #stuti #whims #SEVENTEEN @pledis_17 https://t…
## 6476                                RT @1228dreams: Concert-ready :))\n\n[The shirt and ticket holder aren’t for sale. But if you’re interested, let us know!]\n\n🏷 svt seventeen b…
## 6477                             RT @yoon_maya: ✨BE THE SUN IN BULACAN x \nJOSHUA BIRTHDAY\nFAN SUPPORT ✨\n\nDetails on the photo below.\nCan't wait to meet you, Carats! See you…
## 6478                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 6479                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6480                                    RT @stthsn: gose christmas special wherein the seventeen members are separated into groups and they're having a caroling competition. the g…
## 6481                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6482                                   RT @allforcaratsvt: btw may willing ba maki trade ng tix? like mas mababang row sanaa ! two adjacent seats\n\nLBA REG ROW 30+ to LBA REG ROW…
## 6483                                                                             RT @strwbrryhui: this video when seventeen announced their debut i will cry https://t.co/J7Qj2AyZGm
## 6484                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6485                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6486                         RT @0095zi: 📣 WTS LFB PH\n\n- (1) UBB PREM 421 Be The Sun in Bulacan ticket\n- ₱5,850\n- mop: gcash &amp; unionbank\n\ndm if interested!!\nhelp rt, wi…
## 6487                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6488                                RT @shuasmwah: When we pull up, you know it's a shutdown 💋\n\n#CARATSELCADAY #CSD #JOSHUA #SEVENTEEN  #조슈아 @pledis_17 https://t.co/rgSk3oRn54
## 6489                                RT @wonhansolcart: :: ic interest check wts lfb ph bets in bul tix svt #whsitems 💭\n\nSEVENTEEN BE THE SUN ENCORE IN BULACAN TICKETS (3)\n\n• c…
## 6490                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6491                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6492                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6493                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6494                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6495                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6496                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 6497                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6498                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6499                                  RT @svtcontents: @pledis_17 🎥 SEVENTEEN winning the AAA Artist of The Year (Singer of The Year) DAESANG at the 2022 Asia Artist Awards!\n\nht…
## 6500                                                  RT @sunnieq_: Walking in La Salle…\n\n#CaratSelcaDay #CSD #JEONGHAN #준\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/d0U7pRm29A
## 6501                                                      RT @WwangelbabywW: lamon 🫦 is 😩 life ✊🏻\n\n#CaratSelcaDay #CSD #SEVENTEEN #HOSHI #호시 @pledis_17 https://t.co/reZEnCKkP0
## 6502                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6503                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6504                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6505                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 6506                                   RT @allforcaratsvt: btw may willing ba maki trade ng tix? like mas mababang row sanaa ! two adjacent seats\n\nLBA REG ROW 30+ to LBA REG ROW…
## 6507                                              RT @sounds_of_cheol: and thats the "SINGER OF THE YEAR", SEVENTEEN!!!\n\nshadow, march, hot 👏🏻🔥 @pledis_17 https://t.co/Dow2Waw56E
## 6508                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6509                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 6510                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6511                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 6512                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 6513                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6514                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6515                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6516                                                    RT @gabateez: Slip into the diamond life ೄྀ࿐ ˊˎ-\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/VGsv1Hw9z1
## 6517                                                                                              RT @min9yu_tttop: SEVENTEEN the main event!! ❤️‍🔥 @pledis_17 https://t.co/Mj37YV9zIs
## 6518                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 6519                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6520                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 6521                                  RT @dadeuthannie: seventeen at aaa - shadow, march, and hot full performance 🖤\n\nstage platforms moving, backup dancers, the amount of carat…
## 6522                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6523                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6524                                                                                 RT @wonubliss: seventeen performed shadow, march, and hot ... aaaa so excited for saturday 😭😭😭😭
## 6525                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6526                                          RT @shinvjk: we use the filter, he is 🐶 and i is 🐱\n\n#csd #VERNON #SEVENTEEN #CARAT #CaratSelcaDay @pledis_17 https://t.co/VGaJTdQut0
## 6527                                          RT @sounds_of_cheol: seventeen aaa daesangs!! 🏆👏🏻🖤\n\nalbum of the year (2019)\nsinger of the year (2021-2022) https://t.co/QwvVngwRPq
## 6528                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6529                                                                                                          RT @wonubliss: SINGER OF THE YEAR, SEVENTEEN 🏆 https://t.co/MAXdHYcHbL
## 6530                              RT @min9yu_tttop: SEVENTEEN AAA Daesang 🏆🏆🏆 \n\n2019: Album of the Year \n2021: Singer of the Year \n2022: Singer of the Year\n\ncongrats boys @p…
## 6531                                          RT @1nlovewtae: When I'm with you there is no one else ! \n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN @pledis_17 https://t.co/C0slY1jhzC
## 6532                                                    RT @nyeacjeon: "Do you wanna be forgiven?"\n\n#CARAT_SELCA_DAY #세븐틴 #SEVENTEEN #WONWOO @pledis_17 https://t.co/sgECpElVPM
## 6533                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6534                                                                                                                RT @imckyunstd: monsta x and seventeen ♡ https://t.co/J2DjHLFRkW
## 6535                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6536                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 6537                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6538                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6539                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 6540                                 RT @wonwoospimp: wts // lfb : seventeen bets bulacan \n\n(1) LOWERBOX B PREMIUM/ LBB 214 ROW 52 SEAT 285 \n₱5,500\npayment can be upon meet up…
## 6541                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6542                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6543                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6544                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6545                            RT @ExyTickets: BELOW SRP \n\nSEVENTEEN BE THE SUN BULACAN \n\nUPPER BOX B REGULAR (4)\n\n2500 ( 4 tickets available )\n\nUPPER BOX A (4)\n\nROW 66…
## 6546                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6547                                                        RT @xum8nghao_o2: [SEVENTEEN WEIBO]\n221126\n#THE8 update \n\n#SEVENTEEN #SVT_UPDATES @pledis_17 https://t.co/RNpSu1yE8x
## 6548                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6549                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6550                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6551                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6552                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6553                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6554                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6555                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6556                                 RT @haosbitch: priorities before I fly……BLURRY PICS IS OUR THING!!!!! #CSD #CaratSelcaDay #MINGHAO #徐明浩 #SEVENTEEN @pledis_17 https://t.co/…
## 6557                                     RT @AnFhuiseog: 6000 Days by Jim 'Jaz' McCann describes seventeen years of his life imprisoned in Crumlin Road Gaol and the H-Blocks (Long…
## 6558                                    RT @horangrawrhae: NOW THAT SEVENTEEN ARE BACK IN THE PHILIPPINES. LET ME REMIND YALL AGAIN. THIS JOENGHAN ROAMING AROUND JAPAN AND NOT EVE…
## 6559                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 6560                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6561                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6562                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6563                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6564                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6565                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6566                                    RT @svtcontents: 📰 SEVENTEEN is nominated under several categories at the 2022 China Year End Awards! Winners will be announced on December…
## 6567                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6568                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 6569                                RT @dadeuthannie: Congratulations SEVENTEEN for winning the AAA Daesang - Artist of the Year 🏆🏆🏆🥳🎉\n\n#세븐틴 @pledis_17 https://t.co/wZGFcNH9Xi
## 6570                                  RT @BooNon_98: remember when woozi said this in AAA 2019...\n\n"It's a big honor for us to win album of the year daesang on a self produced a…
## 6571                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6572                         RT @SVT_Fancafe: [#JEONGHAN🌟 Weverse]\n220522 -19:22 KST-\n\n➸ ㅋㅋㅋㅋ I uploaded these just for Carats to laughㅎㅎ You've worked hard today tooㅎㅎ…
## 6573                                RT @xum8nghao_o2: [SEVENTEEN INSTAGRAM]\n221128 \nsound_of_coups added to his story\n\n#SEVENTEEN #SVT_UPDATES @pledis_17 https://t.co/yCGqFQXm…
## 6574                                        RT @wonubliss: Congratulations to SEVENTEEN for winning SINGER OF THE YEAR (Daesang) at the 2022 Asia Artist Awards #세븐틴 @pledis_17 🏆
## 6575                                                                                RT @honeysvts: #VERNON_BlackEye headers I made 🖤 #VERNON #BlackEye #버논 https://t.co/99SmG29ckK
## 6576                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6577                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6578                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6579                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 6580                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6581                                    RT @sounds_of_cheol: SEVENTEEN DAESANG!!\nsvt won "Singer of the year" at AAA 2022. congrats @pledis_17 well deserved! 🏆😭❤️ https://t.co/nQZ…
## 6582                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6583                                                                               RT @CHERRYHAE17: their record hasn't been broken yet.  #SEVENTEEN #세븐틴 https://t.co/6YlP8EjxiB
## 6584                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 6585                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6586                              RT @kzells13: WTS / LFB \n\nDK ALBUM PC \nHenggarae an ode attacca hana dul set  poet \nJeonghan hoshi dino vernon\nSOGO VER 1\n\nOHAND AND READY…
## 6587                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 6588                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6589                                                                         RT @saintsaIv: GAGOOOO MY MAN JUST BOUGHT ME BE THE SUN SEVENTEEN TICKETS HAYOP https://t.co/84n5DZ0fVj
## 6590                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6591                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6592                          RT @hae_tiger15: (っ◔◡◔)っ ♥ Rage BeTS Bulacan Freebies♥\n\n- like and rwt \n- strictly 1:1\n- open for trades just dm me &lt;333 \n- limited lang hu…
## 6593                          RT @otteru_211: 세븐틴 #조슈아 #디노 \n[Article]\nSEVENTEEN Joshua, "Put (his) arms around Dino's shoulders"\nSEVENTEEN Joshua, "Dino, can you see up…
## 6594                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6595                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6596                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6597                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6598                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6599                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6600                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6601                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6602                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6603                                                      RT @WwangelbabywW: lamon 🫦 is 😩 life ✊🏻\n\n#CaratSelcaDay #CSD #SEVENTEEN #HOSHI #호시 @pledis_17 https://t.co/reZEnCKkP0
## 6604                                                                               RT @miss_svtmafia: See you tomorrow SEVENTEEN &amp; CARATs! ✨ @pledis_17 https://t.co/FsSy5P2ZN5
## 6605                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6606                               RT @fae_______: Most nominated kpop groups for China End Year Awards @/ChinaMusicData \n\n1. Blackpink-14\n2. Seventeen-13\n3. (G)-IDLE-12\n4. R…
## 6607                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6608                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6609                                                                                                               RT @wonubliss: seventeen's outfit tonight https://t.co/xksUCtkKdd
## 6610                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6611                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6612                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6613                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 6614                                RT @verseok_: vernonified.\n\nwill wear the same fit tomorrow see you guys!\n#CSD #CaratSelcaDay\n#VERNON #SEVENTEEN @pledis_17 https://t.co/Bl…
## 6615                                    RT @treasurecharts_: #TREASURE now joins NCT, Stray Kids, Seventeen, TXT, Twice and BTS as the only Korean acts that have spent 100 weeks w…
## 6616                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6617                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6618                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6619                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6620                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6621                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6622                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6623                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6624                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 6625                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6626                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6627                                                                               RT @tinkswonu: wonwoo’s photocard for seventeen 2023 season’s greetings ❤️ https://t.co/m2HTo0jfsJ
## 6628                                                 RT @dadeuthannie: Congratulations SEVENTEEN for winning the AAA Fabulous Award 🏆🎉\n\n#세븐틴 @pledis_17 https://t.co/R4aty2ojqE
## 6629                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6630                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6631                                     RT @pledis_17: [17'S 원우] DAZED KOREA Behind Photo📸\n\n@DazedKorea\n#원우 #WONWOO\n#세븐틴 #SEVENTEEN\n#DAZEDKOREA https://t.co/SO01sISTL5
## 6632                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6633                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6634                                                                                                  RT @sounds_of_cheol: seventeen - AAA fabulous award 🏆🖤 https://t.co/MTIp0SIMVt
## 6635                                                                                             RT @My17youth: SEVENTEEN at AAA 2022 \n\n#SEVENTEEN #세븐틴 https://t.co/ByP5fCF62Z
## 6636                                                      RT @wonubliss: Congratulations to SEVENTEEN for winning Fabulous Award at the 2022 Asia Artist Awards #세븐틴 @pledis_17 🏆
## 6637                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 6638                       RT @MsKwon_15: "Three friends, one heart."\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #JEONGHAN #정한 #JOSHUA #조슈 #SEVENTEEN #세븐틴 @pledis_17 https://…
## 6639                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6640                                                                                                                 RT @wonubliss: ooh seventeen’s outfit 🖤 https://t.co/F4iBh0FZY3
## 6641                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6642                                                                                        RT @TheFigen_: Thieves catch the robber! What a wonderful world! https://t.co/LPbZzY5ore
## 6643                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6644                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 6645                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 6646                          RT @feat_annaaa: wts lfb\n\nubc reg 410\n2k\nLONG DOP \ndp : 1k\nrembal : 1k (kahit until end of january na) \n\nrfs : sudden exam sked :(\n\nHELP RT…
## 6647                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6648                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6649                                                                                    RT @min9yu_tttop: SEVENTEEN with their Hot Trend Award 🏆🧡 @pledis_17 https://t.co/deXFTiU8U7
## 6650                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 6651                                  RT @hawtmatchalatte: Let's eat with bononie ᕙ(`▽´)ᕗ\n#CaratSelcaDay #CSD\n#VERNON #버논 #SEVENTEEN\n#세븐틴 @pledis_17 https://t.co/mZPpJ85jHK
## 6652                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6653                          RT @BrasilDino: [📸 SCAN]- 16.12.22- \n#DINO, #DK e #VERNON para o Season’s Greetings 2023\n\n🦀 \n#DINO #SEVENTEEN #디노 @pledis_17  #세븐틴 \nCr: 13t…
## 6654                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6655                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6656                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 6657                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 6658                                   RT @dyochans: ☀️ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ☀️\n\n— metalic frame keychains are exclusively for [ better man au ] readers!\n— sn…
## 6659                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6660                          RT @seoksooinlove: ✨Be The Sun in Bulacan freebies✨\n\nI'll be giving away glow in the dark bracelets, approx 150pcs \n\n♡ For team concert &amp; t…
## 6661                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6662                                                                                                           RT @wonubliss: Hot Trend Singer - SEVENTEEN 🏆 https://t.co/bOSv42XQn0
## 6663                                 RT @featuringchan: hello, here's my freebies for BE THE SUN in BULACAN ♥️\n\n⤑ location: tba (hanapin nyo na lang me, eme hahaha)\n⤑ 1:1\n⤑ uns…
## 6664                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6665                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6666                                    RT @mochymltyy: HELP ME RT THIS 🙏🏻\ni need to clear my album to further my studies 🥺 I’ve lowered the price a lot from RM 35, i really need…
## 6667                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 6668                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6669                          RT @SVT_Fancafe: [#DK🌟 Weverse]\n221215 -20:33 KST-\n\n➸ Who's that friend on the right?🥸\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/cCqASx7…
## 6670                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6671                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6672                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6673                             RT @cuipdz: wts lfb ph \n\n💉💒 jeonghan sakristan set\n ₱900 + pf, dop 1 week❕\n💬 all onhand \n\n☆ seventeen social club ssc al fine jun sector 17…
## 6674                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6675                                   RT @svtcontents: 🖼️ 221213 SEVENTEEN at the 2022 Asia Artist Awards Red Carpet Press Previews\n\nS.COUPS, JOSHUA, JEONGHAN https://t.co/LjaPF…
## 6676                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 6677                                RT @i4pjae: wts lfb help rt\n\nseventeen be the sun con ticket (ubb reg) — 4850 (100 for online fees)\n\nt. wts lfb ph svt seventeen be the sun…
## 6678                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6679                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6680                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 6681                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6682                                         RT @gyubasic: —i look over at you and see sunshine 🌞\n\n#CaratSelcaDay #CSD #MINGYU #민규 #SEVENTEEN @pledis_17 https://t.co/1TCxyV8FCg
## 6683                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6684                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6685                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 6686                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6687                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6688                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6689                               RT @mini_mimisiez: ✨ Seventeen carver ver (DK) unsealed album giveaway ✨\n + peace scoups pc w/ care package ^^  \n\n🌼 mechanics \n- Follow me…
## 6690                                RT @snwulove: wts lfb help rt pre order keyrings for soonwoo lovers!\n\n₱100 only for keyrings( 3 slots per keyring )\n\ncan open for other mem…
## 6691                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 6692                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6693                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6694                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6695                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6696                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6697                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 6698                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6699                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6700                                    RT @p1wonies: jongseob said he went to watch seventeen’s dokyeom’s musical, xcalibur and that it was fun! he also went to watch bap’s daehy…
## 6701                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 6702                                                                                                       RT @ankiiithecutiee: Sixteen seventeen eighteen\n\nBB16 SHOW US PRIYANKIT
## 6703                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 6704                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6705                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6706                               RT @WorldwideCarats: [VOTING]\n2022 HANTEO MUSIC AWARDS NOTICE\n\nTo CARATs,\n\nThe SVT Fanbases have decided to prioritize voting on the "GRAND…
## 6707                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6708                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6709                                   RT @usagaincarats: Updated list of seventeen cupsleeve events in the USA and Canada 💙💖 \n#usaevents #kpopevents #kpop #kpopseventeen #sevent…
## 6710                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 6711                                                                                                      RT @snowkhoshi: seventeen has always been the same https://t.co/mRuHBPIohL
## 6712                                  RT @theseoulstory: 📸 SEVENTEEN Wonwoo at ‘2022 Asia Artist Awards’ today 💛 @pledis_17 \n\n#2022AAA #2022AsiaArtistAwards https://t.co/SkqdwRa…
## 6713                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6714                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6715                                     RT @dadeuthannie: SEVENTEEN - AAA Hot Trend Award 🏆🎉🎉 lmao they’re so annoying they’re obviously trying not to laugh while hoshi gives his…
## 6716                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6717                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6718                                    RT @billboard: Watch #SEVENTEEN’s Joshua, Dino and Mingyu take on the 'Wednesday' dance challenge backstage at #LA3C! https://t.co/Es7BmTtZ…
## 6719                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6720                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 6721                           RT @KimMingyuGlobal: [INSTAGRAM]\n221213 Mingyu instagram update\n\n🐶: LA \n2022.12.10\n\nLike, comment, share\n🔗https://t.co/r0ZUhyda0Z\n\n#SEVENTE…
## 6722                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6723                                 RT @KimMingyuGlobal: [INSTAGRAM]\n221213 Mingyu instagram story update\n\n🐶: @/saythename_17 @SnoopDogg we were so happy to be able to perform…
## 6724                                    RT @envimediaco: Calling all sneakerheads! 👟👀 If you’re looking for new kicks, check out how you can steal #SEVENTEEN’s #Hoshi’s style from…
## 6725                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6726                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6727                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 6728                                                                 RT @minobeach: let it snow ❄️❄️\n\n#CSD #CaratSelcaDay #DK #DOKYEOM #SEVENTEEN @pledis_17 https://t.co/C2hqfOmlLZ
## 6729                                     RT @KimMingyuGlobal: Congrats SEVENTEEN for winning AAA Hot Trend, AAA Fabulous Award, and AAA Grand Prize Singer of The Year on 2022 Asia…
## 6730                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6731                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6732                                 RT @KimMingyuGlobal: [VIDEO] #MINGYU at 2022 Asia Artist Awards IN JAPAN\n\nWatch full:\n▶️https://t.co/AWRIchcUcq\nSeventeen fancam:\n▶️https:/…
## 6733                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6734                            RT @KimMingyuGlobal: [INFO] Mingyu has safely arrived in Korea. Rest well Mingyu~ 🐶❤\n\n©️Behind\n#SEVENTEEN #MINGYU\n#세븐틴 #민규 @pledis_17 https…
## 6735                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 6736                                 RT @KimMingyuGlobal: [PHOTO] 221214 Mingyu's arrival at Incheon Airport from Nagoya, Japan\n\n©️Ilgan Sports\nReact, recommend, share\n🔗https:/…
## 6737                                  RT @KimMingyuGlobal: [VIDEO] 221214 Mingyu at Incheon Airport\n\n©️Newsen\n#SEVENTEEN #MINGYU\n#세븐틴 #민규 @pledis_17 https://t.co/eCdWUhJPXx
## 6738                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 6739                                 RT @KimMingyuGlobal: 221214 Mingyu's arrival at Incheon Airport from Nagoya, Japan\n\n©️Dispatch\nReact, recommend, share\n🔗https://t.co/QlwrfX…
## 6740                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6741                                 RT @KimMingyuGlobal: 221214 Mingyu's arrival at Incheon Airport from Nagoya, Japan\n\n©️Dispatch\nReact, recommend, share\n🔗https://t.co/QlwrfX…
## 6742                                 RT @KimMingyuGlobal: [PHOTO] 221214 Mingyu's arrival at Incheon Airport from Nagoya, Japan\n\n©️Dispatch\nReact, recommend, share\n🔗https://t.c…
## 6743                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6744                                 RT @KimMingyuGlobal: [PHOTO] 221214 Mingyu's arrival at Incheon Airport from Nagoya, Japan\n\n©️Xports News\nReact, recommend, share\n🔗https://…
## 6745                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6746                                RT @KimMingyuGlobal: [INSTAGRAM]\n221214 Dispatch Korea update with Mingyu and Seventeen at Incheon Airport\n\nLike, Comment, Share\n🔗https://t…
## 6747                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 6748                                 RT @KimMingyuGlobal: [PHOTO] 221214 Mingyu's arrival at Incheon Airport from Nagoya, Japan\n\n©️Newsen\nReact, recommend, share\n🔗https://t.co/…
## 6749                     RT @_tappiioca: ✧ BE THE SUN IN BULACAN FREEBIES ✧\n\n• RT &amp; Like\n• Location tba\n• Open for Team Con &amp; Team Labas\n• LETS TRADE 🥺\n \nMight incl…
## 6750                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 6751                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6752                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6753                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 6754                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6755                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6756                      RT @jiminsols: 💌 seventeen be the sun bulacan freebies ☻\n\n♡ strictly 1:1 (random pack)\n♡ time &amp; loc: tba on d-day\n♡ mbf, rt &amp; like\n\nsee you…
## 6757                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6758                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6759                           RT @KimMingyuGlobal: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW #2 #MINGYU CUT\n\n#SVT2023시즌그리팅\n#세븐틴 #민규 @pledis_17 https://t.co/Pe4kwyj5Nz
## 6760                                                                                RT @sounds_of_cheol: congrats seventeen for the AAA hot trend award 🏆👏🏻🖤 https://t.co/ehEmee92Ie
## 6761                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6762                                 RT @KimMingyuGlobal: [PHOTO] 221215 MINGYU at ICN Airport departs for Manila, Philippines\n\n©️Newsen\nReact, recommend, share\n🔗https://t.co/W…
## 6763                                                 RT @wonubliss: Congratulations to SEVENTEEN for winning the Hot Trend Award at the 2022 Asia Artist Awards #세븐틴 @pledis_17 🏆
## 6764                                RT @KimMingyuGlobal: [PHOTO] 221215 MINGYU at ICN Airport departs for Manila, Philippines\n\nWoozi: "Mingyu, are you okay?\n\n©️Newsen\nReact, r…
## 6765                                           RT @gyuhuizones: Jun's SVT 2023 Season's Greetings inclusions!\n\ncr. churusvt\n\n#JUN #준 #SEVENTEEN #세븐틴 https://t.co/SHo8n2RRYJ
## 6766                                 RT @KimMingyuGlobal: 221215 MINGYU at ICN Airport departs for Manila, Philippines\n\n©️Osen\nReact, recommend, share\n3. https://t.co/mLeIeNTkM…
## 6767                                                                                    RT @dadeuthannie: congratulations seventeen!! aaa hot trend award 🎉🎉 https://t.co/ehuaclxW9i
## 6768                                 RT @KimMingyuGlobal: [PHOTO] 221215 MINGYU at ICN Airport departs for Manila, Philippines\n\n©️Osen\nReact, recommend, share\n1. https://t.co/q…
## 6769                                    RT @svtcontents: @pledis_17 [#AWARD] SEVENTEEN won the AAA Hot Trend Award (SINGER) at the 2022 Asia Artist Awards!! Congratulations, our b…
## 6770                                RT @jaysungsells: RE-POST BE THE SUN IN BULACAN FREEBIES\n\nhello, i'll be giving away freebies for be the sun in bulacan on Dec 17, 2022!\n\nl…
## 6771                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 6772                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6773                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6774                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6775                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 6776                                   RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Main Show Press Previews\n\nSEUNGKWAN, WONWOO, MINGYU https://t.co…
## 6777                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6778                                                                                                                        RT @sounds_of_cheol: seventeen 🖤 https://t.co/tilGIaSrZv
## 6779                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 6780                                 RT @KimMingyuGlobal: [PHOTO] 221215 MINGYU at ICN Airport departs for Manila, Philippines\n\n©️Newsen\nReact, recommend, share\n🔗https://t.co/Q…
## 6781                          RT @cutiepie_niiki3: ✎ . . be the sun freebies ♡\n\n🐯 strictly 1:1\nloc: tba on d-day \nrt &amp; like\n\n♡ might add some more if I have some extra f…
## 6782                                  RT @KimMingyuGlobal: [VIDEO] Seventeen MINGYU departure, a real man is not cold! "I wonder if I'm short-sleeved..."\n\nA special highlight vi…
## 6783                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6784                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6785                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6786                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6787                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6788                                                                                 RT @17svtedit: SEVENTEEN LOCKSCREEN\n\nS.Coups - Jeonghan\n\n@pledis_17 https://t.co/O7ZN06rqJV
## 6789                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 6790                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6791                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6792                                RT @HappyTixPasabuy: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN\n\nSELLING: (1) Upper Box C Reg 428\n-same price ₱1950\n-can do meetup tom / m…
## 6793                                    RT @shushucart: ☀️ BE THE SUN IN BULACAN FREEBIES ☀️\n\nHi everyone! I'll be giving a JiHan/YoonHong freebies during the con, specific time a…
## 6794                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6795                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6796                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6797                                                                                    RT @svt_espoons: 221213 AAA S.COUPS\n\n#SEVENTEEN #2022AAA #에스쿱스 https://t.co/fAe2o3IC2J
## 6798                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6799                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6800                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6801                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 6802                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6803                                                RT @MeetVernon_218: 221203 BE THE SUN ACHI \n\n#버논 #VERNON  #バーノン #최한솔 \n#세븐틴     #SEVENTEEN https://t.co/R0E2TOejus
## 6804                               RT @chsllvr_: 🌷 #BETSinBulacan\n ꒰ be the sun in bulacan freebies ꒱\n\n⤳hello, carats! i will be giving away freebies on dec 17, vv limited co…
## 6805                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6806                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6807                                                                                                        RT @astraleisa: #seventeen's  gentle masculinity https://t.co/CmeeqkHoP5
## 6808                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6809                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6810                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6811                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6812                          RT @Stunning_COUPS: 221210 LA3C HQ\n\n🥵❤️‍🔥\n\n#에스쿱스 #SCOUPS\n#승철 #최승철 \n#세븐틴 #SEVENTEEN                \n@pledis_17 https://t.co/Vg5jiHvzoe
## 6813                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6814                                                                                                       RT @ankiiithecutiee: Sixteen seventeen eighteen\n\nBB16 SHOW US PRIYANKIT
## 6815                                  RT @parkwangs: ic for seventeen bets be the sun in bulacan – freebies\n\nhi! might give some jihan, wonshua and rocket line banners on dec 17…
## 6816                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 6817                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6818                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6819                          RT @Stunning_COUPS: 221210 LA3C HQ\n\n🥵❤️‍🔥\n\n#에스쿱스 #SCOUPS\n#승철 #최승철 \n#세븐틴 #SEVENTEEN                \n@pledis_17 https://t.co/Vg5jiHvzoe
## 6820                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6821                                                                                             RT @eunoia__svt: SEVENTEEN IS 13\n\n@pledis_17 #SEVENTEEN \nhttps://t.co/l0SKnbz3Ph
## 6822                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6823                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6824                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6825                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6826                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6827                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 6828                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6829                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 6830                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6831                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6832                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6833                                  RT @cannarikki: Seventeen Be The Sun in Bulacan Giveaway🎫🎁\n🎄 1 Upper Box C Premium Ticket\n🎄 Open only for Carats w/o any BeTS in Bulacan ti…
## 6834                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6835                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 6836                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6837                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6838                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6839                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6840                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6841                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6842                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6843                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6844                          RT @13_Gems_17: 《THREAD》\n\nHere is a thread highlighting ALL the achievements &amp; accolades SEVENTEEN have earned this year in 2022 alone.\n\nFu…
## 6845                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6846                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6847                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6848                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 6849                                     RT @mochipalette: I'M GONNA FREAKING CRY WOOZI'S SO COOL FOR THIS!!!! AND ALSO DKHDKDHDKD MY BILLLIE X SEVENTEEN 🥹😭 https://t.co/pjt9mzSuL0
## 6850                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6851                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 6852                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6853                                 RT @UaenCarat0912: Hi everyone! in collaboration with @seoksoocentric , we’ll be giving away 200 sets of freebies! 🫶\n\n🐯 strictly 1:1\n🐸 loc:…
## 6854                                     RT @17dayph: SEVENTEEN\n7th Anniversary Cafe Open.\n\n📍WouldULike EWM\n\n#YourHappySmileIsMyDay\n#HappySEVENTEENDay https://t.co/fBfPWoqt8L
## 6855                          RT @jwwoozii: WOOZI'S BIRTHDAY GIVEAWAY!! \n\n🍚 1 winner of 1122 php gcash\n🍚 22 winners of 50 php gcash\n \n- like &amp; rt\n- reply w woozi or soon…
## 6856                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6857                                                    RT @gabateez: Slip into the diamond life ೄྀ࿐ ˊˎ-\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/VGsv1Hw9z1
## 6858                         RT @choochu07: 🐯Seventeen as Thomasian Graduates PC🐯\n✨Be The Sun in Bulacan Giveaway✨\n\n💗Like &amp; RT to spread\n💙1:1\n💗First few people to appro…
## 6859                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6860                                                                                         RT @emop1ssangel: The cure\n\nPornography or Seventeen seconds? https://t.co/QycwjX5p90
## 6861                                RT @_withwonwoo: WTS LFB HELP RT\nSEVENTEEN photocards selling for SET ONLY\n\n5000 pesos, payo. Meet up tomorrow sa bets bulacan\nyou may look…
## 6862                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6863                                  RT @13CaratDiamond_: I also want to add this moment, wherein Minghao became Junhui's photographer in Limbo behind the scenes. \n\n#SEVENTEEN …
## 6864                                RT @kpopBg_ontop: Spotify Weekly Top Artists Japan (December 2-8, 2022)\n\n#1 #BTS (=)\n#14 #SEVENTEEN (=)\n#25 #StrayKids (+3) *new peak*\n#50…
## 6865                       RT @13CaratDiamond_: In Limbo behind the scenes, Junhui and Minghao took a selca in front of the mirror.\n\n#SEVENTEEN #세븐틴 #セブチ\n#JUN #文俊辉 #준…
## 6866                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6867                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 6868                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6869                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 6870                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 6871                              RT @rockwithmingyu: seventeen bets mnl confetti &amp; random merch GA PH!✨️\n\nget a chance to win svt albums, photocards and unofficial merch! +…
## 6872                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand b…
## 6873                                RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 6874                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6875                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 6876                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 6877                                  RT @eoia_min: ✧ SEVENTEEN BETS IN BULACAN FREEBIES ✧\n\nHi carats! I'll giveaway official photocards and other unofficial photos of seventeen…
## 6878                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6879                                  RT @dadeuthannie: seventeen at aaa - shadow, march, and hot full performance 🖤\n\nstage platforms moving, backup dancers, the amount of carat…
## 6880                       RT @MsKwon_15: "Three friends, one heart."\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #JEONGHAN #정한 #JOSHUA #조슈 #SEVENTEEN #세븐틴 @pledis_17 https://…
## 6881                                 RT @featuringchan: hello, here's my freebies for BE THE SUN in BULACAN ♥️\n\n⤑ location: tba (hanapin nyo na lang me, eme hahaha)\n⤑ 1:1\n⤑ uns…
## 6882                                  RT @1woo17: CONGRATS SEVENTEEN FOR WINNING THE SINGER OF THE YEAR (DAESANG) AT 2022 AAA 🥳🏆🏆🏆\nFOR 2 YEARS IN A ROW!! \nDESERVE 😭 @pledis_17 h…
## 6883                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6884                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6885                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 6886                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6887                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 6888                                 RT @HHGives: CHOEAEDOL Giveaway poll 🍲\n\n🗳 300 hearts\n\n▪︎ follow @HHGives with 🔔\n▪︎ Like, rt my pin tweet\n▪︎ Like and rt this\n▪︎ 200 drop pr…
## 6889                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 6890                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 6891                            RT @taeramisoo: BE THE SUN ; BULACAN\nSEVENTEEN FANSUPPORT ˗ˋˏ ♡ ˎˊ˗\n\nCONCERT FREEBIES by: taeramisoo\n\n2 random pc\nmoon junhui banner !!!\n\n#…
## 6892                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6893                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6894                            RT @_jinwifeu_: ఇ BE THE SUN in BULACAN freebies ఇ\n\nHi guys! I will be giving away keychains/keyholder on bets bulacan d-day! \n\n⇢ rt &amp; like…
## 6895                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6896                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 6897                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 6898                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6899                            RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 6900                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6901                                RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 6902                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 6903                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6904                                RT @hanisyruup: Be The Sun in Bulacan Freebies ☀️\n\n↬ Strictly 1:1\n↬ follow @/theadvisordiaries on ig (optional)\n↬ Time/Loc : TBA\n↬ Say “Shi…
## 6905                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6906                                                RT @_HONEYHEAVENLY: 181104 IDEAL CUT THE FINAL SCENE \n#정한 #JEONGHAN #세븐틴 #SEVENTEEN @pledis_17 🐰🐰💕 https://t.co/Gcn2s63P3O
## 6907                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 6908                               RT @leechancha: 🍚 Woozi Birthday Giveaway 🎂 🎉\n\n▪︎like &amp; rt \n▪︎Vote for Seventeen on MAMA\n▪︎Stream 'HOT' MV\n▪︎drop the tags and proof of vot…
## 6909                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6910                                RT @verseok_: vernonified.\n\nwill wear the same fit tomorrow see you guys!\n#CSD #CaratSelcaDay\n#VERNON #SEVENTEEN @pledis_17 https://t.co/Bl…
## 6911                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6912                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6913                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6914                             RT @jjwihauls: ☁️. Be The Sun Bulacan Freebies\n\n — rt &amp; like this tweet to spread !\n —  will prio attendees due to limited quantities \n — o…
## 6915                                              RT @bjyoungfiles: yep, just the two of us\n\n#CSD #CaratSelcaDay #HOSHI #호시 #SEVENTEEN #CARAT @pledis_17 https://t.co/XDhnHUdHNH
## 6916                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 6917                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6918                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6919                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6920                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 6921                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6922                              RT @rayofsunkyeom: If you leave me,\nMy tears turn into rain and fall down,\nAnd the four seasons will never stop.\n\n𝙄𝙛 𝙮𝙤𝙪 𝙡𝙚𝙖𝙫𝙚 𝙢𝙚.\n\n#CSD #C…
## 6923                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 6924                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 6925                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6926                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6927                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6928                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6929                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 6930                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6931                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6932                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6933                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 6934                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6935                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 6936                                   RT @katcheeeeng: Hi filo carats ❤️ \nWe will be giving away freebies on BETS BULACAN this Dec 12. So find me and my besties on dday ❤️\n\n🥰 he…
## 6937                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 6938                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 6939                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6940                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6941                                                    RT @gabateez: Slip into the diamond life ೄྀ࿐ ˊˎ-\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/VGsv1Hw9z1
## 6942                                   RT @CoupsOfMinWon: ☀️ Be The Sun in Bulacan ☀️\n                                  Freebies\n\nCarats!! We will be giving away freebies on d-da…
## 6943                                RT @yupsheskitten: ‼️ GIVEAWAY ‼️\n— @wonwooshop_ph is giving away: \n\n• 1 SEALED SEVENTEEN ALBUM\n• 1 RANDOM SEASON'S GREETINGS \n\nmechanics o…
## 6944                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 6945                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6946                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 6947                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 6948                      RT @cheolitoswifeyy: ✨ALBUM &amp; CASH GIVEAWAY✨\n#HANNIEbiGAy\n\nPrizes:\n3 - SVT Dream Sealed Album\n2 - 500 GCash\n1 - OT13 Fanmade Photocards\n\nEn…
## 6949                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6950                                 RT @redthreadsells: [ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ]\n\n*♡FAN SUPPORT FOR S.COUPS♡*\n\nhello carats! i'll be giving away these fan…
## 6951                                   RT @wxffly: rival in public, lover in private 😎\n\n#CSD #CaratSelcaDay #SEVENTEEN #SEUNGKWAN #세븐틴 #승관 @pledis_17 https://t.co/1CBV24V9Hl
## 6952                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6953                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6954                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 6955                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 6956                                                                   RT @SvtShazam: #DREAM has surpassed 17,000 Shazams\n\n#세븐틴 #SEVENTEEN @pledis_17jp https://t.co/SODPsrQvAm
## 6957                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6958                         RT @HorangiKrong: 🌞 BeTS Bulacan - FREEBIES 🌞\n\nDate: 17th Dec. 2022\nTime &amp; Location: tba\n\n1:1 ratio (not a Set)\n\nFirst 13 Carats to spot me…
## 6959                                 RT @HHGives: CHOEAEDOL Giveaway poll 🍲\n\n🗳 300 hearts\n\n▪︎ follow @HHGives with 🔔\n▪︎ Like, rt my pin tweet\n▪︎ Like and rt this\n▪︎ 200 drop pr…
## 6960                          RT @eilymee_: « 𝐚𝐥𝐥 𝐨𝐟 𝐦𝐞 𝐜𝐡𝐚𝐧𝐠𝐞𝐝 𝐥𝐢𝐤𝐞 𝐦𝐢𝐝𝐧𝐢𝐠𝐡𝐭 𝐫𝐚𝐢𝐧 »\n    ❛ ⌗ ꒷꒦    ꒦꒷   ꒷꒦\n\n#Hoshi #SEVENTEEN \n#CaratSelcaDay #carat https://t.co/RdnxuoG…
## 6961                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 6962                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 6963                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 6964                     RT @moon_junels: already obsessed with him whining &amp; pouting ever since but this is too much for me too handle.😙✌🏻\n\n#에스쿱스 #SCOUPS\n#승철 #최승철…
## 6965                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6966                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6967                                RT @hanisyruup: Be The Sun in Bulacan Freebies ☀️\n\n↬ Strictly 1:1\n↬ follow @/theadvisordiaries on ig (optional)\n↬ Time/Loc : TBA\n↬ Say “Shi…
## 6968                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6969                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6970                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 6971                                      RT @NEVERVMlND: just two besties looking at each others 🍓💌\n#CaratSelcaDay #CSD #DK #seokmin #seventeen @pledis_17 https://t.co/NbmKXvlMZd
## 6972                              RT @r4in3_twt: ☀️ BE THE SUN IN BULACAN ☀️\n\n• baon GA\n• 2 winners of P500 GCASH each\n• for team concert &amp; team labas only\n• before sending…
## 6973                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 6974                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6975                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6976                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 6977                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6978                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 6979                         RT @pledis_17: SEVENTEEN Special Album '; [Semicolon]' Official Photo #SEUNGKWAN\n\n#SEVENTEEN #세븐틴\n#Semicolon #세미콜론\n#201019_6pm https://t.co…
## 6980                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6981                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6982                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6983                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 6984                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 6985                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 6986                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 6987                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6988                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6989                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 6990                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 6991                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 6992                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 6993                               RT @kpopBg_ontop: Kpop Boy Groups Ranking in Youtube Music South Korea Top Artists Chart\n(15th December 2022)\n\n#6 #BTS\n#12 #Jungkook \n#27 #…
## 6994                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6995                                    RT @mingyoshis: ‼️ BE THE SUN FREEBIES ‼️\n\nHi Carats! @euumii_17 and I will give out limited OT13 and Woozi banners; will include some offi…
## 6996                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 6997                                     RT @pebblebrrain: Dadbur au where Wilbur raises his little brother from a young age. Tommy’s too young to understand, and grows up calling…
## 6998                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 6999                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7000                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7001                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7002                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7003                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7004                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7005                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7006                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7007                                                                                                        RT @CarinCamen: Hidden Treasures - Day Seventeen https://t.co/Z8DmRIW5TS
## 7008                                     RT @mochipalette: I'M GONNA FREAKING CRY WOOZI'S SO COOL FOR THIS!!!! AND ALSO DKHDKDHDKD MY BILLLIE X SEVENTEEN 🥹😭 https://t.co/pjt9mzSuL0
## 7009                                RT @cherryshgyu: ✨Be The Sun in Bulacan freebies✨\n\nHello! I will be having freebies for betsbul on December 17. 🥰 Simply rt and like this t…
## 7010                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 7011                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7012                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7013                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7014                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 7015                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7016                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7017                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7018                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7019                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 7020                                                                        RT @ohmyjunnie: me: 😐\nhim: ☺️\n\n#CaratSelcaDay #CSD #THE8 #SEVENTEEN @pledis_17 https://t.co/tHX9w3jQFS
## 7021                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7022                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7023                                 RT @yoonelica: 🎉#BETSinBULACAN FREEBIES🎉\n\n2 weeks left CARATS! \ntogether w/ @azelyoon, @wonwonssii, and @mochiihoshi15, we’re giving away s…
## 7024                                                          RT @mingyuk: styling’s hair\n\n#CaratSelcaDay #CSD #SEVENTEEN #세븐틴 #mingyu #민규 @pledis_17 https://t.co/WoMUkfSBOT
## 7025                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 7026                                    RT @p1wonies: jongseob said he went to watch seventeen’s dokyeom’s musical, xcalibur and that it was fun! he also went to watch bap’s daehy…
## 7027                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7028                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 7029                                 RT @minwonshuji: BIRTHDAY GIVEAWAY!!\nbirthday ko na 3 weeks na lang so i decided na mag pagiveaway! gusto ko lang mag share 😹🤍\n\none (1) win…
## 7030                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 7031                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7032                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7033                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7034                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7035                                    RT @ccllrr17: #BeTheSuninBulacan #BeTSBulacan #BeTSinBulacan #Seventeen FREEBIES! Hi Carats! May mga 300 freebies kami na ipapamigay sa dda…
## 7036                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 7037                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 7038                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7039                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7040                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 7041                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7042                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7043                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7044                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7045                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7046                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7047                               RT @kpopBg_ontop: Kpop Boy Groups Ranking in Youtube Music South Korea Top Artists Chart\n(15th December 2022)\n\n#6 #BTS\n#12 #Jungkook \n#27 #…
## 7048                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7049                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7050                             RT @SparklingMiii: WTS LFB PH \nSEVENTEEN BE THE SUN IN BULACAN \nLBB REG 217 (2 seats) \n\ndiscounted at 10,000 php ea\nmeetup (still nego)\n\nca…
## 7051                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 7052                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7053                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7054                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7055                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7056                        RT @jww_jiung: bets bulacan freebies/give away!!\n\n(minwon+cheol unofficial pcs)\n\n~ rt &amp; like \n~ open to all carats \n~ location: TBA \n\nsee u…
## 7057                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7058                                     RT @mochipalette: I'M GONNA FREAKING CRY WOOZI'S SO COOL FOR THIS!!!! AND ALSO DKHDKDHDKD MY BILLLIE X SEVENTEEN 🥹😭 https://t.co/pjt9mzSuL0
## 7059                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7060                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7061                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 7062                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7063                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7064                                RT @Oniwanbashu: “Hey Oni how did you get good and drawing people”\n\nOh boy. Oho boy. Ohohohoh /oh boy/.\n\nReal talk, this bitch couldn’t dra…
## 7065                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7066                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7067                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7068                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7069                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 7070                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7071                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7072                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7073                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7074                                 RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 7075                                                                                                RT @sounds_of_cheol: coups for seventeen vivi magazine 🤍 https://t.co/0uXeSzpEwg
## 7076             RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nRECORD OF THE YEAR(Overseas)…
## 7077                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7078                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7079                                                                         RT @j1gyus: your fave tigers🐯\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/4jlJJ1KvyG
## 7080                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7081                                 RT @koreansales_twt: Best-selling K-Acts on Oricon in 2022 (Final)\n\n01. #SEVENTEEN — 1,725,494\n02. #ENHYPEN — 1,007,202\n03. #BTS — 922,497…
## 7082                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7083                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7084                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 7085                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 7086                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7087              RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nBEST DANCE PERFORMANCE(Overs…
## 7088                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7089                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7090                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7091                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7092                                   RT @shanediamond17: HRT WTS LFB BETS Japan TC and Japan Home TC Pulls! Thank you @minwonhoshi ! #EKFeedbacks \nOpen for sale and trade. DM F…
## 7093                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7094                                                      RT @Chewlastic: You Made My Dawn ✨️🖤🎆\n\n#CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/Nu4uEk1ytD
## 7095                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7096                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7097                                                         RT @pledis_17: [17'S JUN] Photo by @allurekorea📸\n\n#JUN #준 \n#SEVENTEEN #세븐틴\n#allurekorea https://t.co/8r40oQCYyq
## 7098                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7099                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7100                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7101                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7102                                    RT @minwonjeu: Starting from tomorrow until Dec 23 (7 days of Seventeen) they will publish various contents of svt on vivi sns. 🤭🤭🤭🤭🤭🤭🤭 OKA…
## 7103                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7104                       RT @forwonwooth: ꒰ SVT Update ꒱ 15.12.22\n\nSEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2 - #WONWOO\n\n#WONWOO #원우\n#SEVENTEEN #세븐틴\n#SVT2023…
## 7105                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7106                         RT @baekhyunmim: not new to #kpoptwt ~ \n\n gabi \neight-teen &lt;3\ninfp - she/they ⁑ \n\nults - svt, txt, bts, nct, exo, superm + shinee\n\nult bias…
## 7107                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7108                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7109                                                    RT @gabateez: Slip into the diamond life ೄྀ࿐ ˊˎ-\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/VGsv1Hw9z1
## 7110                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7111                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7112                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 7113                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7114                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 7115                         RT @bbkyeoms: the model          &amp;       the photographer\n\n[#CSD #CaratSelcaDay #DOKYEOM #DK #도겸 #SEVENTEEN #세븐틴  @pledis_17 ] https://t.co…
## 7116                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7117                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7118                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7119                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 7120                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7121                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7122                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 7123                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7124                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7125                                                                                                   RT @spicykmg: I still can't believe that I'm seeing SEVENTEEN live tomorrow 😭
## 7126                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7127                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7128                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7129                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7130                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7131                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7132                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7133                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 7134                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 7135                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7136                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7137                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7138                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7139                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 7140                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 7141                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7142                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7143                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7144                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7145                       RT @forwonwooth: ꒰ SVT Update ꒱ 15.12.22\n\nSEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2 - #WONWOO\n\n#WONWOO #원우\n#SEVENTEEN #세븐틴\n#SVT2023…
## 7146                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 7147                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7148                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7149                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7150                                                             RT @12solamifasol: just saw this park jihoon dancing to hot seventeen during AAA? YESSSSS 🥹 https://t.co/55kAdvUcKl
## 7151                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 7152                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7153                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7154                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7155                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7156                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7157                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7158                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7159                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 7160                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7161                             RT @Adoring_SVT: [PIC/HQ] 171231 - 180101 #SEVENTEEN at MBC Gayo Daejejeon - Jeonghan\n#세븐틴 #정한 \n[© Rabbit in Daybreak, Purple Snow] https:/…
## 7162                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 7163                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7164                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7165                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7166                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7167                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7168                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 7169                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7170                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7171                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7172                                                                             RT @_biscuitrainbow: Under the mask 😷 \n#MINGYU #SEVENTEEN #seventeenfanart https://t.co/OWR2fceO6H
## 7173                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7174                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7175                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7176                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7177                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7178                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 7179                                   RT @dailygyushua: [#NEWS]\n221216 SEVENTEEN is nominated for 13 categories in the 2022 #ChinaYearEnd Awards. Winner will be announced on Dec…
## 7180                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7181                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7182                                                            RT @adoreffects: 💖 Seventeen songs wallpaper(?) 💙\n\n—RT/like if you save it! \n\n@pledis_17 https://t.co/nHUTLdJpUN
## 7183                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7184                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7185                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7186                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7187                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7188                                    RT @hannieglazed: some of us may found seventeen late,we may have not been there since the start but we found them the exact time when we r…
## 7189                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7190                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7191                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7192                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7193                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7194                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7195                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7196                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7197                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7198                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7199                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 7200                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7201                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7202                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7203                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7204                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7205                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7206                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7207                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7208                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7209                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7210                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 7211                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7212                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7213                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 7214                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7215                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7216                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7217                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7218                                    RT @mecimapro: [UPDATE] SEVENTEEN #BETHESUNinJKT (Additional Show) - Showtime will be at 7PM WIB (19:00 WIB). Event timetable will be updat…
## 7219                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7220                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7221                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7222                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7223                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 7224                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7225                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7226                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7227                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7228                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7229                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7230                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7231                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7232                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7233                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7234                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7235                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7236                                                                   RT @SvtShazam: #DREAM has surpassed 17,000 Shazams\n\n#세븐틴 #SEVENTEEN @pledis_17jp https://t.co/SODPsrQvAm
## 7237                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7238                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7239                             RT @zoesthriftshop: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nWe'll be giving out OFFICIAL PHOTOCARDS, TICKET ENVELOPE &amp; AND MANY MORE tomorrow!…
## 7240                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7241                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 7242                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7243                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7244                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 7245                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7246                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7247                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7248                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7249                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 7250                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7251                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7252                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7253                                       RT @philconcerts: SEVENTEEN has arrived safely in Manila. Let's make history tomorrow at the world's largest indoor arena. #BeTSinBULACAN
## 7254                            RT @taehyuncore: kissy from minghao &amp; i ( ˘ ³˘) ♡ \n#CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #THE8 #csd #CARAT #세븐틴 https://t.co/IZgU9nryRB
## 7255                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7256                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7257                                     RT @dadeuthannie: seventeen backup dancers are going to manila too!! 👀 expect something like be the sun seoul/japan https://t.co/WjJdD3CEVm
## 7258                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7259                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7260                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7261                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7262                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7263                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7264                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7265                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7266                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7267                                RT @Oniwanbashu: “Hey Oni how did you get good and drawing people”\n\nOh boy. Oho boy. Ohohohoh /oh boy/.\n\nReal talk, this bitch couldn’t dra…
## 7268                                                                                               RT @tinkswonu: #원우 wonwoo for seventeen ViVi magazine 💗 https://t.co/oHRCCfKlrG
## 7269                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7270                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 7271                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7272                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7273                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7274                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7275                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7276                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7277                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7278                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7279                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7280                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7281                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7282                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7283                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7284                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7285                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 7286                            RT @seokmin_br: [📸] 16.12.22. #DK, #DINO e #VERNON para o Seventeen Season's Greetings 2023.\n\n© 13thistory\n\n#도겸 #세븐틴 #SEVENTEEN @pledis_17…
## 7287                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7288                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 7289                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7290                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7291                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7292                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7293                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7294                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7295                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7296                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7297                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7298                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7299                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7300                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7301                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7302                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7303                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7304                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7305                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7306                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7307                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7308                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7309                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7310                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7311                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7312                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7313                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7314                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7315                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7316                                  RT @sweetiejaehyun: ‼️ WANT TO SELL ‼️\n\naab nct dream nct 127 wayv aespa newjeans izone weeekly seventeen itzy rocket punch tbz stayc\n\ndom:…
## 7317                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17\n \n(1) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7318                                   RT @wxffly: rival in public, lover in private 😎\n\n#CSD #CaratSelcaDay #SEVENTEEN #SEUNGKWAN #세븐틴 #승관 @pledis_17 https://t.co/1CBV24V9Hl
## 7319                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7320                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7321                        RT @HiragiJujika: Seventeen BeTS Bulacan Freebies \n\n💎 open for all carats (team labas &amp; team con)\n💎 pls RT &amp; 💗 to spread\n💎 pls fall in line…
## 7322                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7323                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7324                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7325                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7326                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7327                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 7328                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 7329                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 7330                     RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 7331                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7332                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7333                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 7334                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7335                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 7336                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7337                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7338                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7339                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7340                               RT @kpopBg_ontop: Kpop Boy Groups Ranking in Youtube Music South Korea Top Artists Chart\n(15th December 2022)\n\n#6 #BTS\n#12 #Jungkook \n#27 #…
## 7341                          RT @CESdawna: 📢 (WTS/LFB) #BeTheSuninBULACAN \nLIGHTSTICK POUCH BATCH 2\n\nSelling it for 250PHP\n\nIncludes: \n✅keychain\n✅Pouch\n\n13 SLOTS LEFT!…
## 7342                                    RT @breakerenids: ⋆。˚ ❀ begging for you to take my hand wreck my plans, that's my man ˚ ༘♡ ⋆。˚ ꕥ \n#CSD #CARAT_SELCA_DAY #SEVENTEEN #JEONGHA…
## 7343                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7344                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7345                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7346                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7347                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7348                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7349                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7350                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 7351                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 7352                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 7353                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 7354                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7355                                     RT @jishoocho: 🖇·˚ ༘ ┊͙[Love you to the moon and to Saturn.] !  ˊˎ\n#CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 https://t.co/2am2T8E2IJ
## 7356                                    RT @wonblvd: it’s truly tragic how ash is less than six months old and seventeen have already locked it in the safe of songs that will neve…
## 7357                                 RT @won_inamiIIion: @jeonghooniie WTS LFB LBB REGULAR 205 BETS IN BULACAN\n\n- we will be your new friends \n- discounted, 9k nalang negotiabl…
## 7358                         RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 7359                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7360                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7361                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 7362                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7363                                                                               RT @shuarandom: what a handsome villain\n\n#JOSHUA #조슈아 #SEVENTEEN\n\n https://t.co/RuIzq1by1c
## 7364                            RT @taehyuncore: kissy from minghao &amp; i ( ˘ ³˘) ♡ \n#CaratSelcaDay #CARAT_SELCA_DAY #SEVENTEEN #THE8 #csd #CARAT #세븐틴 https://t.co/IZgU9nryRB
## 7365                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7366                               RT @pledischarts: #SEVENTEEN 4th Album ‘Face the Sun’ has now surpassed 3,000,000 (3 Million) copies sold on Circle (GAON). 🎉\n\n#세븐틴 @pledis…
## 7367                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7368                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7369                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7370                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 7371                                                     RT @LucieTaeYG: 𝓨𝓸𝓾'𝓻𝓮 𝓽𝓱𝓮 𝓸𝓷𝓮 𝓽𝓱𝓪𝓽 𝓘 𝔀𝓪𝓷𝓽...\n\n#CaratSelcaDay #CSD #SEVENTEEN #DOKYEOM @pledis_17 https://t.co/Y0x3uKu7Uy
## 7372                                    RT @WORLDMUSICAWARD: 🔝🔟ALBUMS JAPAN🇯🇵\n1⃣First Howling:ME #andTEAM\n2⃣JAPAN 1ST EP DREAM #SEVENTEEN\n3⃣Power Of Wish #EXILE\n4⃣'Indigo' #RM\n5⃣S…
## 7373                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7374                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7375                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7376                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7377                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 7378                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7379                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 7380                                                                                              RT @svthugsl: SEVENTEEN IN PHH TODAY ! happy fun everyone thats going stay safe !!
## 7381                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7382                                RT @auxinseventeen: You are my summer breeze, my winter sun. 🔆❄\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #SEVENTEEN @pledis_17 https://t.co/dLMakm…
## 7383                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7384                              RT @snwuchibuys: 🎀◠ wts lfb svt mingyu pc\n\n╰ ₱300, ₱280 if payo\n╰ rush selling ; onhand\n╰ prio payo \n╰ rcbyt\nhelping my friend! can do meet…
## 7385                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7386                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7387                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7388                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 7389                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7390                                     RT @Scoupscherry7: OKAY NVM found an old selfie, IVE BEEN taking selfies like coups way before I even know coups, we’re literal soulmates.…
## 7391                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7392                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7393                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7394                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7395                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7396                                       RT @dokyeomfiles: Mood: super in need of SG 2023 dokyeom inclusions… 🤩\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/OtagLSYyDD
## 7397                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7398                                  RT @dokyeomsfool: Just between us, you are always the lead role to me. 🌹🩵\n\n#csd #CaratSelcaDay #17caratselcaday #dokyeom #dk #seventeen @pl…
## 7399                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7400                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7401                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7402                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7403                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7404                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7405                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7406                             RT @dokyeomfiles: 221216- The purest White Christmas with Dokyeom! 🎄☃️ | dk_is_dokyeom\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/Radu…
## 7407                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7408                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7409                                    RT @yamarie_sjsvt: the fact that it's super junior and seventeen's 2nd time here in ph to have their concert and it will happen in the same…
## 7410                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7411                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7412                              RT @CharmSupportLab: Be the Sun in Bulacan freebies\n\nHi! We’re giving away lots of cute fanmade stuff today! In rose quartz &amp; serenity blue…
## 7413                                                                                            RT @hoshzone: seventeen tiktok update with hoshi and wonwoo! https://t.co/MT8D7lZFgW
## 7414                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7415                                    RT @pledis_17: [17'S] SEVENTEEN was recognized for ‘Building K-ulture Bridges’ at LA3C Creativity and Culture Awards! 🏆 Thank you our CARAT…
## 7416                                     RT @mochipalette: I'M GONNA FREAKING CRY WOOZI'S SO COOL FOR THIS!!!! AND ALSO DKHDKDHDKD MY BILLLIE X SEVENTEEN 🥹😭 https://t.co/pjt9mzSuL0
## 7417                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 7418                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7419                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7420                                  RT @_deardarlings: Be The Sun in Bulacan Project ☀️\nby #DearDarlings, \n\nCARATs should stay hydrated for the whole day on December 17, 2022!…
## 7421                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7422                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7423                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7424                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7425                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7426                                    RT @yamarie_sjsvt: the fact that it's super junior and seventeen's 2nd time here in ph to have their concert and it will happen in the same…
## 7427                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7428                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7429                              RT @shannabonbon: &lt;&lt; 𝚗𝚘 𝚠𝚘𝚛𝚍𝚜 𝚊𝚛𝚎 𝚎𝚗𝚘𝚞𝚐𝚑 𝚏𝚘𝚛 𝚢𝚘𝚞 ♡ &gt;&gt;\n\n{ #CSD #CaratSelcaDay #JOSHUA #SEVENTEEN @pledis_17 } https://t.co/B3KC2OJvma
## 7430                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7431                               RT @Yang_Broke: Done packing the freebies\nJust want to show u guys the inclusions.\n3 set of freebies on the pics\nSee u carat later 🌻\n\n#BeTS…
## 7432                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7433                             RT @oceanzii: That someday it would lead me back to you.\n\n#CaratSelcaDay #CSD #DK #DOKYEOM #SEOKMIN #도겸 @pledis_17 #세븐틴 #SEVENTEEN https://…
## 7434                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7435                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7436                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7437                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7438                                 RT @Sugarbllxsom_: 🌟GIVEAWAY TICKET SEVENTEEN BE THE SUN BETS JKT JAKARTA ADDITIONAL SHOW🌟\n\n💙Blue F section for 1 winner💙\n- CARAT\n- Follow…
## 7439                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7440                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7441                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7442                              RT @SvtShazam: Shazam Daily Top 10 (2022.12.16)\n\n1. Cheers — 598\n2. HOT — 510\n3. Very Nice — 448\n4. _WORLD — 316\n5. Darl+ing — 275\n6. Fear…
## 7443                               RT @choerryscupcake: — day eleven !! looking for #moots on #kpoptwt and #stantwt i’m lei, 02’ &lt;3\n\n★ i stan loona, twice, txt, stayc, sevent…
## 7444                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 7445                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7446                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 7447                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7448                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 7449                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7450                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7451                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7452                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7453                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7454                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7455                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7456                               RT @Genius_kor: #GeniusCharts | 2022 Year-End Genius Korea Chart | Top Male Groups\n1. Stray Kids\n2. BTS\n3. ENHYPEN\n4. TOMORROW X TOGETHER\n5…
## 7457                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7458                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 7459                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7460                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7461                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7462                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7463                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7464                                 RT @cloudygureumi: 🌻SEVENTEEN BE THE SUN IN JAKARTA - ADDSHOW🌻\nminwon ver. freebies by @cloudygureumi x @leemayrah\n\n🗓️Dec 28th, 2022\n📌GBK M…
## 7465                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7466                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7467                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7468                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7469                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7470                  RT @svt_verse: [#디노 🌟 221216] 2:30 PM KST\n\n#DINO: I really like these kind of thingsㅋㅋㅋㅋㅋ \n\n[DK’s story: ‘Joker’ movie poster ㅋㅋㅋㅋㅋ]\n\n@pled…
## 7471                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7472                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7473                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7474                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7475                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7476                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7477                                          RT @nbdtaylor: yes. kim mingyu i have a crush on you 🤭🤭🤭🫣🤭🤭🤭 #SEVENTEEN #seventeenintoronto #BETHESUNinTORONTO https://t.co/1GRAzTcoZp
## 7478                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 7479                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 7480                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7481                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 7482                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 7483                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7484                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7485                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7486                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7487                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 7488                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 7489                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7490                                   RT @minwonshuji: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7491                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7492                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 7493                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7494                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7495                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 7496                                                                                                       RT @orphannslayer: seventeen was such a sweet age, my fav year so far tbh
## 7497                                 RT @haosbitch: priorities before I fly……BLURRY PICS IS OUR THING!!!!! #CSD #CaratSelcaDay #MINGHAO #徐明浩 #SEVENTEEN @pledis_17 https://t.co/…
## 7498                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7499                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7500                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 7501                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7502                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7503                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7504                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7505                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7506                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7507                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7508                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7509                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7510                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7511                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 7512                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7513                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 7514                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7515                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7516                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7517                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7518                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7519                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7520                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7521                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7522                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7523                                                                                                              RT @carmycarmyesq: #Seventeen right here!! https://t.co/C0e8N1tkMx
## 7524                                RT @binnie_nonna: #BinnieBigay 🐶 for BeTS in Bulacan \n\nhi #TeamLabas carats, we’ll be giving away one (1) LBA ticket for #BeTSinBulacan \n\nH…
## 7525                                RT @kpopBg_ontop: Spotify Weekly Top Artists Japan (December 2-8, 2022)\n\n#1 #BTS (=)\n#14 #SEVENTEEN (=)\n#25 #StrayKids (+3) *new peak*\n#50…
## 7526                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7527                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 7528                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7529                                RT @bbkpopstan: ✨#BeTheSuninBULACAN freebies✨\n\nfew weeks left until BeTS in Bulacan! here's a preview of the freebies I'll be giving out on…
## 7530                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7531                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7532                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 7533                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7534                               RT @haothinks: minghao inclusions for sg 2023 🌌\n\n#SEVENTEEN #세븐틴 #THE8 #디에잇 #서명호 #徐明浩 #ディエイト #ミンハオ https://t.co/GSwKznCjZJ
## 7535                                     RT @wonhaozones: Minghao from the 2023 Season's Greetings!\n\ncr. THEtothe8ight\n\n#THE8 #디에잇 #SEVENTEEN #세븐틴 https://t.co/35pJa8xEHP
## 7536                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7537                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7538                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7539                                     RT @pledis_17: [17'S 원우] DAZED KOREA Behind Photo📸\n\n@DazedKorea\n#원우 #WONWOO\n#세븐틴 #SEVENTEEN\n#DAZEDKOREA https://t.co/SO01sISTL5
## 7540                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7541                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7542                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7543                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 7544                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7545                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7546                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7547                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 7548                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7549                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7550                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7551                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7552                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 7553                               RT @0096karteu: As promised 🥹\nFrom 50pcs to 132pcs freebies\n\nSee you later, Carats!!\n\n#BeTSinBULACAN #BeTheSuninBULACAN #SEVENTEEN https://…
## 7554                                                              RT @jhluversvt: our car ride selfies ☀️ #CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN @pledis_17 https://t.co/jWaKul2SOB
## 7555                                  RT @vachirawyxt: sunsets are prettier whenever i’m with you。。。\n\n#CSD #CaratSelcaDay #DK #DOKYEOM #SEVENTEEN @pledis_17 https://t.co/Dg4CSgl…
## 7556                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7557                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7558                                     RT @UaenCarat0912: just finished packing all my freebies 🫶 dont expect too much guys! hahaha it’s my little way of saying I love seventeen…
## 7559                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7560                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7561                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7562                             RT @k_sellingvote: 2022 SMA VOTING (MAIN CATEGORY) \n\n💌 1000 hearts (10 votes)\n\n• 300 rt\n• 300 like\n •follow @k_sellingvote \n(must reach 300…
## 7563                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7564                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 7565                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7566             RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nRECORD OF THE YEAR(Overseas)…
## 7567                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7568                             RT @binnie_nonna: 🤍 BetS in Bulacan Freebies 🤍\n\nhi carats ☺️ we’ll be giving away freebies on d-day!\n\nto claim:\n💫 like and rt \n💫 mbf\n\nsee y…
## 7569                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7570                                 RT @HopeKhunRo_09: SELLING SEVENTEEN BeTS Ticket UBC Prem 424\n\nPrice: P2,300 ( Original price is P2,850 + online Fee P100)\n\nFor meet up on…
## 7571              RT @APMAHK: ASIAN POP MUSIC AWARDS 2022(NOMINATIONS)\n#APMA #APMA2022 #AsianPopMusicAwards #亞洲流行音樂大獎 #亚洲流行音乐大奖\n\nBEST DANCE PERFORMANCE(Overs…
## 7572                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7573                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7574                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 7575                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 7576                                 RT @NyxellHyung: 💎 BETS in Bulacan Freebies 💎\nHenlo Carats, its me ya boi again!!\n\nI'll be giving out MinWon Banners and SVT OT13 GOSE Name…
## 7577                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7578                            RT @bestboywonuu: CONCERT KIT SET GIVEAWAY (sponsored by a carat)\n— (5) winners of Set A &amp; (5) winners of Set B\n\nmechanics:\n• RT and like t…
## 7579                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7580                                RT @binnie_nonna: #BinnieBigay 🐶 for BeTS in Bulacan \n\nhi #TeamLabas carats, we’ll be giving away one (1) LBA ticket for #BeTSinBulacan \n\nH…
## 7581                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7582                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7583                                RT @samfendermusic: Finsbury flashback to such a mint day!! Seventeen Going Under Live Deluxe CD (ft. Wild Grey Ocean &amp; Little Bull Of Blit…
## 7584                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7585                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 7586                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7587                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7588                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7589                              RT @ihatemaths777: WTS\nSEVENTEEN Bulacan \nOne ticket \nLOWER BOX A PREMIUM\nSell at original price \nCan meet in person\n#SEVENTEEN #BeTheSunin…
## 7590                           RT @ihatemaths777: WTS\nSEVENTEEN Bulacan \nOne ticket \nSec A with soundcheck\nQueue number &lt;400\nCan meet in person\n#SEVENTEEN #BeTheSuninBULA…
## 7591                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7592                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7593                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 7594                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7595                               RT @haothinks: minghao inclusions for sg 2023 🌌\n\n#SEVENTEEN #세븐틴 #THE8 #디에잇 #서명호 #徐明浩 #ディエイト #ミンハオ https://t.co/GSwKznCjZJ
## 7596                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7597                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 7598                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 7599                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7600                           RT @pinkeucarrots: #HelpRT #PinkeuZi\n\n20cm Woozi DOLL 🍚\n\nName: PinkeuZi\nHeight: 20cm\nDeadline: TBA\nPrice(Doll): 85 CNY / 15 USD\n\nOverseas G…
## 7601                                    RT @H1GHRMUSIC: JAY B takes on Seventeen’s ‘8 Bit Melody Challenge’ with songs from BLACKPINK, Justin Bieber and more. Watch the full versi…
## 7602                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7603                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7604                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 7605                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7606                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7607                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 7608                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7609                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7610                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7611                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7612                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7613                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 7614                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7615                                RT @consequence: ‣ 𝗦𝗘𝗩𝗘𝗡𝗧𝗘𝗘𝗡\n\nVery few groups have the cohesive work ethic or group dynamic of SEVENTEEN.\n\n"We want our CARATs to feel like…
## 7616                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 7617                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7618                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7619                                   RT @_seoksoohui: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— We'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7620                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7621                                  RT @moon_ziel: WTS/LFB PH \n\nHi Carats! If you are interested in printing photos in Instax on D-Day, kindly approach me. I'll tweet my outfi…
## 7622                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7623                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7624                            RT @_jinwifeu_: ఇ BE THE SUN in BULACAN freebies ఇ\n\nHi guys! I will be giving away keychains/keyholder on bets bulacan d-day! \n\n⇢ rt &amp; like…
## 7625                                         RT @shuayangbgt: we mess on each other’s yearbook photo😜✍🏼\n\n#caratselcaday #csd #scoups #SEVENTEEN @pledis_17 https://t.co/QHbp08rkKi
## 7626                                         RT @17CARATS_INA: Thank you so much for supporting us 💕😊\n\n@pledis_17  #SEVENTEEN #세븐틴 \n#SVT_inJAKARTACity https://t.co/g3ypbSTMrd
## 7627                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7628                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7629                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 7630                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7631                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7632                              RT @loreyneleeey: SEVENTEEN BE THE SUN IN MANILA ✨GIVEAWAY✨ DAY 1 (Oct 8)\n\nOpen to all carats! Team Concert/Team Labas. See you! 💗💎\n\n#BeTSi…
## 7633                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7634                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 7635                                   RT @snwulove: hey yow wassup! i, user @snwulove and @cheolacee will be handling a mini freebies giveaway on #BeTSinBULACAN\n\neither you can…
## 7636                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7637                         RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS SPOT #2\n\n▶ https://t.co/jdJ2EbCFMr\n\n#SEVENTEEN #세븐틴\n#SVT2023시즌그리팅 https://t.co/SN9X2mLH3q
## 7638                                     RT @min9yu_tttop: seventeen will perform in bulacan with their dancers..? oh my god pls CHEERS on the setlist 🕯️ \n\nhttps://t.co/Ty0HavRLgR
## 7639                                RT @livenationph: Get your shuttle tickets for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡 now!\n\nhttps://t.co/BONcdZGpQE\n\nPrice is P200 f…
## 7640                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7641                               RT @mujicprod: ꨄ Be the Sun in Bulacan (another) UBC Reg 🎫\n\n[1 winner]\n- like and rt this tweet \n- tag 3 carat besties\n- reply your streami…
## 7642                                                      RT @Chewlastic: You Made My Dawn ✨️🖤🎆\n\n#CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/Nu4uEk1ytD
## 7643                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7644                              RT @loreyneleeey: SEVENTEEN BE THE SUN IN MANILA ✨GIVEAWAY✨ DAY 1 (Oct 8)\n\nOpen to all carats! Team Concert/Team Labas. See you! 💗💎\n\n#BeTSi…
## 7645                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7646                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7647                     RT @_tappiioca: ✧ BE THE SUN IN BULACAN FREEBIES ✧\n\n• RT &amp; Like\n• Location tba\n• Open for Team Con &amp; Team Labas\n• LETS TRADE 🥺\n \nMight incl…
## 7648                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7649                                                                    RT @dailydkcomfort: Dokyeom for SEVENTEEN CAFE 2022 Winter Camping Behind #도겸 \n\n https://t.co/R3lzr5yPZy
## 7650                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 7651                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7652                                                                                             RT @eunoia__svt: SEVENTEEN IS 13\n\n@pledis_17 #SEVENTEEN \nhttps://t.co/l0SKnbz3Ph
## 7653                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7654                                                RT @SVT_stagram: [#SCOUPS📸 Instagram]\n210821 sound_of_coups \n\n#에스쿱스 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/Sw3Gv5sdr9
## 7655                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 7656                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7657                                RT @wonranghxee: Let's go on more dates that require putting greens and golf clubs🏌🏻🤎🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #…
## 7658                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7659                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7660                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7661                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7662                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7663                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7664                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7665                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7666                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 7667                                                                                                                      RT @SVT_Fancafe: Trust Seventeen~ 💎our 13 beautiful people
## 7668                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7669                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7670                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7671                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7672                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7673                              RT @SVT_Fancafe: [WOOZI]\n191214 -18:41 KST-\n\n➸ Carats\n\nThank you for always believing in us.\nJust like up until now, I hope you keep believ…
## 7674                                RT @FanboyCarat: Hello baka po may interested\n\n(1) LBB PREMIUM Section 209\nBe The Sun in Bulacan Concert Ticket\n10k po or pwede pa po pagus…
## 7675                             RT @SparklingMiii: WTS LFB PH \nSEVENTEEN BE THE SUN IN BULACAN \nLBB REG 217 (2 seats) \n\ndiscounted at 10,000 php ea\nmeetup (still nego)\n\nca…
## 7676                                    RT @seventeen: The singer released her debut album over a decade ago! From “Speak Now” to “Folklore,” here’s how Taylor became one of the w…
## 7677                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7678                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 7679                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 7680                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7681                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 7682                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7683                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7684                  RT @SVT_Fancafe: [#HOSHI🌟 Weverse]\n221216 -16:24 KST-\n\n➸ Ah.. ? My stye medicine ㅠ I left it ..\n\nㅋㅋㅋㅋㅋㅋㅋㅋ I thought I brought it \n\n#호시 #SEV…
## 7685                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 7686                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7687                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7688                                                                   RT @shuarandom: fairy joshua and his 4 little doves\n\n#JOSHUA #조슈아 #SEVENTEEN\n\n https://t.co/UhfyawieXf
## 7689                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 7690                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 7691                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7692                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7693                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 7694                                                       RT @dokgyomen: museum date with deekay♡\n\n#CaratSelcaDay #CSD #DK #DOKYEOM #SEVENTEEN @pledis_17 https://t.co/7zQ0B2pPok
## 7695                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7696                                 RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 7697                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #1\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7698                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7699                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 7700                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 7701                             RT @pledis_17: [INSIDE SEVENTEEN] SEVENTEEN WORLD TOUR [BE THE SUN] ASIA BEHIND #2\n\n▶ https://t.co/9YYOuRp0t8\n\n#SEVENTEEN #세븐틴\n#INSIDE_SVT…
## 7702                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7703                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7704                    RT @pledis_17: SEVENTEEN 'BE THE SUN' : THE CITY NAGOYA\n\n▶ https://t.co/8DcYWmhRKE\n\n#SEVENTEEN #세븐틴\n#SEVENTEEN_THE_CITY\n#まちとかがやくSEVENTEEN h…
## 7705                                  RT @hawtmatchalatte: Let's eat with bononie ᕙ(`▽´)ᕗ\n#CaratSelcaDay #CSD\n#VERNON #버논 #SEVENTEEN\n#세븐틴 @pledis_17 https://t.co/mZPpJ85jHK
## 7706                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 7707                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 7708                            RT @pledis_17: [SEVENTEEN’s SNAPSHOOT] EP.49 DINO IS BACK!\n\n▶ https://t.co/mPpZoS08WJ\n\n#SEVENTEEN #세븐틴\n#SVT_SNAPSHOOT https://t.co/WO0H9HVd…
## 7709                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7710                                    RT @CaratLandPH: We have received reports of people sharing videos of SEVENTEEN recorded in places where they shouldn't be disturbed in the…
## 7711                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7712                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7713                            RT @_jinwifeu_: ఇ BE THE SUN in BULACAN freebies ఇ\n\nHi guys! I will be giving away keychains/keyholder on bets bulacan d-day! \n\n⇢ rt &amp; like…
## 7714                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7715                             RT @deal4idols: whosfan global artist award poll (giveaway) \n\n🗳 20 tickets (10 for each winner)\n\nrules : \n\n- 500 likes + rts\n- follow me\n-…
## 7716                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7717                                                             RT @12solamifasol: just saw this park jihoon dancing to hot seventeen during AAA? YESSSSS 🥹 https://t.co/55kAdvUcKl
## 7718                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7719                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 7720                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7721                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 7722                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7723                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7724                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7725                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7726                                    RT @unescokr_eng: KNCU is thrilled to announce the launch of a global campaign ‘GoingTogether’ with SEVENTEEN to raise awareness of the imp…
## 7727                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7728                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7729                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7730                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7731                                                  RT @mansehao: JUN and Dokyeom visiting the SEVENTEEN exhibition at Tokyo Skytree together 🥰 @pledis_17 https://t.co/RpDjAzGKk2
## 7732                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7733                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7734                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 7735                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 7736                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7737                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7738                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7739                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7740                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7741                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7742                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7743                             RT @oceanzii: That someday it would lead me back to you.\n\n#CaratSelcaDay #CSD #DK #DOKYEOM #SEOKMIN #도겸 @pledis_17 #세븐틴 #SEVENTEEN https://…
## 7744                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 7745                                RT @DeepikaBhardwaj: The highest authority of JUSTICE \nin India will be on HOLIDAY for\nSEVENTEEN DAYS STRAIGHT.\n\nIT HAS 70,000+ CASES PENDI…
## 7746                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7747                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7748                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7749                                   RT @CoupsOfMinWon: ☀️ Be The Sun in Bulacan ☀️\n                                  Freebies\n\nCarats!! We will be giving away freebies on d-da…
## 7750                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 7751                  RT @musicinfojapan: VOTE GA  - SMA  \n\nPoll winner : 100 💛 \n\n📌Rules \n✅ LIKE &amp; RETWEET  \n✅ FOLLOW ME &amp;\n@smajapan_\n@smaglobal_\n✅ Drop proofs…
## 7752                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7753                               RT @haothinks: minghao inclusions for sg 2023 🌌\n\n#SEVENTEEN #세븐틴 #THE8 #디에잇 #서명호 #徐明浩 #ディエイト #ミンハオ https://t.co/GSwKznCjZJ
## 7754                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7755                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7756                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 7757                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 7758                                                           RT @horanghaeist: this is the type of shit dokyeom makes seventeen do before left &amp; right https://t.co/63ulX1HAI0
## 7759                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7760                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7761                             RT @jjwihauls: ☁️. Be The Sun Bulacan Freebies\n\n — rt &amp; like this tweet to spread !\n —  will prio attendees due to limited quantities \n — o…
## 7762                                                             RT @cigembutosunday: – taste,?\n\n#CSD #CaratSelcaDay #JEONGHAN #SEVENTEEN #정한 @pledis_17 https://t.co/CRvgeYpnUU
## 7763                              RT @CharmSupportLab: Be the Sun in Bulacan freebies\n\nHi! We’re giving away lots of cute fanmade stuff today! In rose quartz &amp; serenity blue…
## 7764                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7765                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7766                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7767                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7768                         RT @baekhyunmim: not new to #kpoptwt ~ \n\n gabi \neight-teen &lt;3\ninfp - she/they ⁑ \n\nults - svt, txt, bts, nct, exo, superm + shinee\n\nult bias…
## 7769                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7770                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7771                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7772                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 7773                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7774                         RT @YoonMinMD1: Done being a mader packer lol &gt;&lt;\nI and @SVTethereal packed this for you on D-Day! 💖\n\n🌸 Open to ALL carats \n🌸 1:1 only\n🌸 wil…
## 7775                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 7776                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7777                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 7778                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7779                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7780                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7781                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7782                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7783                                    RT @billboard: The in-demand hitmaker shares the stories behind songs he crafted with #BTS' Jin, SEVENTEEN, NCT 127 and more https://t.co/E…
## 7784                          RT @meungis: wts lfb ph\n\nscoups set — ₱220\n\n𓏔 mop: gcash\n𓏔 mod: ggx, jnt, sdd\n𓏔 dop: payo / 3 days reservation\n\nreply or dm to claim \n\nt. s…
## 7785                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7786                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7787                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 7788                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7789                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 7790                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 7791                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7792                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 7793                                                        RT @yeoshuaa_: me &amp; my boyfie ♡\n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN #조슈아 @pledis_17 https://t.co/g5kondqa3y
## 7794                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7795                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7796                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7797                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 7798                                RT @Yang_Broke: Crowdsourcing 🌻\nCalling all #TeamLabas at #BeTSinBULACAN like and Retweet this tweet. I'll dm u 😊\n\n#SEVENTEEN\n#BeTheSuninBU…
## 7799                            RT @bestboywonuu: CONCERT KIT SET GIVEAWAY (sponsored by a carat)\n— (5) winners of Set A &amp; (5) winners of Set B\n\nmechanics:\n• RT and like t…
## 7800                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7801                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7802                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7803                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7804                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7805                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7806                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 7807                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7808                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7809                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7810                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7811                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 7812                                                     RT @LucieTaeYG: 𝓨𝓸𝓾'𝓻𝓮 𝓽𝓱𝓮 𝓸𝓷𝓮 𝓽𝓱𝓪𝓽 𝓘 𝔀𝓪𝓷𝓽...\n\n#CaratSelcaDay #CSD #SEVENTEEN #DOKYEOM @pledis_17 https://t.co/Y0x3uKu7Uy
## 7813                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 7814                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7815                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7816                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7817                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 7818                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 7819                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7820                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 7821                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7822                                    RT @_jeongyus: rewatching inside seventeen in manila and it's just sad that i failed to see them for the 3rd time. those opportunities that…
## 7823                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7824                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7825                                                                                                                                         RT @svtdking: Seventeen en Chile 2023 🕯️
## 7826                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7827                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7828                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 7829                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7830                                    RT @mindset_dive: In his 12-part audio series, JOSHUA of SEVENTEEN opens up about the hurdles he had to overcome, how he achieved his goals…
## 7831                                                                                             RT @eunoia__svt: SEVENTEEN IS 13\n\n@pledis_17 #SEVENTEEN \nhttps://t.co/l0SKnbz3Ph
## 7832                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7833                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 7834                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7835                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7836                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7837                              RT @SvtShazam: Shazam Daily Top 10 (2022.12.16)\n\n1. Cheers — 598\n2. HOT — 510\n3. Very Nice — 448\n4. _WORLD — 316\n5. Darl+ing — 275\n6. Fear…
## 7838                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7839                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 7840                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7841                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7842                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7843                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7844                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7845                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 7846                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7847                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7848                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7849                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7850                                                RT @MeetVernon_218: 221203 BE THE SUN ACHI \n\n#버논 #VERNON  #バーノン #최한솔 \n#세븐틴     #SEVENTEEN https://t.co/0Sxb3u1wBK
## 7851                                 RT @WorldwideCarats: [INFO] SEVENTEEN is the #1 act that sold the most physical albums this year in Japan 🇯🇵\n\n@pledis_17 @pledis_17jp\n#SEVE…
## 7852                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7853                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7854                                  RT @lucidhaos: track #1 : pagtingin\n \n— wherein two best friends, Mikael and Drei, lost in the sea of their deepest desires find the island…
## 7855                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 7856                                                                                                RT @orbit_9567: 221213 AAA Shadow 01\n#세븐틴 #SEVENTEEN https://t.co/SWis81AQzW
## 7857                           RT @kimjeonmw: WTS/LFB❗❗❗\n\n380 SET (190 dp today)\n550 SET (200 dp today)\n📍meet up-PH ARENA\n\nseokmin dokyeom dk the8 minghao myungho dino jo…
## 7858                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7859                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7860                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 7861                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7862                                    RT @RebekkahFord: @A_DiAngelo I never thought I would die at the age of seventeen. https://t.co/XXn9EbWSdJ #paranormalromance #kindle #amre…
## 7863                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 7864                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 7865                         RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 7866                               RT @kpopd2c: 🇺🇸 Availability of K-pop Albums on USA Stores\nDecember 16, 2022\n\n#TXT #Temptation 🆕\n\n#girls #bornpink #proof #manifesto_day1 #…
## 7867                         RT @cafe_joshua_th: ꒰ pls rt 💎꒱\n\n🌹#JOSHUA 'Birthday Cafe BKK🌹\n\n🗓️ 22 - 28 DEC.\n🚩@fanscafe_bkk\n\n  🌹HASHTAG \n#DreamOfRedRose_1230 \n\n#Happy_JO…
## 7868                                                                 RT @Blossomseason_: 220924 My cute little black cat..\n#버논 #세븐틴 #vernon #seventeen https://t.co/0MFh3KP1rf
## 7869                                    RT @ten_sye: @crbarnes001 Yes. When I died of asymptomatic long covid yesterday, a striking NHS nurse broke the picket line, jabbed me with…
## 7870                                                                 RT @Blossomseason_: 221213 #버논 #세븐틴 #vernon #seventeen\nMy black cat is rockstar.. https://t.co/9evJZZlapu
## 7871                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7872                                                                               RT @CHERRYHAE17: their record hasn't been broken yet.  #SEVENTEEN #세븐틴 https://t.co/6YlP8EjxiB
## 7873                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7874                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7875                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7876                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7877                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 7878                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 7879                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7880                                    RT @mommasboymushu: Friends, I beat the odds! 4 years ago I had a stroke. I'm still here today as a SEVENTEEN YEAR OLD PARTY ANIMAL🥳! Pleas…
## 7881                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7882                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 7883                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 7884                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7885                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 7886                                    RT @kyeomdoul: predebut seventeen entertaining hospital patients through their performance for making them feel good... SEVENTEEN BEST BOYS…
## 7887                                RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET\n\n(1) UBC Regular ticket\n\nTweet under this with “mine + SEVENTEEN bi…
## 7888                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7889                                                RT @yutasbuckethat: 221208 Seventeen LAX arrival! (Filmed this at a distance by waiting area) #SEVENTEEN https://t.co/Y3is7Thwut
## 7890                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7891                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7892                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 7893                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7894                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7895                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7896                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 7897                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7898                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 7899                                  RT @fablareshopph: Our #BeTSinBulacan concert giveaways are ready! 😍 (and we're making more! 😉)\n\nFind us around the Philippine Arena on Dec…
## 7900                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7901                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 7902                               RT @skini_chic: wts lfb christmas sale\n-tingi (prio more)\n-carrd on bio\n-*= flawed\n\nblackpink jisoo jennie rose lisa newjeans haerin daniel…
## 7903                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 7904                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 7905                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 7906                                  RT @EL_ICAAAA: Even if it's a long and tough road wherever that is, i'll walk with you until the end\n\n#CARAT_SELCA_DAY #CSD #DOKYEOM #SEVEN…
## 7907                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7908                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7909                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 7910                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7911                                  RT @lucidhaos: track #1 : pagtingin\n \n— wherein two best friends, Mikael and Drei, lost in the sea of their deepest desires find the island…
## 7912                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7913                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7914                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7915                                                                                                         RT @absterwebby: get it deekay #LA3C #SEVENTEEN https://t.co/0SFZPCcGwI
## 7916                                                                  RT @wnwoostar: my sunshine and i 💟 ! \n#CSD #CaratSelcaDay #DOKYEOM #SEVENTEEN #디에잇 https://t.co/njvPa9YJiV
## 7917                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7918                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 7919                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7920                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 7921                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7922                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7923                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 7924                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7925                                                                         RT @j1gyus: your fave tigers🐯\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/4jlJJ1KvyG
## 7926                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 7927                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7928                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 7929                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7930                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 7931                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 7932                     RT @SVT_Fancafe: [#DINO🌟 Weverse]\n221216 -14:30 KST-\n\n➸ I really like things like thisㅋㅋㅋㅋㅋ\n\n#디노 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/GH…
## 7933                           RT @soongyuexe: help rt! #saiwts ph go 🇵🇭\n\n꒰ hoshi mingyu don’t wanna cry acrylic standee &amp; seventeen keyrings by @soongyu ꒱\n- ₱100/ stande…
## 7934                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7935                                                     RT @cheoluvrs: lovers surrounded by flowers 🌷\n\n#CaratSelcaDay #CSD @pledis_17 #DOKYEOM #SEVENTEEN https://t.co/vQEBZcNm8H
## 7936                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7937                                RT @joykimleekwonji: ♡ Be The Sun in Bulacan Freebie ♡\n♡ Hoshi 🐯 Banner Support ♡\n\n♡ RT and Like This Tweet (Show Proof on D-Day)\n♡ Find me…
## 7938                                           RT @joshualooped: "I wanna be Seventeen's Joshua for a long, long time." \n#세븐틴 @pledis_17 #조슈아 #JOSHUA https://t.co/2JvF06Q7kg
## 7939                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7940                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7941                       RT @MsKwon_15: "Three friends, one heart."\n\n#CaratSelcaDay #CSD #SCOUPS #에스쿱스 #JEONGHAN #정한 #JOSHUA #조슈 #SEVENTEEN #세븐틴 @pledis_17 https://…
## 7942                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7943                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7944                                 RT @17_seventeen_05: When I see my face in your two eyes\nAs if the world has stopped, I will hug you. \n\n#SEVENTEEN #HOSHI #CSD  #CaratSelca…
## 7945                              RT @sarahoshuji: ✨#Seventeen Be The Sun in Bulacan Fan Support/Freebies✨\n\nHello Caratdeuls! \n\n@nilaj_tee, @aidan_andrea, and I are giving a…
## 7946                               RT @tapakatuy: — Dialogue by Lee Ufan (2010)\n\n#CSD #CaratSelcaDay #SCoups #ChoiSeungcheol #SEVENTEEN #세브틴 @pledis_17 https://t.co/q3t11c6Xk5
## 7947                                    RT @batara_april: Will give this randomly sa mga carats na may print out na "Pahingi pong Freebies" hehehe 😁 See you Caratdeuls and Sebong~…
## 7948                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7949                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7950                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7951                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 7952                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7953                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 7954                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 7955                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7956                                    RT @envimediaco: Calling all sneakerheads! 👟👀 If you’re looking for new kicks, check out how you can steal #SEVENTEEN’s #Hoshi’s style from…
## 7957                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 7958                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 7959                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 7960                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 7961                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7962                                        RT @deariekyu: come, come into my world 🍓!!!\n\n#CaratSelcaDay #CARAT #csd #SEVENTEEN #JOSHUA #조슈아 @pledis_17 https://t.co/2wfPrMFdiJ
## 7963                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7964                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7965                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7966                                                                                                                      RT @junishiteru: 🖇️ gdrive seventeen concerts\n\n` a thread
## 7967                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7968                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7969                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7970                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 7971                                                                                  RT @absterwebby: you better hit those notes woozi!!!! #LA3C #SEVENTEEN https://t.co/u2MJ7neoIC
## 7972                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 7973                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 7974                                                                       RT @sfelishi: thinkin’ about you\n[ #JOSHUA #CSD #CARATSELCADAY #SEVENTEEN #SVT ] https://t.co/8iaRZLszvO
## 7975                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7976                            RT @seokmin_br: [📸] 16.12.22. #DK, #DINO e #VERNON para o Seventeen Season's Greetings 2023.\n\n© 13thistory\n\n#도겸 #세븐틴 #SEVENTEEN @pledis_17…
## 7977                                      RT @Amyuwu22: We are still stuck at 11th place,please vote as much as possible 🥲🥲\n#CARATS\n#SEVENTEEN\n@pledis_17 https://t.co/gTz0AgZ1TP
## 7978                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 7979                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 7980                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 7981                                  RT @dailygyushua: [daily dose of #GYUSHUA]\n\ngyu have the need to walks the distance toward his beloved hyung to hug him when he did somethi…
## 7982                               RT @haothinks: minghao inclusions for sg 2023 🌌\n\n#SEVENTEEN #세븐틴 #THE8 #디에잇 #서명호 #徐明浩 #ディエイト #ミンハオ https://t.co/GSwKznCjZJ
## 7983                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7984                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 7985                                                                                             RT @intbun: november baes\n\n#caratselcaday #csd #seventeen https://t.co/JkHF0BfDVf
## 7986                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7987                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7988                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 7989                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7990                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7991                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 7992                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 7993                                    RT @envimediaco: Calling all sneakerheads! 👟👀 If you’re looking for new kicks, check out how you can steal #SEVENTEEN’s #Hoshi’s style from…
## 7994                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 7995                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 7996                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 7997                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 7998                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 7999                                    RT @svtcontents: 🎥 Boy group TRENDZ performed SEVENTEEN's 'HIT' on 2022 AAA's After Stage! Here's the introduction video of their performan…
## 8000                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8001                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8002                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8003                                 RT @cartchives: # want to sell / wts carbong v1 \n\n( 400.000 ) \n✅ all in good condition, nyala terang, inc battery + bonus pc attacca the8,…
## 8004                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8005                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8006                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 8007                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8008                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 8009                                 RT @haosbitch: priorities before I fly……BLURRY PICS IS OUR THING!!!!! #CSD #CaratSelcaDay #MINGHAO #徐明浩 #SEVENTEEN @pledis_17 https://t.co/…
## 8010                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8011                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8012                            RT @leeseokminheart: 221215 DK🌟 Weverse update\n\n⚔️ : Who's that friend on the right? 🥸\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/mOQw8vR…
## 8013                              RT @CharmSupportLab: Be the Sun in Bulacan freebies\n\nHi! We’re giving away lots of cute fanmade stuff today! In rose quartz &amp; serenity blue…
## 8014                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 8015                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8016                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8017                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 8018                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8019                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. when did you feel the happiest recently? \n\n🦌: the happiest....\n😇: i feel so happy becau…
## 8020                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8021                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8022                                                 RT @mingyuscIoud: car rides with the boyfriend \n\n#csd #CaratSelcaDay #mingyu #seventeen #민규 #세븐틴 https://t.co/tyNqrrnxVC
## 8023                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8024                                                         RT @caramelchiiato: sunset state of mind \n\n#CSD #CaratSelcaDay #WONWOO\n#SEVENTEEN @pledis_17 https://t.co/Au3nsVI2md
## 8025                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8026                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8027                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8028                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8029                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8030                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8031                                  RT @dokyeomsfool: Just between us, you are always the lead role to me. 🌹🩵\n\n#csd #CaratSelcaDay #17caratselcaday #dokyeom #dk #seventeen @pl…
## 8032                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8033                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 8034                                   RT @allforcaratsvt: btw may willing ba maki trade ng tix? like mas mababang row sanaa ! two adjacent seats\n\nLBA REG ROW 30+ to LBA REG ROW…
## 8035                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8036                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8037                           RT @boyfriendshua: #BeTheSuninBULACAN #BeTSinBULACAN \n\nseventeen freebies giveaway on concert day ☀️🌞\n\n- 12.17.2022\n- time &amp; location tba\n-…
## 8038                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8039                                RT @hanisyruup: Be The Sun in Bulacan Freebies ☀️\n\n↬ Strictly 1:1\n↬ follow @/theadvisordiaries on ig (optional)\n↬ Time/Loc : TBA\n↬ Say “Shi…
## 8040                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8041                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 8042                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8043                                    RT @_jeongyus: rewatching inside seventeen in manila and it's just sad that i failed to see them for the 3rd time. those opportunities that…
## 8044                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8045                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8046                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8047                               RT @savuhntea: UNFLOP ME,  HELP RT 🇵🇭 CARATS 🥺🙏 \n\n✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n"seventeen inspired" embroidered shirts for ₱300 with…
## 8048                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8049                          RT @BrasilDino: [📸 SCAN]- 16.12.22- \n#DINO, #DK e #VERNON para o Season’s Greetings 2023\n\n🦀 \n#DINO #SEVENTEEN #디노 @pledis_17  #세븐틴 \nCr: 13t…
## 8050                                RT @ttalghui: BeTS Bulacan giveaway 🧡\n\nJust RT+ LIKE this tweet!\n\nSince di matutuloy yung pa-freebies ko, I'll just give away this fts pb +…
## 8051                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 8052                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. when did you feel the happiest recently? \n\n🦌: the happiest....\n😇: i feel so happy becau…
## 8053                                  RT @yupsheskitten: ✧ SEVENTEEN BE THE SUN IN BULACAN FREEBIES ✧\n\n— I'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only!…
## 8054                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8055                                      RT @NEVERVMlND: just two besties looking at each others 🍓💌\n#CaratSelcaDay #CSD #DK #seokmin #seventeen @pledis_17 https://t.co/NbmKXvlMZd
## 8056                               RT @howoons: ☀️ SEVENTEEN Be The Sun in Bulacan ☀️\nHOWOO (soonhoon) AND WOOZI BANNER GIVEAWAY\n\n♡ giving away howoo and woozi banners &amp; a fe…
## 8057                                    RT @yoonsbbymama: bby attending my grad lookin hot in red💋 all eyes on us but i only got my eyes on you. no one can resist the charm, restu…
## 8058                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 8059                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 8060                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 8061                                RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 8062                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8063                               RT @Brando_WX: Today's SigTor Spotlight: Tekamah, NE\n\n• Date: May 1, 1930\n• Rated: (Estimated) F4\n  — Windspeed: 207-260 mph\n• Path Length/…
## 8064                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 8065                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8066                                                              RT @kwanslovr: you are my angel~ &lt;3 \n#csd #CARAT_SELCA_DAY  #JUN #SEVENTEEN @pledis_17 https://t.co/8eH8ARWmtr
## 8067                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 8068                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 8069                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8070                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 8071                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 8072                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8073                                  RT @eoia_min: ✧ SEVENTEEN BETS IN BULACAN FREEBIES ✧\n\nHi carats! I'll giveaway official photocards and other unofficial photos of seventeen…
## 8074                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8075                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8076                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 8077                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8078                                                            RT @faeiryoon: I just love him Idk #CSD #CaratSelcaDay #SCOUPS #SEVENTEEN #세븐틴 @pledis_17 https://t.co/0WydKPf5Vr
## 8079                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8080                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8081                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8082                                    RT @rvsvtfiles: throwback to red velvet and seventeen's red and black outfits in last year's, 2021, kbs gayo daechukje https://t.co/On48X8L…
## 8083                                    RT @rvsvtfiles: throwback to red velvet and seventeen's red and black outfits in last year's, 2021, kbs gayo daechukje https://t.co/On48X8L…
## 8084                                                                RT @DINO_CENTRAL: say the name! \n\n#DINO #디노 \n#SCOUPS #에스쿱스 \n#SEVENTEEN #세븐틴 https://t.co/VeqmaksRps
## 8085                                             RT @svtbz_Q8: he just won't stop copying me 😤 #CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/HlyMVkiehU
## 8086                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8087                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 8088                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8089                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8090                           RT @jaz_beomjun: ✨BETS IN BULACAN FREEBIES✨\n\n~open to all carats \n~randomly distributed \n~limited quantity \n\n#BeTheSuninBULACAN\n#BeTSinBULA…
## 8091                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8092                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8093                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 8094                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 8095                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8096                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8097                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8098                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 8099                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8100                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 8101                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8102                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 8103                              RT @jasgrenae: 🌸BeTs Be the Sun Bulacan Freebies\n\nHelp RT\nNew Carat here 🥹💕\nSupport nyo naman effort ko hahahah\n\n🌷 Open for both Team Labas…
## 8104                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8105                            RT @missmafia0526: CARATS HELP RT PLEASE 😭\n\nSEVENTEEN BE THE SUN BULACAN \n\nwtt lft\n\nHAVE: (2) VIP B SOUNDCHECK\n\nWANT: (2) VIP SOUNDCHECK AN…
## 8106                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8107                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8108                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 8109                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8110                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8111                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8112                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8113                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 8114                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8115                                  RT @TheAthletic: Chris Paul is a major advocate for HBCUs — and Friday, he’ll be an HBCU graduate.\n\nSeventeen years after leaving Wake Fore…
## 8116                                             RT @svtbz_Q8: he just won't stop copying me 😤 #CaratSelcaDay #CSD #SEVENTEEN #THE8 #MINGHAO #세븐틴 #디에잇 https://t.co/HlyMVkiehU
## 8117                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8118                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8119                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8120                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 8121                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8122                            RT @Horangdan_iyeyo: Wts lfb ph only\n\nSvt photocards\n-110 unless stated\n•Vernon an ode poet\n•Vernon attacca op2 50\n•Hoshi semi\n•Jun semi\n•J…
## 8123                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8124                                                                                              RT @yamazke: same sunset\n\n#CSD #CaratSelcaDay #SEVENTEEN https://t.co/msuTEDX3oZ
## 8125                                              RT @Wonder_ww717: 221203 Be The Sun in Nagoya\nww.💫\n#세븐틴  #SEVENTEEN  #원우 #WONWOO #ウォヌ @pledis_17 https://t.co/FMGbuCRcmO
## 8126                                  RT @CheonsaHaniee: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nPlease see photo for more details\nStrictly 1:1 🥺\n\n☀️RT + Like (follow not mandatory…
## 8127                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8128                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 8129                             RT @jjwihauls: ☁️. Be The Sun Bulacan Freebies\n\n — rt &amp; like this tweet to spread !\n —  will prio attendees due to limited quantities \n — o…
## 8130                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8131                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8132                           RT @aceofdino: [#BeTSinBulacan #BeTheSuninBulacan #BeTheSun]\n\nsound_of_coups &amp; feat.dino Fanmade Giveaway (w/ @Woncheol_17)\n\n• Like/RT\n• Fo…
## 8133                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8134                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8135                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8136                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8137                                    RT @eunoia__svt: "Self-producing" might be a title for you but for seventeen it was their survival. They literally were able to step on sta…
## 8138                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 8139                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 8140                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8141                            RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 8142                                                                 RT @Blossomseason_: 221213 #버논 #세븐틴 #vernon #seventeen\nMy black cat is rockstar.. https://t.co/9evJZZlapu
## 8143                               RT @pledis_17: [17'S] SEVENTEEN WORLD TOUR[BE THE SUN] IN TORONTO\nHow are you feeling?🤔\nVERY NICE‼️\n\n#SVT_WORLDTOUR_BETHESUN\n#SEVENTEENinTO…
## 8144                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 8145                               RT @michikartsu: bump!\n\nwts lfb svt seventeen ph\n(helping a friend) \n\n✴︎ (1) LBB Reg 217 BeTS tickets✴︎\n⤷ tickets are claimed already\n⤷ ₱9k…
## 8146                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8147                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8148                                    RT @flamehanie: This year’s moment that jeonghan wants to go back to is the opening of BE THE SUN concert in Seoul, the moment when sevente…
## 8149                                                       RT @eunoia__svt: Songs I want to see seventeen perform live again but they probably will never 🥲\n\n@pledis_17 #SEVENTEEN
## 8150                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8151                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8152                                RT @moonchiIdhan: even if my love only amounts to this, \ni’ll be your spring during any winter 🤍🌿\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세…
## 8153                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 8154                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8155                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8156                          RT @CESdawna: 📢 (WTS/LFB) #BeTheSuninBULACAN \nLIGHTSTICK POUCH BATCH 2\n\nSelling it for 250PHP\n\nIncludes: \n✅keychain\n✅Pouch\n\n13 SLOTS LEFT!…
## 8157                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8158                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8159                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 8160                                  RT @adorshu: be the sun in bulacan fan support / freebies by adorshu! ⭐️\n\nhi carats~ i’ll be giving away very limited seventeen ot13 hand b…
## 8161                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8162                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8163                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8164                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8165                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8166                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8167                                                                       RT @sfelishi: thinkin’ about you\n[ #JOSHUA #CSD #CARATSELCADAY #SEVENTEEN #SVT ] https://t.co/8iaRZLszvO
## 8168                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8169                                    RT @kyeomsta: remember when wonwoo the dancing machine matched up seventeen’s performance team leader during a ment in concert? main dancer…
## 8170                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8171                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8172                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8173                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 8174                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 8175                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8176                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8177                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8178                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 8179                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 8180                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8181                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8182                                   RT @CoupsOfMinWon: ☀️ Be The Sun in Bulacan ☀️\n                                  Freebies\n\nCarats!! We will be giving away freebies on d-da…
## 8183                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8184                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8185                             RT @mintcoups: “you've got a smile that could light up this whole town.”\n\n #CaratSelcaDay  #CSD #CARAT #SEVENTEEN #MINGYU #세븐틴 #민규 @pledis_…
## 8186                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8187                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8188                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8189                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 8190                               RT @voboowuji: Help rt! \nwant to sell / wts / lfb\n\n• selling to each (other tnc on pict 3) \n• open sharing boleh banget\n• exc packing+admin…
## 8191                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8192                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 8193                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8194                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8195                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8196                                  RT @_deardarlings: Be The Sun in Bulacan Project ☀️\nby #DearDarlings, \n\nCARATs should stay hydrated for the whole day on December 17, 2022!…
## 8197                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8198                          RT @otter_cart: #BETSinBulacan Fan Support by otter_cart &amp; lab_otter  ✨\n\nMechanics:\n1. mbf me and @lab_otter\n2. rt and like this twt\n3. tag…
## 8199                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 8200                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8201                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8202                                                                                                       RT @ankiiithecutiee: Sixteen seventeen eighteen\n\nBB16 SHOW US PRIYANKIT
## 8203                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8204                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8205                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8206                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8207                                RT @mylovejoshuji: Be The Sun in Bulacan\n• Shua Kit freebies 💗\n\nfor Joshushushus, I gotchu!\nlooking for Joshushushu moots! Let's meet on de…
## 8208                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8209                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8210                       RT @forwonwooth: ꒰ SVT Update ꒱ 15.12.22\n\nSEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2 - #WONWOO\n\n#WONWOO #원우\n#SEVENTEEN #세븐틴\n#SVT2023…
## 8211                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 8212                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8213                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8214                            RT @samsamelona: ˚♡ ⋆。˚baby boo と baby carat🍞\n#CaratSelcaDay #CSD #seventeen \n#세븐틴 @pledis_17 #seungkwan #승관 #부승관 https://t.co/0xt4CkYPtM
## 8215                               RT @mujicprod: ꨄ Be the Sun in Bulacan (another) UBC Reg 🎫\n\n[1 winner]\n- like and rt this tweet \n- tag 3 carat besties\n- reply your streami…
## 8216                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8217                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8218                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8219                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 8220                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8221                           RT @jinrrys07: Wts LFB\nBets bulacan \nSvt seventeen \n\nLBB regular\nSection 207\nRow 53\n\nPhp 10700 (regular ticket price) \n\nSELLING AT 8000php…
## 8222                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8223                                    RT @livenationph: SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN Merch with a list of available items and prices for a hassle-free buying expe…
## 8224                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 8225                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8226                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 8227                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8228                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8229                                                  RT @kpoplikeperfect: 221213 AAA ENDING\n\n☺️👋\n\n#dino #디노 #seventeen #세븐틴\n#AsianArtistAwards2022 https://t.co/jWQYvYZizI
## 8230                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8231                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8232                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 8233                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 8234                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8235                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8236                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 8237                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8238                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 8239                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8240                                                                                        RT @littIegfhoshi: seventeen would drop everything to do silly little tiktoks with hoshi
## 8241                                               RT @junranghae_hui: Shit, this is red too!!❤️\n\n#CSD #CaratSelcaDay #MINGYU #SEVENTEEN #세븐틴 @pledis_17 https://t.co/BPzcDvvjWr
## 8242                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8243                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8244                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8245                                   RT @vminsuga613: 🌞 Be the Sun Bulacan Freebies🌞\n♥️Design by : @btsvtnimaliel\n🔹️ Like &amp; Rt \n🔹️Open for all carats💎\n🔹️1:1 limited quantity…
## 8246                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8247                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8248                              RT @voboowuji: Help rt! \nwant to sell / wts / lfb\n\n• selling to each/take all\n• exc packing+admin 🍊\n• goodcon, not for sensitive buyers\n• K…
## 8249                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 8250                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8251                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8252                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8253                             RT @kwoipay: Be the Sun in Bulacan Concert Freebies 💎\n\nWill give these away before con &lt;3\n( read the second pic for inclus ) \n\n— Loc : TBA…
## 8254                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 8255                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 8256                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8257                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8258                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8259                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8260                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8261                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8262                           RT @Woncheol_17: [#BeTSinBulacan #BeTheSuninBulacan #BeTheSun]\n\nsound_of_coups &amp; feat.dino Fanmade Giveaway (w/ @aceofdino)\n\n• Like/RT\n• Fo…
## 8263                                   RT @thinkabthvc: also following ruby’s release we (might) be getting: \n-live performance on music show (schedule may be delayed due to conc…
## 8264                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 8265                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8266                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8267                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8268                                  RT @livenationph: Hi Carats! Here are the UPDATED maps for SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN for your reference.\n\nQueuing link fo…
## 8269                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8270                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8271                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8272                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8273                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8274                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8275                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8276                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8277                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 8278                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 8279                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8280                                    RT @Kpop_Herald: .@pledis_17's Joshua made the cover of fashion magazine MAPS. Asked what drives him to work hard consistently, he said, "C…
## 8281                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8282                               RT @mujicprod: ꨄ Be the Sun in Bulacan (another) UBC Reg 🎫\n\n[1 winner]\n- like and rt this tweet \n- tag 3 carat besties\n- reply your streami…
## 8283                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8284                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8285                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8286                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8287                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8288                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8289                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8290                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 8291                                RT @wonranghxee: Let's go on more dates that require putting greens and golf clubs🏌🏻🤎🖤\n\n#CSD #CaratSelcaDay #SEVENTEEN #CARAT #MINGYU #민규 #…
## 8292                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 8293                                       RT @noniesjacket: me &amp; vernon when the dj plays party rock anthem🤝🏼\n\n#CaratSelcaDay #CSD #VERNON #SEVENTEEN https://t.co/jwn8zgAcbS
## 8294                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8295                                 RT @dinwoogf: i love you, i love you and i love you.\n\n#CaratSelcaDay #CSD #DINO #디노 #SEVENTEEN  #세븐틴  @pledis_17 https://t.co/nn2eb0Ab8D
## 8296                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8297                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8298                                  RT @wonusuals: from "we're breathing the same polluted air" "team bahay" "team labas" to "team concert" "see you, seventeen" \n\nI CAN FINALL…
## 8299                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8300                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8301                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8302                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8303                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8304                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8305                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 8306                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8307                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8308                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 8309                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8310                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8311                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8312                                                         RT @dokyeomiesgf: we went on a date :)\n\n#CaratSelcaDay #CSD #DOKYEOM #도겸 #세븐틴 #SEVENTEEN https://t.co/zGBqsGPlwY
## 8313                                                  RT @svtcontents: 📰 SEVENTEEN's 'HOT' is one of the most streamed songs in Stationhead this 2022!! 🥳\n\nhttps://t.co/I3tTsn1sgK
## 8314                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8315                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8316                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8317                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8318                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
## 8319                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8320                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8321                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8322                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 8323                                 RT @hobisglow_: [ #BeTheSuninBULACAN Quick Giveaway ☀️ ]\n\n• 1 UBC Premium\n• Can also give ₱200 for Transpo/LNPH’s shuttle fee\n• RT this twe…
## 8324                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8325                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8326                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8327                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 8328                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8329                                 RT @dinwoogf: i love you, i love you and i love you.\n\n#CaratSelcaDay #CSD #DINO #디노 #SEVENTEEN  #세븐틴  @pledis_17 https://t.co/nn2eb0Ab8D
## 8330                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8331                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8332                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8333                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8334                                    RT @ten_sye: @crbarnes001 Yes. When I died of asymptomatic long covid yesterday, a striking NHS nurse broke the picket line, jabbed me with…
## 8335                                                   RT @elyxeura: The art and the artist 🎨\n\n#CaratSelcaDay #SEVENTEEN\n#세븐틴 #THE8 #디에잇 @pledis_17 https://t.co/Kn13F3S7SP
## 8336                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8337                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8338                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8339                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8340                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8341                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8342                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8343                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8344                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8345                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8346                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8347                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8348                             RT @jww_enthusiast: Now that I know you exist, how do I not love you ~ ♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17…
## 8349                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8350                                   RT @sebongzi: Seventeen Be the Sun in Bulacan ☀️✨\n\nHello cuties! I'll be giving away this DK handbanner as a support for our sunshine this…
## 8351                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8352                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8353                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8354                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8355                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 8356                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8357                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8358                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8359                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8360                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8361                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8362                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8363                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8364                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8365                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8366                          RT @HorangiKrong: ☀️ Be The Sun Bulacan - FREEBIES ☀️\n\nDate: Dec. 17, 2022\nTime &amp; Location: TBA\nStrictly 1:1\n\n✅ RT + Like\n(show us the proo…
## 8367                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8368                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8369                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 8370                            RT @gyeolchergae: ˗ˏˋ꒰ 🍒 ꒱\n\n『 #SEVENTEEN Fansupport by gyeolchergae 』\n\nHey, there Carats! I'll be giving away hand banners and unofficial p…
## 8371                          RT @CESdawna: 📢 (WTS/LFB) #BeTheSuninBULACAN \nLIGHTSTICK POUCH BATCH 2\n\nSelling it for 250PHP\n\nIncludes: \n✅keychain\n✅Pouch\n\n13 SLOTS LEFT!…
## 8372                                 RT @puppygyujeno: Hi CARATs, we will be giving away freebies for bets in bulacan💎\n\n✩ open to all carats \n✩ random design (1 banner + 1 keyc…
## 8373                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 8374                                                                         RT @j1gyus: your fave tigers🐯\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/4jlJJ1KvyG
## 8375                                  RT @406haul: 📸 SNAP SHOOT 📸\nseventeen fan support\n\n— hi! i will be giving away fanmade polaroid prints on d-day for be the sun in bulacan!…
## 8376                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8377                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 8378                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 8379                                      RT @BearJonginnie_: *still gonna used the same pict till I have new couple pict \n\n#CaratSelcaDay #CSD #SEVENTEEN https://t.co/IBT6V2i683
## 8380                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 8381                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8382                              RT @kkumashane: SEVENTEEN Be the Sun Bulacan\nFREEBIES GIVEAWAY \n\n‣ official trading/photo cards\n‣ candy canes\n\ni will post on d-day where y…
## 8383                                   RT @kyutie0613: HELLOOOOO CARATS! I’ll be giving FREE photocards + snacks tomorrow at PH ARENA ✨🤗 Hoping to meet you since first time ko ma…
## 8384                                RT @wenjaeeelhui: ♡ BeTS IN BULACAN FREEBIES ♡\n\nFan project to our CATBOY WEN JUNHUI 😺\n\nHi caratdeuls! We will be giving away this hand ban…
## 8385                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8386                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8387                              RT @haoluvxr: hi! i’ll be giving away some freebies on be the sun in bulacan d-day! 💚🧡\n\n- mbf, like &amp; rt this tweet (ෆ˙ᵕ˙ෆ)♡\n- will try to…
## 8388                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 8389                           RT @hansollieee: 🧵 List of korean articles called seventeen with "Self-Producing Idol (자체제작 아이돌)" since 2015 ; a thread :)\n\n@pledis_17 #SEV…
## 8390                                 RT @hobisglow_: [ #BeTheSuninBULACAN Quick Giveaway ☀️ ]\n\n• 1 UBC Premium\n• Can also give ₱200 for Transpo/LNPH’s shuttle fee\n• RT this twe…
## 8391                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 8392                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 8393                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8394                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 8395                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8396                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8397                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 8398                            RT @_popavenue: #BETSinBulacan\n ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for BeTS in Bulacan! \n\n✨r…
## 8399                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8400                             RT @saturnalyia: Faking It\n\n🖤 seventeen - gyuhan\n🖤 ~60k words - T rating\n🖤 canonverse, jeonghan pov\n🖤 fake dating / pr relationship\n\n🔗 link…
## 8401                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 8402                       RT @seokhooncart: 「 #seokhoonsells: wts • lfb  」\n\ndokyeom dk photocards\n\n— 13,500php AS SET\n— onhand\n— https://t.co/AXCaI5XJLu for t&amp;cs\n— c…
## 8403                              RT @elluminous_: SEVENTEEN BE THE SUN IN BULACAN FREEBIES💙💖\n\nWe'll be giving away freebies December 17! 🫶🏼\n\n🌟 limited quantity only! \n\nTime…
## 8404                                          RT @americaprince__: 𝘗𝘏𝘖𝘛𝘖𝘉𝘖𝘛𝘏 𝘞𝘐𝘛𝘏 𝘏𝘐𝘔 📸\n\n#CSD #CaratSelcaDay #JOSHUA #조슈아 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/k1F4VBvIhp
## 8405                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8406                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8407                             RT @SVT_stagram: [#DK 📸 Instagram]\n221216 dk_is_dokyeom \n\n➸ A pile of white snow🤍\n\n#도겸 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wMhfMHV6yL
## 8408                                 RT @shuareads: Hello to my fellow joshushushu &amp; couprang! i will be giving away limited cheolshua/cheolsoo freebies on d-day! 🍒🦌 will also…
## 8409                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 8410                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 8411                                  RT @610cIub: hold on let me put my glasses on to get a better view of my world \n\n#CSD #cartaselcaday #SEVENTEEN #JUN #JUNHUI https://t.co/h…
## 8412                    RT @KByexxArbi: 💎SEVENTEEN Be The Sun in Bulacan💎\n 》FREEBIES《\n\nWHEN &amp; WHERE: TBA\n\n✨ Limited freebies only\n✨ like and retweet to spread\n✨ ta…
## 8413                                RT @eysvtcarat: ✨ BeTS in Bulacan SEVENTEEN Fan Support ✨\n\nHi, I will be giving away paper goods, printed salonpas patches, snacks, and off…
## 8414                                                                    RT @koreansales_twt: &lt;Face the Sun&gt; by #SEVENTEEN has surpassed 3 million copies sold on Circle Chart.
## 8415                              RT @sarahoshuji: ✨#Seventeen Be The Sun in Bulacan Fan Support/Freebies✨\n\nHello Caratdeuls! \n\n@nilaj_tee, @aidan_andrea, and I are giving a…
## 8416                                RT @shuasophy: seventeen be the sun bulacan\n\n🚨 i will be giving away Minwon and Seoksoo  and SVT grad pic freebies for #BeTSinBULACAN \n\n🐶 r…
## 8417                                    RT @BrittanyAlkonis: @SenMikeLee was “callously informed” of @SecDef’s decision on our family’s pay and benefits 17 days ago. For SEVENTEEN…
## 8418                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8419                                                   RT @notdandelion: PUT YOUR MOTHER FUCKER HANDS UP\n\n#CSD #HOSHI #CaratSelcaDay @pledis_17 #SEVENTEEN https://t.co/6lZ5cvS68r
## 8420                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 8421                             RT @lvediaries: 🫧 be the sun in bulacan freebies ✰。゚・\nfan support by @lvediaries 🏄🏻‍♀️🍥\n\n⟡ mbf, like &amp; rt \n⟡ time/loc: TBA \n⟡ limited quant…
## 8422                               RT @tokkibami: #BETSinBulacan #Tokkibami_GA\n ꒰ be the sun in bulacan freebies ꒱\n\ncarats! I will be giving away freebies for BeTS in Bulacan…
## 8423                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8424                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 8425                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8426                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8427                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8428                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8429                               RT @Calli_x06: 💎SEVENTEEN BE THE SUN BULACAN FREEBIES💎\n\nHi carats, I will be giving these on December 17 \n\n- Open for all Carats\n- PLACE AN…
## 8430                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8431                          RT @ofcynotlemon: [HELP RT]\n\n✨ be the sun in bulacan freebies ✨\n\n— 1 hitori janai art print\n— 2x2 stickers\n— candies\n\nlimited quantity only…
## 8432                                   RT @oshiwu: ☀️ ᣞ  ⊹  ݁  seventeen be the sun in bulacan freebie  ❕\n\ni'll be giving away limited caratbong / phone charm and beaded bracelet…
## 8433                                 RT @shuareads: Hello to my fellow joshushushu &amp; couprang! i will be giving away limited cheolshua/cheolsoo freebies on d-day! 🍒🦌 will also…
## 8434                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8435                               RT @tiltonclawson: WTS SEVENTEEN BE THE SUN JKT \nPINK A (1 tix)\nPINK B (2 tix) BOOKED!\nYELLOW B (1 tix)\n\nDi urus sampe fisik, COD venue\nDm…
## 8436                                        RT @deariekyu: come, come into my world 🍓!!!\n\n#CaratSelcaDay #CARAT #csd #SEVENTEEN #JOSHUA #조슈아 @pledis_17 https://t.co/2wfPrMFdiJ
## 8437                             RT @bbkpopstan: ✨Be The Sun Concert Freebies✨\n\n💎 December 17, 2022\n💎 time and location tba!\n\nI'll be giving away wristbands, fans, keychain…
## 8438                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8439                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8440                            RT @thebeauthreads: wts lfb ph help rt \n\n꒰ BATCH 2 SEVENTEEN CARAT BONG POUCH/BAG ꒱\n \n— ₱295 each\n— LIMITED 200 SLOTS ONLY\n— more details o…
## 8441                                   RT @kyoongified: ✦₊˚ SEVENTEEN BE THE SUN in Bulacan\n\nhi hello! @chocohwabs, @8youngkart and i will be giving away some freebies on d-day:…
## 8442                           RT @svtenhypennn: ♥ Be the Sun in Bulacan Freebies ♥\n\nInclu:\n♥ Jun / Svt - Carat Hand banner \n♥ Seventeen Bracelet\n♥ Official &amp; Unoff. PC's…
## 8443                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Singles” nominees\n\n• TXT\n• SEVENTEEN\n• MAMAMOO\n• RADWIMPS\n• BLACKPINK\n• BIGBANG\n• SUPER JUNIOR…
## 8444                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 8445                                                                   RT @shuarandom: fairy joshua and his 4 little doves\n\n#JOSHUA #조슈아 #SEVENTEEN\n\n https://t.co/UhfyawieXf
## 8446                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8447                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8448                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8449                            RT @mownchild: —An art gallery could never be as unique as you.\n\n#CSD #CaratSelcaDay #MINGYU #김민규 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/M…
## 8450                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8451                                  RT @starrijaemoon: BETS IN BULACAN CONCERT FREEBIES ! 💎\nby starrijaemoon\n\nHi Filo CARATs! I will be giving away random #SEVENTEEN handmade…
## 8452                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8453                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8454                                     RT @junhuiprotector: Have this actor junhui while we wait for exclusive fairytale \n#준 #JUN @pledis_17 #SEVENTEEN\nhttps://t.co/gPFnhUFU29
## 8455                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8456                                    RT @breakerenids: ⋆。˚ ❀ begging for you to take my hand wreck my plans, that's my man ˚ ༘♡ ⋆。˚ ꕥ \n#CSD #CARAT_SELCA_DAY #SEVENTEEN #JEONGHA…
## 8457                                RT @kwonushii: ✨BETS IN BULACAN FREEBIES✨\n\nHello, Carats! This is my first time seeing Seventeen, and to celebrate I'm also giving freebies…
## 8458                                  RT @DougJBalloon: So Long, Farewell\n\nElon Musk is the hottest Nazi since Rolf, and he's sent his critics clambering up the Alps to Post and…
## 8459                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8460                                           RT @wenjunhi124: Jun and The 8 Vivi magazine #SEVENTEEN  #Jun #Carat #Junhui #The8 #Minghao #Moon_Jun #JUNHAO https://t.co/k6XM3lcryH
## 8461                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8462                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8463                                RT @tzcarat: I'm praying seventeen's next cb pulls l&amp;r on kcharts, hot on ytb, darling on spotify and face the sun gaon sales 😭 even more w…
## 8464                                RT @changberrie: SEVENTEEN BE THE SUN in BULACAN merchandise + concert freebie by @changberrie \n\n➭ ︎rt to spread\n➭ dec 17\n➭ time/loc: TBA\n➭…
## 8465                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8466                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 8467                                 RT @shuareads: Hello to my fellow joshushushu &amp; couprang! i will be giving away limited cheolshua/cheolsoo freebies on d-day! 🍒🦌 will also…
## 8468                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8469                                RT @soobdragonhoe: No matter what happens \nWe’ll be together\nJust like always🌷\n\n#csd #seventeen #minghao #the8 #CaratSelcaDay @pledis_17 ht…
## 8470                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8471                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 8472                                 RT @boosoonhoon: -ˏˋ SEVENTEEN BE THE SUN IN BULACAN ☀️ ˊˎ-\n— GIVEAWAY 🧡🔥\n\n🗓 exact time and location tba\n🌻 65 sets of hoshi, woozi, and soo…
## 8473                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8474                              RT @yupsheskitten: ✨️GIVEAWAY✨️\n\n UBC PREM TICKET GA\n\n🧡 like and rt \n🧡 drop streaming proof of hot \n🧡 reply: why do you deserve to see #SEV…
## 8475                                   RT @fae_______: In answering a question to fans, Hoshi of Seventeen said that GDRAGON is an artist he likes!❤️ cr. @/hoshzone \n\n#GDRAGON @I…
## 8476                                    RT @CaratLandPH: We have received reports of people sharing videos of SEVENTEEN recorded in places where they shouldn't be disturbed in the…
## 8477                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8478                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 8479                                                                                     RT @luvrshuas: can i get to the yams #CSD #CaratSelcaDay #SEVENTEEN https://t.co/BPyGN1tsLW
## 8480                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8481                       RT @treasure_cart: a little giveaway for #BeTheSunBulacan \n\nFOLLOW us &amp; @teumecarat1213\nRT &amp; LIKE this post..\n\nkamsahamnida...\nSEE YOU ALL…
## 8482                                   RT @bonbonppan: “my heart moves towards you even amidst a whirlwind, and I will reach out to you”\n#CaratSelcaDay #CSD #CARAT_SELCA_DAY #CAR…
## 8483                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8484                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 8485                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8486                       RT @yoonminhoes: ଘ(੭*ˊᵕˋ)੭* Caratdeul!! \nReady na ang candy bar ni seungcheol 🤟🤩\n\n신기방기 뿡뿡방기 lootbags are packed as well! See you there! \n\n*…
## 8487                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8488                                    RT @RodneyEllis: Olivia Julianna is a force of nature. I’m so proud of her and was honored to present her with a resolution at Commissioner…
## 8489                             RT @jww_enthusiast: Now that I know you exist, how do I not love you ~ ♡\n\n#CaratSelcaDay #CSD #CARAT #SEVENTEEN #세븐틴 #WONWOO #원우 @pledis_17…
## 8490                                RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. which is your favorite seventeen's song?\n\n🦌: for me, it's falling for you because i mad…
## 8491                                   RT @CoupsOfMinWon: ☀️ Be The Sun in Bulacan ☀️\n                                  Freebies\n\nCarats!! We will be giving away freebies on d-da…
## 8492                                  RT @rapplerdotcom: AJU NICE! 💎\n\nJust two months after their sold out two-nights show last October, K-pop powerhouse SEVENTEEN is set to per…
## 8493                              RT @sarahoshuji: ✨#Seventeen Be The Sun in Bulacan Fan Support/Freebies✨\n\nHello Caratdeuls! \n\n@nilaj_tee, @aidan_andrea, and I are giving a…
## 8494                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 8495                       RT @treasure_cart: a little giveaway for #BeTheSunBulacan \n\nFOLLOW us &amp; @teumecarat1213\nRT &amp; LIKE this post..\n\nkamsahamnida...\nSEE YOU ALL…
## 8496                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 8497                         RT @choochu07: 🐯Seventeen as Thomasian Graduates PC🐯\n✨Be The Sun in Bulacan Giveaway✨\n\n💗Like &amp; RT to spread\n💙1:1\n💗First few people to appro…
## 8498                              RT @coupseuyah: SEVENTEEN BE THE SUN IN BULACAN GIVEAWAY CLAIMING TWEET \n\n(1) LBA Regular ticket \n\nTweet under this with "mine + bias" \n\nGo…
## 8499                               RT @jhhjfiles: 181217 seventeen star road ep.14\n\nq. how would you describe yourself in 5 words. \n\n🦌: really kind.\n😇: better than shua. http…
## 8500                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8501                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8502                                       RT @the2the8: significant other reveal!! &lt;3\n\n#CaratSelcaDay #CSD #THE8 #디에잇 #SEVENTEEN #세븐틴 @pledis_17 https://t.co/wgaLeJ1oZw
## 8503                         RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 8504                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8505                                     RT @STATIONHEAD: Fans from all over the world came together to stream their favorites this year. Here are the top 10 most streamed artists…
## 8506                                                                                                       RT @cscthnkr: #scoups : that 😗 guy from seventeen https://t.co/TuFP5JhAHA
## 8507                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 8508                                 RT @livenationph: Here are the filters you can use at SEVENTEEN WORLD TOUR [BE THE SUN] - BULACAN 🧡\n\nIG: https://t.co/1sgCk3Z94j\nFB: https:…
## 8509                               RT @kpopBg_ontop: Best-selling male groups in 2022\n\n01. #BTS - 5,704,526\n02. #StrayKids - 5,647,872\n03. #SEVENTEEN - 5,293,660\n04. #NCTDREA…
## 8510                                                 RT @mingyuscIoud: car rides with the boyfriend \n\n#csd #CaratSelcaDay #mingyu #seventeen #민규 #세븐틴 https://t.co/tyNqrrnxVC
## 8511                                     RT @m1n9yu_ku: @starfess Seventeen sama wanna one, sama gfriend. 3 grup ini bikin nangis keder, apalagi svt kek HOW LUCKY I AM BEING THEIR…
## 8512                              RT @jhhjfiles: 181217 seventeen star road ep.14 \n\nq. what's your favorite nickname?\n\n😇: oh ~ shua's nickname \n🦌: shua is my nickname\n😇: why…
## 8513                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 8514                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8515                                   RT @cloudscart: #BETSinBulacan\n ☁️ Be the Sun in Bulacan ADDITIONAL freebies! ☁️\n\nCarats! We will be giving away additional freebies for Be…
## 8516                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8517                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8518                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8519                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8520                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 8521                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 8522                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8523                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8524                                                                 RT @Blossomseason_: 221213 #버논 #세븐틴 #vernon #seventeen\nMy black cat is rockstar.. https://t.co/9evJZZlapu
## 8525                                             RT @dksunshines: saaaturday lunch☁️💛\n\n#DOKYEOM #DK #도겸 #CaratSelcaDay #CSD #SEVENTEEN #세븐틴 @pledis_17 https://t.co/ahL28wywtR
## 8526                                          RT @svt_verse: [#정한’s reply 🌟 221217] 12:10 AM KST\n\n#JEONGHAN: That’s sad\n\n@pledis_17 #SEVENTEEN #세븐틴 https://t.co/EOqIsYtYs5
## 8527                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 8528                                                                      RT @_bubblethe8: D-DAY TO BE THE SUN IN BULACAN ☀️\n\n#SEVENTEEN #세븐틴 @pledis_17 https://t.co/NQ82krJevN
## 8529                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 8530                            RT @fofoth: wts aab seventeen, mostly minghao \ntake all only, boleh sharing.\n\n✅ save packing\n✅ co via oren + gratong dari oren\n✅ nego allow…
## 8531                               RT @cheonsapower: Loeee PH carats! ⭐️ These Seventeen DIY beads will be for ✨giveaway✨on December 17!\n\n- just kindly help like and rt\n- wil…
## 8532                         RT @lowkeyLoeyKai: Something simple for\nSEVENTEEN Be The Sun Additional Show in Jakarta Freebies!\n\n✨GYUCAM: Hand Mirror &amp; Inspired PC✨\n\nSay…
## 8533                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8534                               RT @wonuniii: 🎀~♡Be the Sun in Bulacan Freebie♡~🎀\n\nCarats, I'll be giving away some caratbong ribbon on D-day!!\n\n♡ like and rt this twt\n♡ m…
## 8535                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8536                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8537                                                   RT @elyxeura: The art and the artist 🎨\n\n#CaratSelcaDay #SEVENTEEN\n#세븐틴 #THE8 #디에잇 @pledis_17 https://t.co/Kn13F3S7SP
## 8538                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8539                                                      RT @billboard: Here's when #SEVENTEEN’s Vernon is dropping his debut solo mixtape, 'Black Eye!' 👏  https://t.co/rAAL94EhlG
## 8540                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8541                                                  RT @SvtMembership: [H.B.D] MESSAGE FOR JANUARY CARAT 💎\n\n#MINGYU #민규 #DINO #디노 #SEVENTEEN #세븐틴 https://t.co/RLrI7UijOT
## 8542                        RT @selle_024: ✨ Be the Sun in Bulacan freebies! ✨\n\nCarats! We will be giving away some freebies for \nBeTS in Bulacan! \n\n✨rt &amp; like this tw…
## 8543                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8544                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8545                               RT @lmkonlyfans: ✵ seventeen be the sun in bulacan freebies ✵\n\n𓄳 RT and LIKE this tweet\n𓄳 time and loc: tba\n𓄳 follow me for more updates!\n𓄳…
## 8546                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 8547                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8548                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8549                                  RT @seventeenphil: SEVENTEEN WORLD TOUR 'BE THE SUN IN BULACAN' – Official Fan Projects\n\n ※ These fan projects are approved by the Artist's…
## 8550                                 RT @suphoshi: A little over dressed, but that’s okay - Hoshi thought I was so cute 💞\n\n#CSD #CaratSelcaDay #SEVENTEEN\n#HOSHI https://t.co/Zh…
## 8551                              RT @dokyeomfiles: Okay, how to react in this kind of virtual attack from DK?? 🙈\n\n#SEVENTEEN #세븐틴 \n#도겸 #DOKYEOM #DK https://t.co/1xkkyu5Z5w
## 8552                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 8553                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8554                                  RT @kwonyien: pasok mga suki eme here's a seventeen art inspired by ph's sari-sari store! ( see thread ) #seventeenfanart \n\ni might give aw…
## 8555                      RT @6bpzz: THE 32ND SEOUL MUSIC AWARDS GIVEAWAY 🗳\n500 HEARTS💛\nRULES 🗳\nLIKE&amp;RT&amp;SHARE (1K LIKES)🗣\nFOLLOW @6bpzz \nPROOF 👇\n#JIN #ATEEZ #blackpi…
## 8556                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 8557                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8558                                  RT @iiamjanne: ✧ SEVENTEEN BE THE SUN IN MANILA FREEBIES ✧\n\n— We will be giving away 100 sets of MINWON, SEOKSOO, AND JEONGCHEOL hand banne…
## 8559                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8560                                                           RT @Tan_ge_Rine: 221210 LA3C HQ\n\n🪐\n\n#세븐틴 #SEVENTEEN         \n#승관 #SEUNGKWAN #부승관 https://t.co/9Bc8m5bd2c
## 8561                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8562                                                 RT @minghaolicious: me &amp; my lovely boo ✨🧡\n\n#CaratSelcaDay #CSD #SEUNGKWAN #SEVENTEEN  @pledis_17 https://t.co/FejOPXfpLp
## 8563                                RT @jhhjfiles: 181217 seventeen star road \n\nq. what do you do better than the person sitting next to you? \n\n😇: i think i'm better looking t…
## 8564                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 8565                                    RT @soonhanz: isn't cute how carats are going to watch seventeen on the seventeenth day of december 🥹🫶🏼 we're spending a day with seventeen…
## 8566                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8567                                RT @CaratLandPH: SEVENTEEN 'Be the Sun' in Bulacan\n🔶 UPDATED FAN PROJECTS 🔶\n(Please RETWEET)\n\nNew Timing of the Fan Projects: Attendees nee…
## 8568                                                             RT @_haofolder_: This going seventeen ep where Minghao literally traveled through the air🙃\nhttps://t.co/992kFbMlMV
## 8569                                   RT @jeongshuah: jeonghan and joshua have always been a stunning duo in seventeen magazine photoshoots ! #조슈아 #정한 https://t.co/1pO5sXrwxR
## 8570                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8571                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8572                      RT @moonjun_0906: The video of Junhui Airport that must be watched today, he is so handsome🥵🥵🥵\n#SEVENTEEN #세븐틴 #JUN #文俊辉 #준 #문준휘  #ジュン http…
## 8573                                 RT @hobisglow_: [ #BeTheSuninBULACAN Quick Giveaway ☀️ ]\n\n• 1 UBC Premium\n• Can also give ₱200 for Transpo/LNPH’s shuttle fee\n• RT this twe…
## 8574                                    RT @kpophappenings_: when that kpop girl was a fan of seventeen and even attended seventeen’s concert in 2017 as a fan and now she gave the…
## 8575                                    RT @bewildered_inks: Hi, Carats! We will be giving away banners, sticker packs and unofficial pilot ids of SVT as freebies on BeTS in Bulac…
## 8576                                  RT @schoi_scoups: SEVENTEEN Be The Sun Bulacan giveaway!! #BeTheSuninBULACAN #BeTSinBULACAN\n\n- sector 17 sealed albums\n- Dream cd unsealed…
## 8577                                                                         RT @j1gyus: your fave tigers🐯\n#CaratSelcaDay #CSD #HOSHI #SEVENTEEN @pledis_17 https://t.co/4jlJJ1KvyG
## 8578                               RT @kkoccherry: ✧*。SEVENTEEN BE THE SUN IN BULACAN\n\n˙❥˙๑ HAND BANNERS FREEBIES FOR SEVENTEEN AND HOSHI ๑˙❥˙\n\nHiii! I'll be giving away free…
## 8579                                           RT @MinnieS1713: [SCAN] Seventeen 2020 Dome Tour trading card\n#SEVENTEEN #세븐틴 #Joshua #조슈아 #ジョシュア https://t.co/YHQy5TSyD2
## 8580                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8581                                 RT @comebackkidph: seventeen keychains FREEBIES for tomorrow — BOYFRIEND AND BABY PICTURES 🤍🥰\n\n💎 Just RT this tweet and say hi when\nyou see…
## 8582                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8583                                                                               RT @sincerity_dino: 221213 AAA\n❤️‍🔥HOT❤️‍🔥\n#세븐틴 #SEVENTEEN \n#디노 #DINO https://t.co/VaIn7doKGM
## 8584                                           RT @Koreaboo: Producer BUMZU Locked Himself In A Room For 2 Days To Create One Of SEVENTEEN’s Biggest Hits\n\nhttps://t.co/g9pe5J7yOB
## 8585                                                                                 RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/VF6s8nPAB0
## 8586                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8587                              RT @ararunamakie: ‼️ SEOUL MUSIC AWARDS ‼️\nMAIN CATEGORY\n\n🏆500💛/5 VOTES\n✅LIKE AND RETWEET\n✅ FOLLOW @ararunamakie \n#JIN #JHOPE #TREASURE #SE…
## 8588                      RT @loreyneleeey: ✨BE THE SUN IN BULACAN FREEBIES✨\n\n•Magnetic Bookmark•\n•Seokhao Handbanner•\n\n-Like &amp; Rt this tweet\n-Strictly 1:1\n\nReady na…
## 8589                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8590                                                     RT @svtcontents: @pledis_17 🖼️ 221213 SEVENTEEN at 2022 Asia Artist Awards Red Carpet Special Photos https://t.co/pfsetiXRRg
## 8591                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8592                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8593                          RT @hae_tiger15: (っ◔◡◔)っ ♥ Rage BeTS Bulacan Freebies♥\n\n- like and rwt \n- strictly 1:1\n- open for trades just dm me &lt;333 \n- limited lang hu…
## 8594                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8595                                                         RT @tinkswonu: wonwoo &amp; mingyu for seventeen vivi magazine preview! https://t.co/DUtf3tN0gE https://t.co/VF6s8nPAB0
## 8596                              RT @jeonghanniieee: ✨ SEVENTEEN BE THE SUN BULACAN FREEBIES ✨\n\nHello I will be giving away some freebies tomorrow!! 🫶🏻\n\n+Location and Time:…
## 8597                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8598                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8599                                                                       RT @Bitteriejeon: 👍✌️couple..\n\n#CaratSelcaDay #CSD #SEVENTEEN #WONWOO @pledis_17 https://t.co/TTxrwVW3ah
## 8600                                  RT @mindset_dive: It’s finally here - JOSHUA’s 12-part Mindset Collection is out NOW! Start listening on the Mindset app today! \n\nhttps://t…
## 8601                                             RT @cherishthe17: Seventeen is now the #5 most followed singer on Mel🍈n  🎉\n\n@Pledis_17 #세븐틴 #SEVENTEEN https://t.co/wrZAn8d1fg
## 8602                                    RT @svtcharts: Congratulations to the K-Pop Performance Powerhouse #SEVENTEEN for winning Artist of the Year (Daesang) on AAA for 2 years i…
## 8603                                RT @kalatcarat: help rt \n🎀 seventeen bets bulacan freebies! \nwe’ll be giving away alcohol for your sanitizing needs! 🫧 \n\nsee photos for mor…
## 8604                                    RT @SeokgyuSunki_11: I won't be posting any mechanics, just say hi and will give you freebies na! I will be giving away Hand Banners, Lenti…
## 8605                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 8606                                               RT @soompi: #SEVENTEEN's #Vernon Announces Solo Debut Mixtape + Drops 1st Teaser\nhttps://t.co/PM6Y0AKMMe https://t.co/oIoC7poWIM
## 8607                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8608                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8609                            RT @ChinaMusicData: 🇨🇳 “Best Selling Group — Albums” nominees\n\n• Red Velvet\n• GIDLE\n• BLACKPINK\n• NCT DREAM\n• SEVENTEEN\n• BTS\n• Girls’ Gene…
## 8610                              RT @miss_svtmafia: ✨ BE THE SUN IN BULACAN FREEBIES ✨\n\nI'll be giving out banners and ribbon bracelets tomorrow! :)\nTime: Morning\nLocation:…
## 8611                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8612                                                                                      RT @wonhuiful: jun and minghao in seventeen vivi magazine preview! https://t.co/rR1Hkq1Xyk
## 8613                                 RT @PROWDINO: SEVENTEEN BE THE SUN IN BULACAN\n✧*。jeonghan and dino hand banner giveaway\n\nwill giveaway hand banners on d-day, open gif for…
## 8614                                    RT @svtcontents: @pledis_17 And here they are.. SEVENTEEN is now back in the Philippines as 2022 SEVENTEEN WORLD TOUR [BE THE SUN] in BULAC…
## 8615                                                                                          RT @miwon17_: Seventeen pairs for ViVi magazine.\n🫂 cutest✨💖💙 https://t.co/GoahjFZX4e
## 8616                                  RT @dailygyushua: [daily dose of #GYUSHUA]\n\ngyu have the need to walks the distance toward his beloved hyung to hug him when he did somethi…
## 8617                                     RT @17dayph: SEVENTEEN\n7th Anniversary Cafe Open.\n\n📍WouldULike EWM\n\n#YourHappySmileIsMyDay\n#HappySEVENTEENDay https://t.co/fBfPWoqt8L
## 8618                                                                                                   RT @wonubliss: seventeen's quarantine life @pledis_17 https://t.co/T5X3OeB9vj
## 8619                                                         RT @caramelchiiato: sunset state of mind \n\n#CSD #CaratSelcaDay #WONWOO\n#SEVENTEEN @pledis_17 https://t.co/Au3nsVI2md
## 8620                              RT @miwon17_: Q. how does cheol save members name/contacts in phone\n😇SVT__, seventeen__\n🐶my dongsaeng\n🐱dongsaeng\n🐶17\n😇member dongsaeng\n🍒its…
## 8621                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8622                               RT @miss_svtmafia: #BeTSinBULACAN #BeTheSuninBULACAN @pledis_17 \n\n(2) UBC Regular Ticket Giveaway\n\n1. Must be following me\n2. RT and LIKE t…
## 8623                          RT @pledis_17: SEVENTEEN 2023 SEASON'S GREETINGS PREVIEW Cuts #2\n\n*Release\n[GL] 2022.12.15 (THU)\n[JP] 2022.12.26 (MON)\n\n#SEVENTEEN #세븐틴\n#SV…
## 8624                             RT @jenocivic: 💫 GIVEAWAY KPOP ALBUM SEVENTEEN NCT ENHYPEN NMIXX SUPERM WAYV 💫\n\nRULES ; RT tweet ini &amp; tweet dibawah, follow juga yaa \n🐣 en…
## 8625                                          RT @1nlovewtae: When I'm with you there is no one else ! \n\n#CaratSelcaDay #CSD #JOSHUA #SEVENTEEN @pledis_17 https://t.co/C0slY1jhzC
## 8626                                                                                                           RT @mindset_dive: Check out JOSHUA's MINDSET! https://t.co/QLfRg5qq70
##                  created isRetweet    Created_At_Round
## 1    2022-12-16 23:59:59      TRUE 2022-12-17 00:00:00
## 2    2022-12-16 23:59:55      TRUE 2022-12-17 00:00:00
## 3    2022-12-16 23:59:49      TRUE 2022-12-17 00:00:00
## 4    2022-12-16 23:59:48      TRUE 2022-12-17 00:00:00
## 5    2022-12-16 23:59:45      TRUE 2022-12-17 00:00:00
## 6    2022-12-16 23:59:45      TRUE 2022-12-17 00:00:00
## 7    2022-12-16 23:59:43      TRUE 2022-12-17 00:00:00
## 8    2022-12-16 23:59:43      TRUE 2022-12-17 00:00:00
## 9    2022-12-16 23:59:42      TRUE 2022-12-17 00:00:00
## 10   2022-12-16 23:59:42      TRUE 2022-12-17 00:00:00
## 11   2022-12-16 23:59:38      TRUE 2022-12-17 00:00:00
## 12   2022-12-16 23:59:37      TRUE 2022-12-17 00:00:00
## 13   2022-12-16 23:59:35      TRUE 2022-12-17 00:00:00
## 14   2022-12-16 23:59:33      TRUE 2022-12-17 00:00:00
## 15   2022-12-16 23:59:33      TRUE 2022-12-17 00:00:00
## 16   2022-12-16 23:59:31      TRUE 2022-12-17 00:00:00
## 17   2022-12-16 23:59:30      TRUE 2022-12-17 00:00:00
## 18   2022-12-16 23:59:27      TRUE 2022-12-17 00:00:00
## 19   2022-12-16 23:59:25      TRUE 2022-12-17 00:00:00
## 20   2022-12-16 23:59:23      TRUE 2022-12-17 00:00:00
## 21   2022-12-16 23:59:21      TRUE 2022-12-17 00:00:00
## 22   2022-12-16 23:59:20      TRUE 2022-12-17 00:00:00
## 23   2022-12-16 23:59:15      TRUE 2022-12-17 00:00:00
## 24   2022-12-16 23:59:13      TRUE 2022-12-17 00:00:00
## 25   2022-12-16 23:59:12      TRUE 2022-12-17 00:00:00
## 26   2022-12-16 23:59:11      TRUE 2022-12-17 00:00:00
## 27   2022-12-16 23:59:11      TRUE 2022-12-17 00:00:00
## 28   2022-12-16 23:59:07      TRUE 2022-12-17 00:00:00
## 29   2022-12-16 23:59:07      TRUE 2022-12-17 00:00:00
## 30   2022-12-16 23:59:06      TRUE 2022-12-17 00:00:00
## 31   2022-12-16 23:59:05      TRUE 2022-12-17 00:00:00
## 32   2022-12-16 23:59:04      TRUE 2022-12-17 00:00:00
## 33   2022-12-16 23:59:02      TRUE 2022-12-17 00:00:00
## 34   2022-12-16 23:59:02      TRUE 2022-12-17 00:00:00
## 35   2022-12-16 23:59:01      TRUE 2022-12-17 00:00:00
## 36   2022-12-16 23:58:57      TRUE 2022-12-17 00:00:00
## 37   2022-12-16 23:58:55      TRUE 2022-12-17 00:00:00
## 38   2022-12-16 23:58:55      TRUE 2022-12-17 00:00:00
## 39   2022-12-16 23:58:53      TRUE 2022-12-17 00:00:00
## 40   2022-12-16 23:58:52      TRUE 2022-12-17 00:00:00
## 41   2022-12-16 23:58:49      TRUE 2022-12-17 00:00:00
## 42   2022-12-16 23:58:48      TRUE 2022-12-17 00:00:00
## 43   2022-12-16 23:58:47      TRUE 2022-12-17 00:00:00
## 44   2022-12-16 23:58:46      TRUE 2022-12-17 00:00:00
## 45   2022-12-16 23:58:44      TRUE 2022-12-17 00:00:00
## 46   2022-12-16 23:58:39      TRUE 2022-12-17 00:00:00
## 47   2022-12-16 23:58:36      TRUE 2022-12-17 00:00:00
## 48   2022-12-16 23:58:34      TRUE 2022-12-17 00:00:00
## 49   2022-12-16 23:58:34      TRUE 2022-12-17 00:00:00
## 50   2022-12-16 23:58:34      TRUE 2022-12-17 00:00:00
## 51   2022-12-16 23:58:34      TRUE 2022-12-17 00:00:00
## 52   2022-12-16 23:58:33      TRUE 2022-12-17 00:00:00
## 53   2022-12-16 23:58:28      TRUE 2022-12-17 00:00:00
## 54   2022-12-16 23:58:23      TRUE 2022-12-17 00:00:00
## 55   2022-12-16 23:58:22      TRUE 2022-12-17 00:00:00
## 56   2022-12-16 23:58:21      TRUE 2022-12-17 00:00:00
## 57   2022-12-16 23:58:19      TRUE 2022-12-17 00:00:00
## 58   2022-12-16 23:58:18      TRUE 2022-12-17 00:00:00
## 59   2022-12-16 23:58:16      TRUE 2022-12-17 00:00:00
## 60   2022-12-16 23:58:16      TRUE 2022-12-17 00:00:00
## 61   2022-12-16 23:58:15      TRUE 2022-12-17 00:00:00
## 62   2022-12-16 23:58:10      TRUE 2022-12-17 00:00:00
## 63   2022-12-16 23:58:04      TRUE 2022-12-17 00:00:00
## 64   2022-12-16 23:58:03      TRUE 2022-12-17 00:00:00
## 65   2022-12-16 23:58:01      TRUE 2022-12-17 00:00:00
## 66   2022-12-16 23:57:59      TRUE 2022-12-17 00:00:00
## 67   2022-12-16 23:57:53      TRUE 2022-12-17 00:00:00
## 68   2022-12-16 23:57:52      TRUE 2022-12-17 00:00:00
## 69   2022-12-16 23:57:50      TRUE 2022-12-17 00:00:00
## 70   2022-12-16 23:57:50      TRUE 2022-12-17 00:00:00
## 71   2022-12-16 23:57:47      TRUE 2022-12-17 00:00:00
## 72   2022-12-16 23:57:46      TRUE 2022-12-17 00:00:00
## 73   2022-12-16 23:57:41      TRUE 2022-12-17 00:00:00
## 74   2022-12-16 23:57:41      TRUE 2022-12-17 00:00:00
## 75   2022-12-16 23:57:40      TRUE 2022-12-17 00:00:00
## 76   2022-12-16 23:57:39      TRUE 2022-12-17 00:00:00
## 77   2022-12-16 23:57:38      TRUE 2022-12-17 00:00:00
## 78   2022-12-16 23:57:38      TRUE 2022-12-17 00:00:00
## 79   2022-12-16 23:57:33      TRUE 2022-12-17 00:00:00
## 80   2022-12-16 23:57:30      TRUE 2022-12-17 00:00:00
## 81   2022-12-16 23:57:30      TRUE 2022-12-17 00:00:00
## 82   2022-12-16 23:57:26      TRUE 2022-12-17 00:00:00
## 83   2022-12-16 23:57:26      TRUE 2022-12-17 00:00:00
## 84   2022-12-16 23:57:25      TRUE 2022-12-17 00:00:00
## 85   2022-12-16 23:57:24      TRUE 2022-12-17 00:00:00
## 86   2022-12-16 23:57:18      TRUE 2022-12-17 00:00:00
## 87   2022-12-16 23:57:14      TRUE 2022-12-17 00:00:00
## 88   2022-12-16 23:57:13      TRUE 2022-12-17 00:00:00
## 89   2022-12-16 23:57:11      TRUE 2022-12-17 00:00:00
## 90   2022-12-16 23:57:11      TRUE 2022-12-17 00:00:00
## 91   2022-12-16 23:57:10      TRUE 2022-12-17 00:00:00
## 92   2022-12-16 23:57:10      TRUE 2022-12-17 00:00:00
## 93   2022-12-16 23:57:08      TRUE 2022-12-17 00:00:00
## 94   2022-12-16 23:57:03      TRUE 2022-12-17 00:00:00
## 95   2022-12-16 23:57:00      TRUE 2022-12-17 00:00:00
## 96   2022-12-16 23:56:58      TRUE 2022-12-17 00:00:00
## 97   2022-12-16 23:56:57      TRUE 2022-12-17 00:00:00
## 98   2022-12-16 23:56:57      TRUE 2022-12-17 00:00:00
## 99   2022-12-16 23:56:56      TRUE 2022-12-17 00:00:00
## 100  2022-12-16 23:56:55      TRUE 2022-12-17 00:00:00
## 101  2022-12-16 23:56:54      TRUE 2022-12-17 00:00:00
## 102  2022-12-16 23:56:53      TRUE 2022-12-17 00:00:00
## 103  2022-12-16 23:56:52      TRUE 2022-12-17 00:00:00
## 104  2022-12-16 23:56:52      TRUE 2022-12-17 00:00:00
## 105  2022-12-16 23:56:51      TRUE 2022-12-17 00:00:00
## 106  2022-12-16 23:56:51      TRUE 2022-12-17 00:00:00
## 107  2022-12-16 23:56:51      TRUE 2022-12-17 00:00:00
## 108  2022-12-16 23:56:50      TRUE 2022-12-17 00:00:00
## 109  2022-12-16 23:56:47      TRUE 2022-12-17 00:00:00
## 110  2022-12-16 23:56:47      TRUE 2022-12-17 00:00:00
## 111  2022-12-16 23:56:45      TRUE 2022-12-17 00:00:00
## 112  2022-12-16 23:56:43      TRUE 2022-12-17 00:00:00
## 113  2022-12-16 23:56:39      TRUE 2022-12-17 00:00:00
## 114  2022-12-16 23:56:38      TRUE 2022-12-17 00:00:00
## 115  2022-12-16 23:56:37      TRUE 2022-12-17 00:00:00
## 116  2022-12-16 23:56:34      TRUE 2022-12-17 00:00:00
## 117  2022-12-16 23:56:32      TRUE 2022-12-17 00:00:00
## 118  2022-12-16 23:56:26      TRUE 2022-12-17 00:00:00
## 119  2022-12-16 23:56:24      TRUE 2022-12-17 00:00:00
## 120  2022-12-16 23:56:24      TRUE 2022-12-17 00:00:00
## 121  2022-12-16 23:56:21      TRUE 2022-12-17 00:00:00
## 122  2022-12-16 23:56:21      TRUE 2022-12-17 00:00:00
## 123  2022-12-16 23:56:20      TRUE 2022-12-17 00:00:00
## 124  2022-12-16 23:56:19      TRUE 2022-12-17 00:00:00
## 125  2022-12-16 23:56:18      TRUE 2022-12-17 00:00:00
## 126  2022-12-16 23:56:14      TRUE 2022-12-17 00:00:00
## 127  2022-12-16 23:56:12      TRUE 2022-12-17 00:00:00
## 128  2022-12-16 23:56:11      TRUE 2022-12-17 00:00:00
## 129  2022-12-16 23:56:10      TRUE 2022-12-17 00:00:00
## 130  2022-12-16 23:56:10      TRUE 2022-12-17 00:00:00
## 131  2022-12-16 23:56:08      TRUE 2022-12-17 00:00:00
## 132  2022-12-16 23:56:06      TRUE 2022-12-17 00:00:00
## 133  2022-12-16 23:56:01      TRUE 2022-12-17 00:00:00
## 134  2022-12-16 23:56:00      TRUE 2022-12-17 00:00:00
## 135  2022-12-16 23:56:00      TRUE 2022-12-17 00:00:00
## 136  2022-12-16 23:55:56      TRUE 2022-12-17 00:00:00
## 137  2022-12-16 23:55:55      TRUE 2022-12-17 00:00:00
## 138  2022-12-16 23:55:54      TRUE 2022-12-17 00:00:00
## 139  2022-12-16 23:55:53      TRUE 2022-12-17 00:00:00
## 140  2022-12-16 23:55:48      TRUE 2022-12-17 00:00:00
## 141  2022-12-16 23:55:46      TRUE 2022-12-17 00:00:00
## 142  2022-12-16 23:55:42      TRUE 2022-12-17 00:00:00
## 143  2022-12-16 23:55:36      TRUE 2022-12-17 00:00:00
## 144  2022-12-16 23:55:32      TRUE 2022-12-17 00:00:00
## 145  2022-12-16 23:55:31      TRUE 2022-12-17 00:00:00
## 146  2022-12-16 23:55:29      TRUE 2022-12-17 00:00:00
## 147  2022-12-16 23:55:28      TRUE 2022-12-17 00:00:00
## 148  2022-12-16 23:55:27      TRUE 2022-12-17 00:00:00
## 149  2022-12-16 23:55:27      TRUE 2022-12-17 00:00:00
## 150  2022-12-16 23:55:21      TRUE 2022-12-17 00:00:00
## 151  2022-12-16 23:55:17      TRUE 2022-12-17 00:00:00
## 152  2022-12-16 23:55:16      TRUE 2022-12-17 00:00:00
## 153  2022-12-16 23:55:16      TRUE 2022-12-17 00:00:00
## 154  2022-12-16 23:55:13      TRUE 2022-12-17 00:00:00
## 155  2022-12-16 23:55:12      TRUE 2022-12-17 00:00:00
## 156  2022-12-16 23:55:11      TRUE 2022-12-17 00:00:00
## 157  2022-12-16 23:55:09      TRUE 2022-12-17 00:00:00
## 158  2022-12-16 23:55:05      TRUE 2022-12-17 00:00:00
## 159  2022-12-16 23:55:04      TRUE 2022-12-17 00:00:00
## 160  2022-12-16 23:55:03      TRUE 2022-12-17 00:00:00
## 161  2022-12-16 23:55:01      TRUE 2022-12-17 00:00:00
## 162  2022-12-16 23:55:00      TRUE 2022-12-17 00:00:00
## 163  2022-12-16 23:55:00      TRUE 2022-12-17 00:00:00
## 164  2022-12-16 23:54:59      TRUE 2022-12-17 00:00:00
## 165  2022-12-16 23:54:58      TRUE 2022-12-17 00:00:00
## 166  2022-12-16 23:54:57      TRUE 2022-12-17 00:00:00
## 167  2022-12-16 23:54:53      TRUE 2022-12-17 00:00:00
## 168  2022-12-16 23:54:50      TRUE 2022-12-17 00:00:00
## 169  2022-12-16 23:54:49      TRUE 2022-12-17 00:00:00
## 170  2022-12-16 23:54:46      TRUE 2022-12-17 00:00:00
## 171  2022-12-16 23:54:46      TRUE 2022-12-17 00:00:00
## 172  2022-12-16 23:54:43      TRUE 2022-12-17 00:00:00
## 173  2022-12-16 23:54:41      TRUE 2022-12-17 00:00:00
## 174  2022-12-16 23:54:41      TRUE 2022-12-17 00:00:00
## 175  2022-12-16 23:54:37      TRUE 2022-12-17 00:00:00
## 176  2022-12-16 23:54:37      TRUE 2022-12-17 00:00:00
## 177  2022-12-16 23:54:35      TRUE 2022-12-17 00:00:00
## 178  2022-12-16 23:54:31      TRUE 2022-12-17 00:00:00
## 179  2022-12-16 23:54:29      TRUE 2022-12-17 00:00:00
## 180  2022-12-16 23:54:28      TRUE 2022-12-17 00:00:00
## 181  2022-12-16 23:54:25      TRUE 2022-12-17 00:00:00
## 182  2022-12-16 23:54:23      TRUE 2022-12-17 00:00:00
## 183  2022-12-16 23:54:22      TRUE 2022-12-17 00:00:00
## 184  2022-12-16 23:54:20      TRUE 2022-12-17 00:00:00
## 185  2022-12-16 23:54:16      TRUE 2022-12-17 00:00:00
## 186  2022-12-16 23:54:14      TRUE 2022-12-17 00:00:00
## 187  2022-12-16 23:54:12      TRUE 2022-12-17 00:00:00
## 188  2022-12-16 23:54:09      TRUE 2022-12-17 00:00:00
## 189  2022-12-16 23:54:06      TRUE 2022-12-17 00:00:00
## 190  2022-12-16 23:54:04      TRUE 2022-12-17 00:00:00
## 191  2022-12-16 23:54:04      TRUE 2022-12-17 00:00:00
## 192  2022-12-16 23:54:02      TRUE 2022-12-17 00:00:00
## 193  2022-12-16 23:53:59      TRUE 2022-12-17 00:00:00
## 194  2022-12-16 23:53:59      TRUE 2022-12-17 00:00:00
## 195  2022-12-16 23:53:54      TRUE 2022-12-17 00:00:00
## 196  2022-12-16 23:53:54      TRUE 2022-12-17 00:00:00
## 197  2022-12-16 23:53:53      TRUE 2022-12-17 00:00:00
## 198  2022-12-16 23:53:50      TRUE 2022-12-17 00:00:00
## 199  2022-12-16 23:53:47      TRUE 2022-12-17 00:00:00
## 200  2022-12-16 23:53:46      TRUE 2022-12-17 00:00:00
## 201  2022-12-16 23:53:46      TRUE 2022-12-17 00:00:00
## 202  2022-12-16 23:53:45      TRUE 2022-12-17 00:00:00
## 203  2022-12-16 23:53:43      TRUE 2022-12-17 00:00:00
## 204  2022-12-16 23:53:42      TRUE 2022-12-17 00:00:00
## 205  2022-12-16 23:53:42      TRUE 2022-12-17 00:00:00
## 206  2022-12-16 23:53:35      TRUE 2022-12-17 00:00:00
## 207  2022-12-16 23:53:34      TRUE 2022-12-17 00:00:00
## 208  2022-12-16 23:53:31      TRUE 2022-12-17 00:00:00
## 209  2022-12-16 23:53:31      TRUE 2022-12-17 00:00:00
## 210  2022-12-16 23:53:29      TRUE 2022-12-17 00:00:00
## 211  2022-12-16 23:53:28      TRUE 2022-12-17 00:00:00
## 212  2022-12-16 23:53:27      TRUE 2022-12-17 00:00:00
## 213  2022-12-16 23:53:26      TRUE 2022-12-17 00:00:00
## 214  2022-12-16 23:53:23      TRUE 2022-12-17 00:00:00
## 215  2022-12-16 23:53:20      TRUE 2022-12-17 00:00:00
## 216  2022-12-16 23:53:16      TRUE 2022-12-17 00:00:00
## 217  2022-12-16 23:53:16      TRUE 2022-12-17 00:00:00
## 218  2022-12-16 23:53:13      TRUE 2022-12-17 00:00:00
## 219  2022-12-16 23:53:11      TRUE 2022-12-17 00:00:00
## 220  2022-12-16 23:53:10      TRUE 2022-12-17 00:00:00
## 221  2022-12-16 23:53:10      TRUE 2022-12-17 00:00:00
## 222  2022-12-16 23:53:08      TRUE 2022-12-17 00:00:00
## 223  2022-12-16 23:53:07      TRUE 2022-12-17 00:00:00
## 224  2022-12-16 23:53:07      TRUE 2022-12-17 00:00:00
## 225  2022-12-16 23:53:05      TRUE 2022-12-17 00:00:00
## 226  2022-12-16 23:53:05      TRUE 2022-12-17 00:00:00
## 227  2022-12-16 23:53:03      TRUE 2022-12-17 00:00:00
## 228  2022-12-16 23:53:03      TRUE 2022-12-17 00:00:00
## 229  2022-12-16 23:53:00      TRUE 2022-12-17 00:00:00
## 230  2022-12-16 23:52:59      TRUE 2022-12-17 00:00:00
## 231  2022-12-16 23:52:59      TRUE 2022-12-17 00:00:00
## 232  2022-12-16 23:52:59      TRUE 2022-12-17 00:00:00
## 233  2022-12-16 23:52:59      TRUE 2022-12-17 00:00:00
## 234  2022-12-16 23:52:56      TRUE 2022-12-17 00:00:00
## 235  2022-12-16 23:52:56      TRUE 2022-12-17 00:00:00
## 236  2022-12-16 23:52:55      TRUE 2022-12-17 00:00:00
## 237  2022-12-16 23:52:55      TRUE 2022-12-17 00:00:00
## 238  2022-12-16 23:52:54      TRUE 2022-12-17 00:00:00
## 239  2022-12-16 23:52:51      TRUE 2022-12-17 00:00:00
## 240  2022-12-16 23:52:48      TRUE 2022-12-17 00:00:00
## 241  2022-12-16 23:52:45      TRUE 2022-12-17 00:00:00
## 242  2022-12-16 23:52:45      TRUE 2022-12-17 00:00:00
## 243  2022-12-16 23:52:42      TRUE 2022-12-17 00:00:00
## 244  2022-12-16 23:52:42      TRUE 2022-12-17 00:00:00
## 245  2022-12-16 23:52:42      TRUE 2022-12-17 00:00:00
## 246  2022-12-16 23:52:41      TRUE 2022-12-17 00:00:00
## 247  2022-12-16 23:52:40      TRUE 2022-12-17 00:00:00
## 248  2022-12-16 23:52:37      TRUE 2022-12-17 00:00:00
## 249  2022-12-16 23:52:36      TRUE 2022-12-17 00:00:00
## 250  2022-12-16 23:52:35      TRUE 2022-12-17 00:00:00
## 251  2022-12-16 23:52:34      TRUE 2022-12-17 00:00:00
## 252  2022-12-16 23:52:34      TRUE 2022-12-17 00:00:00
## 253  2022-12-16 23:52:33      TRUE 2022-12-17 00:00:00
## 254  2022-12-16 23:52:33      TRUE 2022-12-17 00:00:00
## 255  2022-12-16 23:52:33      TRUE 2022-12-17 00:00:00
## 256  2022-12-16 23:52:32      TRUE 2022-12-17 00:00:00
## 257  2022-12-16 23:52:24      TRUE 2022-12-17 00:00:00
## 258  2022-12-16 23:52:21      TRUE 2022-12-17 00:00:00
## 259  2022-12-16 23:52:19      TRUE 2022-12-17 00:00:00
## 260  2022-12-16 23:52:19      TRUE 2022-12-17 00:00:00
## 261  2022-12-16 23:52:14      TRUE 2022-12-17 00:00:00
## 262  2022-12-16 23:52:12      TRUE 2022-12-17 00:00:00
## 263  2022-12-16 23:52:07      TRUE 2022-12-17 00:00:00
## 264  2022-12-16 23:52:06      TRUE 2022-12-17 00:00:00
## 265  2022-12-16 23:52:06      TRUE 2022-12-17 00:00:00
## 266  2022-12-16 23:52:02      TRUE 2022-12-17 00:00:00
## 267  2022-12-16 23:52:00      TRUE 2022-12-17 00:00:00
## 268  2022-12-16 23:51:56      TRUE 2022-12-17 00:00:00
## 269  2022-12-16 23:51:52      TRUE 2022-12-17 00:00:00
## 270  2022-12-16 23:51:50      TRUE 2022-12-17 00:00:00
## 271  2022-12-16 23:51:48      TRUE 2022-12-17 00:00:00
## 272  2022-12-16 23:51:47      TRUE 2022-12-17 00:00:00
## 273  2022-12-16 23:51:46      TRUE 2022-12-17 00:00:00
## 274  2022-12-16 23:51:46      TRUE 2022-12-17 00:00:00
## 275  2022-12-16 23:51:44      TRUE 2022-12-17 00:00:00
## 276  2022-12-16 23:51:43      TRUE 2022-12-17 00:00:00
## 277  2022-12-16 23:51:38      TRUE 2022-12-17 00:00:00
## 278  2022-12-16 23:51:38      TRUE 2022-12-17 00:00:00
## 279  2022-12-16 23:51:38      TRUE 2022-12-17 00:00:00
## 280  2022-12-16 23:51:37      TRUE 2022-12-17 00:00:00
## 281  2022-12-16 23:51:35      TRUE 2022-12-17 00:00:00
## 282  2022-12-16 23:51:35      TRUE 2022-12-17 00:00:00
## 283  2022-12-16 23:51:28      TRUE 2022-12-17 00:00:00
## 284  2022-12-16 23:51:26      TRUE 2022-12-17 00:00:00
## 285  2022-12-16 23:51:25      TRUE 2022-12-17 00:00:00
## 286  2022-12-16 23:51:23      TRUE 2022-12-17 00:00:00
## 287  2022-12-16 23:51:23      TRUE 2022-12-17 00:00:00
## 288  2022-12-16 23:51:23      TRUE 2022-12-17 00:00:00
## 289  2022-12-16 23:51:22      TRUE 2022-12-17 00:00:00
## 290  2022-12-16 23:51:18      TRUE 2022-12-17 00:00:00
## 291  2022-12-16 23:51:18      TRUE 2022-12-17 00:00:00
## 292  2022-12-16 23:51:18      TRUE 2022-12-17 00:00:00
## 293  2022-12-16 23:51:17      TRUE 2022-12-17 00:00:00
## 294  2022-12-16 23:51:16      TRUE 2022-12-17 00:00:00
## 295  2022-12-16 23:51:15      TRUE 2022-12-17 00:00:00
## 296  2022-12-16 23:51:11      TRUE 2022-12-17 00:00:00
## 297  2022-12-16 23:51:08      TRUE 2022-12-17 00:00:00
## 298  2022-12-16 23:51:04      TRUE 2022-12-17 00:00:00
## 299  2022-12-16 23:51:03      TRUE 2022-12-17 00:00:00
## 300  2022-12-16 23:51:03      TRUE 2022-12-17 00:00:00
## 301  2022-12-16 23:51:03      TRUE 2022-12-17 00:00:00
## 302  2022-12-16 23:51:00      TRUE 2022-12-17 00:00:00
## 303  2022-12-16 23:51:00      TRUE 2022-12-17 00:00:00
## 304  2022-12-16 23:51:00      TRUE 2022-12-17 00:00:00
## 305  2022-12-16 23:50:58      TRUE 2022-12-17 00:00:00
## 306  2022-12-16 23:50:53      TRUE 2022-12-17 00:00:00
## 307  2022-12-16 23:50:51      TRUE 2022-12-17 00:00:00
## 308  2022-12-16 23:50:45      TRUE 2022-12-17 00:00:00
## 309  2022-12-16 23:50:45      TRUE 2022-12-17 00:00:00
## 310  2022-12-16 23:50:40      TRUE 2022-12-17 00:00:00
## 311  2022-12-16 23:50:39      TRUE 2022-12-17 00:00:00
## 312  2022-12-16 23:50:31      TRUE 2022-12-17 00:00:00
## 313  2022-12-16 23:50:30      TRUE 2022-12-17 00:00:00
## 314  2022-12-16 23:50:25      TRUE 2022-12-17 00:00:00
## 315  2022-12-16 23:50:23      TRUE 2022-12-17 00:00:00
## 316  2022-12-16 23:50:22      TRUE 2022-12-17 00:00:00
## 317  2022-12-16 23:50:21      TRUE 2022-12-17 00:00:00
## 318  2022-12-16 23:50:21      TRUE 2022-12-17 00:00:00
## 319  2022-12-16 23:50:21      TRUE 2022-12-17 00:00:00
## 320  2022-12-16 23:50:20      TRUE 2022-12-17 00:00:00
## 321  2022-12-16 23:50:20      TRUE 2022-12-17 00:00:00
## 322  2022-12-16 23:50:19      TRUE 2022-12-17 00:00:00
## 323  2022-12-16 23:50:18      TRUE 2022-12-17 00:00:00
## 324  2022-12-16 23:50:18      TRUE 2022-12-17 00:00:00
## 325  2022-12-16 23:50:16      TRUE 2022-12-17 00:00:00
## 326  2022-12-16 23:50:15      TRUE 2022-12-17 00:00:00
## 327  2022-12-16 23:50:14      TRUE 2022-12-17 00:00:00
## 328  2022-12-16 23:50:14      TRUE 2022-12-17 00:00:00
## 329  2022-12-16 23:50:13      TRUE 2022-12-17 00:00:00
## 330  2022-12-16 23:50:10      TRUE 2022-12-17 00:00:00
## 331  2022-12-16 23:50:09      TRUE 2022-12-17 00:00:00
## 332  2022-12-16 23:50:09      TRUE 2022-12-17 00:00:00
## 333  2022-12-16 23:50:03      TRUE 2022-12-17 00:00:00
## 334  2022-12-16 23:49:58      TRUE 2022-12-17 00:00:00
## 335  2022-12-16 23:49:57      TRUE 2022-12-17 00:00:00
## 336  2022-12-16 23:49:55      TRUE 2022-12-17 00:00:00
## 337  2022-12-16 23:49:55      TRUE 2022-12-17 00:00:00
## 338  2022-12-16 23:49:53      TRUE 2022-12-17 00:00:00
## 339  2022-12-16 23:49:48      TRUE 2022-12-17 00:00:00
## 340  2022-12-16 23:49:46      TRUE 2022-12-17 00:00:00
## 341  2022-12-16 23:49:46      TRUE 2022-12-17 00:00:00
## 342  2022-12-16 23:49:44      TRUE 2022-12-17 00:00:00
## 343  2022-12-16 23:49:43      TRUE 2022-12-17 00:00:00
## 344  2022-12-16 23:49:41      TRUE 2022-12-17 00:00:00
## 345  2022-12-16 23:49:40      TRUE 2022-12-17 00:00:00
## 346  2022-12-16 23:49:39      TRUE 2022-12-17 00:00:00
## 347  2022-12-16 23:49:38      TRUE 2022-12-17 00:00:00
## 348  2022-12-16 23:49:34      TRUE 2022-12-17 00:00:00
## 349  2022-12-16 23:49:34      TRUE 2022-12-17 00:00:00
## 350  2022-12-16 23:49:31      TRUE 2022-12-17 00:00:00
## 351  2022-12-16 23:49:26      TRUE 2022-12-17 00:00:00
## 352  2022-12-16 23:49:25      TRUE 2022-12-17 00:00:00
## 353  2022-12-16 23:49:23      TRUE 2022-12-17 00:00:00
## 354  2022-12-16 23:49:21      TRUE 2022-12-17 00:00:00
## 355  2022-12-16 23:49:17      TRUE 2022-12-17 00:00:00
## 356  2022-12-16 23:49:16      TRUE 2022-12-17 00:00:00
## 357  2022-12-16 23:49:16      TRUE 2022-12-17 00:00:00
## 358  2022-12-16 23:49:15      TRUE 2022-12-17 00:00:00
## 359  2022-12-16 23:49:14      TRUE 2022-12-17 00:00:00
## 360  2022-12-16 23:49:14      TRUE 2022-12-17 00:00:00
## 361  2022-12-16 23:49:14      TRUE 2022-12-17 00:00:00
## 362  2022-12-16 23:49:13      TRUE 2022-12-17 00:00:00
## 363  2022-12-16 23:49:11      TRUE 2022-12-17 00:00:00
## 364  2022-12-16 23:49:10      TRUE 2022-12-17 00:00:00
## 365  2022-12-16 23:49:08      TRUE 2022-12-17 00:00:00
## 366  2022-12-16 23:49:04      TRUE 2022-12-17 00:00:00
## 367  2022-12-16 23:49:03      TRUE 2022-12-17 00:00:00
## 368  2022-12-16 23:49:01      TRUE 2022-12-17 00:00:00
## 369  2022-12-16 23:49:01      TRUE 2022-12-17 00:00:00
## 370  2022-12-16 23:48:55      TRUE 2022-12-17 00:00:00
## 371  2022-12-16 23:48:54      TRUE 2022-12-17 00:00:00
## 372  2022-12-16 23:48:54      TRUE 2022-12-17 00:00:00
## 373  2022-12-16 23:48:53      TRUE 2022-12-17 00:00:00
## 374  2022-12-16 23:48:51      TRUE 2022-12-17 00:00:00
## 375  2022-12-16 23:48:48      TRUE 2022-12-17 00:00:00
## 376  2022-12-16 23:48:48      TRUE 2022-12-17 00:00:00
## 377  2022-12-16 23:48:45      TRUE 2022-12-17 00:00:00
## 378  2022-12-16 23:48:44      TRUE 2022-12-17 00:00:00
## 379  2022-12-16 23:48:41      TRUE 2022-12-17 00:00:00
## 380  2022-12-16 23:48:40      TRUE 2022-12-17 00:00:00
## 381  2022-12-16 23:48:40      TRUE 2022-12-17 00:00:00
## 382  2022-12-16 23:48:38      TRUE 2022-12-17 00:00:00
## 383  2022-12-16 23:48:30      TRUE 2022-12-17 00:00:00
## 384  2022-12-16 23:48:27      TRUE 2022-12-17 00:00:00
## 385  2022-12-16 23:48:25      TRUE 2022-12-17 00:00:00
## 386  2022-12-16 23:48:25      TRUE 2022-12-17 00:00:00
## 387  2022-12-16 23:48:22      TRUE 2022-12-17 00:00:00
## 388  2022-12-16 23:48:21      TRUE 2022-12-17 00:00:00
## 389  2022-12-16 23:48:16      TRUE 2022-12-17 00:00:00
## 390  2022-12-16 23:48:15      TRUE 2022-12-17 00:00:00
## 391  2022-12-16 23:48:10      TRUE 2022-12-17 00:00:00
## 392  2022-12-16 23:48:08      TRUE 2022-12-17 00:00:00
## 393  2022-12-16 23:48:07      TRUE 2022-12-17 00:00:00
## 394  2022-12-16 23:48:07      TRUE 2022-12-17 00:00:00
## 395  2022-12-16 23:48:06      TRUE 2022-12-17 00:00:00
## 396  2022-12-16 23:48:03      TRUE 2022-12-17 00:00:00
## 397  2022-12-16 23:48:00      TRUE 2022-12-17 00:00:00
## 398  2022-12-16 23:47:59      TRUE 2022-12-17 00:00:00
## 399  2022-12-16 23:47:58      TRUE 2022-12-17 00:00:00
## 400  2022-12-16 23:47:51      TRUE 2022-12-17 00:00:00
## 401  2022-12-16 23:47:51      TRUE 2022-12-17 00:00:00
## 402  2022-12-16 23:47:50      TRUE 2022-12-17 00:00:00
## 403  2022-12-16 23:47:48      TRUE 2022-12-17 00:00:00
## 404  2022-12-16 23:47:47      TRUE 2022-12-17 00:00:00
## 405  2022-12-16 23:47:46      TRUE 2022-12-17 00:00:00
## 406  2022-12-16 23:47:45      TRUE 2022-12-17 00:00:00
## 407  2022-12-16 23:47:44      TRUE 2022-12-17 00:00:00
## 408  2022-12-16 23:47:43      TRUE 2022-12-17 00:00:00
## 409  2022-12-16 23:47:40      TRUE 2022-12-17 00:00:00
## 410  2022-12-16 23:47:39      TRUE 2022-12-17 00:00:00
## 411  2022-12-16 23:47:36      TRUE 2022-12-17 00:00:00
## 412  2022-12-16 23:47:32      TRUE 2022-12-17 00:00:00
## 413  2022-12-16 23:47:32      TRUE 2022-12-17 00:00:00
## 414  2022-12-16 23:47:30      TRUE 2022-12-17 00:00:00
## 415  2022-12-16 23:47:30      TRUE 2022-12-17 00:00:00
## 416  2022-12-16 23:47:28      TRUE 2022-12-17 00:00:00
## 417  2022-12-16 23:47:26      TRUE 2022-12-17 00:00:00
## 418  2022-12-16 23:47:22      TRUE 2022-12-17 00:00:00
## 419  2022-12-16 23:47:10      TRUE 2022-12-17 00:00:00
## 420  2022-12-16 23:47:09      TRUE 2022-12-17 00:00:00
## 421  2022-12-16 23:47:07      TRUE 2022-12-17 00:00:00
## 422  2022-12-16 23:47:07      TRUE 2022-12-17 00:00:00
## 423  2022-12-16 23:47:00      TRUE 2022-12-17 00:00:00
## 424  2022-12-16 23:46:58      TRUE 2022-12-17 00:00:00
## 425  2022-12-16 23:46:57      TRUE 2022-12-17 00:00:00
## 426  2022-12-16 23:46:54      TRUE 2022-12-17 00:00:00
## 427  2022-12-16 23:46:53      TRUE 2022-12-17 00:00:00
## 428  2022-12-16 23:46:53      TRUE 2022-12-17 00:00:00
## 429  2022-12-16 23:46:53      TRUE 2022-12-17 00:00:00
## 430  2022-12-16 23:46:52      TRUE 2022-12-17 00:00:00
## 431  2022-12-16 23:46:52      TRUE 2022-12-17 00:00:00
## 432  2022-12-16 23:46:51      TRUE 2022-12-17 00:00:00
## 433  2022-12-16 23:46:50      TRUE 2022-12-17 00:00:00
## 434  2022-12-16 23:46:48      TRUE 2022-12-17 00:00:00
## 435  2022-12-16 23:46:45      TRUE 2022-12-17 00:00:00
## 436  2022-12-16 23:46:44      TRUE 2022-12-17 00:00:00
## 437  2022-12-16 23:46:43      TRUE 2022-12-17 00:00:00
## 438  2022-12-16 23:46:41      TRUE 2022-12-17 00:00:00
## 439  2022-12-16 23:46:39      TRUE 2022-12-17 00:00:00
## 440  2022-12-16 23:46:37      TRUE 2022-12-17 00:00:00
## 441  2022-12-16 23:46:36      TRUE 2022-12-17 00:00:00
## 442  2022-12-16 23:46:32      TRUE 2022-12-17 00:00:00
## 443  2022-12-16 23:46:31      TRUE 2022-12-17 00:00:00
## 444  2022-12-16 23:46:31      TRUE 2022-12-17 00:00:00
## 445  2022-12-16 23:46:29      TRUE 2022-12-17 00:00:00
## 446  2022-12-16 23:46:29      TRUE 2022-12-17 00:00:00
## 447  2022-12-16 23:46:25      TRUE 2022-12-17 00:00:00
## 448  2022-12-16 23:46:22      TRUE 2022-12-17 00:00:00
## 449  2022-12-16 23:46:19      TRUE 2022-12-17 00:00:00
## 450  2022-12-16 23:46:19      TRUE 2022-12-17 00:00:00
## 451  2022-12-16 23:46:15      TRUE 2022-12-17 00:00:00
## 452  2022-12-16 23:46:13      TRUE 2022-12-17 00:00:00
## 453  2022-12-16 23:46:11      TRUE 2022-12-17 00:00:00
## 454  2022-12-16 23:46:09      TRUE 2022-12-17 00:00:00
## 455  2022-12-16 23:46:07      TRUE 2022-12-17 00:00:00
## 456  2022-12-16 23:46:06      TRUE 2022-12-17 00:00:00
## 457  2022-12-16 23:45:56      TRUE 2022-12-17 00:00:00
## 458  2022-12-16 23:45:48      TRUE 2022-12-17 00:00:00
## 459  2022-12-16 23:45:45      TRUE 2022-12-17 00:00:00
## 460  2022-12-16 23:45:43      TRUE 2022-12-17 00:00:00
## 461  2022-12-16 23:45:38      TRUE 2022-12-17 00:00:00
## 462  2022-12-16 23:45:36      TRUE 2022-12-17 00:00:00
## 463  2022-12-16 23:45:34      TRUE 2022-12-17 00:00:00
## 464  2022-12-16 23:45:31      TRUE 2022-12-17 00:00:00
## 465  2022-12-16 23:45:26      TRUE 2022-12-17 00:00:00
## 466  2022-12-16 23:45:25      TRUE 2022-12-17 00:00:00
## 467  2022-12-16 23:45:23      TRUE 2022-12-17 00:00:00
## 468  2022-12-16 23:45:20      TRUE 2022-12-17 00:00:00
## 469  2022-12-16 23:45:16      TRUE 2022-12-17 00:00:00
## 470  2022-12-16 23:45:12      TRUE 2022-12-17 00:00:00
## 471  2022-12-16 23:45:12      TRUE 2022-12-17 00:00:00
## 472  2022-12-16 23:45:10      TRUE 2022-12-17 00:00:00
## 473  2022-12-16 23:45:09      TRUE 2022-12-17 00:00:00
## 474  2022-12-16 23:45:08      TRUE 2022-12-17 00:00:00
## 475  2022-12-16 23:45:04      TRUE 2022-12-17 00:00:00
## 476  2022-12-16 23:45:03      TRUE 2022-12-17 00:00:00
## 477  2022-12-16 23:45:02      TRUE 2022-12-17 00:00:00
## 478  2022-12-16 23:45:02      TRUE 2022-12-17 00:00:00
## 479  2022-12-16 23:44:59      TRUE 2022-12-17 00:00:00
## 480  2022-12-16 23:44:57      TRUE 2022-12-17 00:00:00
## 481  2022-12-16 23:44:57      TRUE 2022-12-17 00:00:00
## 482  2022-12-16 23:44:55      TRUE 2022-12-17 00:00:00
## 483  2022-12-16 23:44:52      TRUE 2022-12-17 00:00:00
## 484  2022-12-16 23:44:51      TRUE 2022-12-17 00:00:00
## 485  2022-12-16 23:44:43      TRUE 2022-12-17 00:00:00
## 486  2022-12-16 23:44:40      TRUE 2022-12-17 00:00:00
## 487  2022-12-16 23:44:37      TRUE 2022-12-17 00:00:00
## 488  2022-12-16 23:44:35      TRUE 2022-12-17 00:00:00
## 489  2022-12-16 23:44:34      TRUE 2022-12-17 00:00:00
## 490  2022-12-16 23:44:34      TRUE 2022-12-17 00:00:00
## 491  2022-12-16 23:44:33      TRUE 2022-12-17 00:00:00
## 492  2022-12-16 23:44:32      TRUE 2022-12-17 00:00:00
## 493  2022-12-16 23:44:31      TRUE 2022-12-17 00:00:00
## 494  2022-12-16 23:44:30      TRUE 2022-12-17 00:00:00
## 495  2022-12-16 23:44:29      TRUE 2022-12-17 00:00:00
## 496  2022-12-16 23:44:29      TRUE 2022-12-17 00:00:00
## 497  2022-12-16 23:44:28      TRUE 2022-12-17 00:00:00
## 498  2022-12-16 23:44:26      TRUE 2022-12-17 00:00:00
## 499  2022-12-16 23:44:23      TRUE 2022-12-17 00:00:00
## 500  2022-12-16 23:44:18      TRUE 2022-12-17 00:00:00
## 501  2022-12-16 23:44:16      TRUE 2022-12-17 00:00:00
## 502  2022-12-16 23:44:15      TRUE 2022-12-17 00:00:00
## 503  2022-12-16 23:44:14      TRUE 2022-12-17 00:00:00
## 504  2022-12-16 23:44:13      TRUE 2022-12-17 00:00:00
## 505  2022-12-16 23:44:13      TRUE 2022-12-17 00:00:00
## 506  2022-12-16 23:44:13      TRUE 2022-12-17 00:00:00
## 507  2022-12-16 23:44:12      TRUE 2022-12-17 00:00:00
## 508  2022-12-16 23:44:12      TRUE 2022-12-17 00:00:00
## 509  2022-12-16 23:44:09      TRUE 2022-12-17 00:00:00
## 510  2022-12-16 23:44:05      TRUE 2022-12-17 00:00:00
## 511  2022-12-16 23:44:01      TRUE 2022-12-17 00:00:00
## 512  2022-12-16 23:44:01      TRUE 2022-12-17 00:00:00
## 513  2022-12-16 23:44:00      TRUE 2022-12-17 00:00:00
## 514  2022-12-16 23:43:59      TRUE 2022-12-17 00:00:00
## 515  2022-12-16 23:43:57      TRUE 2022-12-17 00:00:00
## 516  2022-12-16 23:43:57      TRUE 2022-12-17 00:00:00
## 517  2022-12-16 23:43:54      TRUE 2022-12-17 00:00:00
## 518  2022-12-16 23:43:54      TRUE 2022-12-17 00:00:00
## 519  2022-12-16 23:43:52      TRUE 2022-12-17 00:00:00
## 520  2022-12-16 23:43:51      TRUE 2022-12-17 00:00:00
## 521  2022-12-16 23:43:50      TRUE 2022-12-17 00:00:00
## 522  2022-12-16 23:43:50      TRUE 2022-12-17 00:00:00
## 523  2022-12-16 23:43:49      TRUE 2022-12-17 00:00:00
## 524  2022-12-16 23:43:48      TRUE 2022-12-17 00:00:00
## 525  2022-12-16 23:43:47      TRUE 2022-12-17 00:00:00
## 526  2022-12-16 23:43:45      TRUE 2022-12-17 00:00:00
## 527  2022-12-16 23:43:44      TRUE 2022-12-17 00:00:00
## 528  2022-12-16 23:43:44      TRUE 2022-12-17 00:00:00
## 529  2022-12-16 23:43:43      TRUE 2022-12-17 00:00:00
## 530  2022-12-16 23:43:42      TRUE 2022-12-17 00:00:00
## 531  2022-12-16 23:43:42      TRUE 2022-12-17 00:00:00
## 532  2022-12-16 23:43:41      TRUE 2022-12-17 00:00:00
## 533  2022-12-16 23:43:39      TRUE 2022-12-17 00:00:00
## 534  2022-12-16 23:43:38      TRUE 2022-12-17 00:00:00
## 535  2022-12-16 23:43:38      TRUE 2022-12-17 00:00:00
## 536  2022-12-16 23:43:37      TRUE 2022-12-17 00:00:00
## 537  2022-12-16 23:43:35      TRUE 2022-12-17 00:00:00
## 538  2022-12-16 23:43:28      TRUE 2022-12-17 00:00:00
## 539  2022-12-16 23:43:27      TRUE 2022-12-17 00:00:00
## 540  2022-12-16 23:43:26      TRUE 2022-12-17 00:00:00
## 541  2022-12-16 23:43:22      TRUE 2022-12-17 00:00:00
## 542  2022-12-16 23:43:22      TRUE 2022-12-17 00:00:00
## 543  2022-12-16 23:43:20      TRUE 2022-12-17 00:00:00
## 544  2022-12-16 23:43:20      TRUE 2022-12-17 00:00:00
## 545  2022-12-16 23:43:19      TRUE 2022-12-17 00:00:00
## 546  2022-12-16 23:43:19      TRUE 2022-12-17 00:00:00
## 547  2022-12-16 23:43:17      TRUE 2022-12-17 00:00:00
## 548  2022-12-16 23:43:14      TRUE 2022-12-17 00:00:00
## 549  2022-12-16 23:43:14      TRUE 2022-12-17 00:00:00
## 550  2022-12-16 23:43:12      TRUE 2022-12-17 00:00:00
## 551  2022-12-16 23:43:12      TRUE 2022-12-17 00:00:00
## 552  2022-12-16 23:43:11      TRUE 2022-12-17 00:00:00
## 553  2022-12-16 23:43:09      TRUE 2022-12-17 00:00:00
## 554  2022-12-16 23:43:06      TRUE 2022-12-17 00:00:00
## 555  2022-12-16 23:43:04      TRUE 2022-12-17 00:00:00
## 556  2022-12-16 23:43:04      TRUE 2022-12-17 00:00:00
## 557  2022-12-16 23:43:04      TRUE 2022-12-17 00:00:00
## 558  2022-12-16 23:43:01      TRUE 2022-12-17 00:00:00
## 559  2022-12-16 23:43:01      TRUE 2022-12-17 00:00:00
## 560  2022-12-16 23:42:57      TRUE 2022-12-17 00:00:00
## 561  2022-12-16 23:42:57      TRUE 2022-12-17 00:00:00
## 562  2022-12-16 23:42:56      TRUE 2022-12-17 00:00:00
## 563  2022-12-16 23:42:55      TRUE 2022-12-17 00:00:00
## 564  2022-12-16 23:42:52      TRUE 2022-12-17 00:00:00
## 565  2022-12-16 23:42:52      TRUE 2022-12-17 00:00:00
## 566  2022-12-16 23:42:50      TRUE 2022-12-17 00:00:00
## 567  2022-12-16 23:42:50      TRUE 2022-12-17 00:00:00
## 568  2022-12-16 23:42:48      TRUE 2022-12-17 00:00:00
## 569  2022-12-16 23:42:46      TRUE 2022-12-17 00:00:00
## 570  2022-12-16 23:42:46      TRUE 2022-12-17 00:00:00
## 571  2022-12-16 23:42:45      TRUE 2022-12-17 00:00:00
## 572  2022-12-16 23:42:44      TRUE 2022-12-17 00:00:00
## 573  2022-12-16 23:42:44      TRUE 2022-12-17 00:00:00
## 574  2022-12-16 23:42:42      TRUE 2022-12-17 00:00:00
## 575  2022-12-16 23:42:40      TRUE 2022-12-17 00:00:00
## 576  2022-12-16 23:42:32      TRUE 2022-12-17 00:00:00
## 577  2022-12-16 23:42:32      TRUE 2022-12-17 00:00:00
## 578  2022-12-16 23:42:31      TRUE 2022-12-17 00:00:00
## 579  2022-12-16 23:42:27      TRUE 2022-12-17 00:00:00
## 580  2022-12-16 23:42:27      TRUE 2022-12-17 00:00:00
## 581  2022-12-16 23:42:26      TRUE 2022-12-17 00:00:00
## 582  2022-12-16 23:42:23      TRUE 2022-12-17 00:00:00
## 583  2022-12-16 23:42:22      TRUE 2022-12-17 00:00:00
## 584  2022-12-16 23:42:22      TRUE 2022-12-17 00:00:00
## 585  2022-12-16 23:42:21      TRUE 2022-12-17 00:00:00
## 586  2022-12-16 23:42:21      TRUE 2022-12-17 00:00:00
## 587  2022-12-16 23:42:18      TRUE 2022-12-17 00:00:00
## 588  2022-12-16 23:42:17      TRUE 2022-12-17 00:00:00
## 589  2022-12-16 23:42:16      TRUE 2022-12-17 00:00:00
## 590  2022-12-16 23:42:15      TRUE 2022-12-17 00:00:00
## 591  2022-12-16 23:42:15      TRUE 2022-12-17 00:00:00
## 592  2022-12-16 23:42:07      TRUE 2022-12-17 00:00:00
## 593  2022-12-16 23:42:03      TRUE 2022-12-17 00:00:00
## 594  2022-12-16 23:42:02      TRUE 2022-12-17 00:00:00
## 595  2022-12-16 23:42:01      TRUE 2022-12-17 00:00:00
## 596  2022-12-16 23:42:00      TRUE 2022-12-17 00:00:00
## 597  2022-12-16 23:41:58      TRUE 2022-12-17 00:00:00
## 598  2022-12-16 23:41:58      TRUE 2022-12-17 00:00:00
## 599  2022-12-16 23:41:57      TRUE 2022-12-17 00:00:00
## 600  2022-12-16 23:41:55      TRUE 2022-12-17 00:00:00
## 601  2022-12-16 23:41:54      TRUE 2022-12-17 00:00:00
## 602  2022-12-16 23:41:53      TRUE 2022-12-17 00:00:00
## 603  2022-12-16 23:41:50      TRUE 2022-12-17 00:00:00
## 604  2022-12-16 23:41:46      TRUE 2022-12-17 00:00:00
## 605  2022-12-16 23:41:45      TRUE 2022-12-17 00:00:00
## 606  2022-12-16 23:41:44      TRUE 2022-12-17 00:00:00
## 607  2022-12-16 23:41:36      TRUE 2022-12-17 00:00:00
## 608  2022-12-16 23:41:34      TRUE 2022-12-17 00:00:00
## 609  2022-12-16 23:41:34      TRUE 2022-12-17 00:00:00
## 610  2022-12-16 23:41:33      TRUE 2022-12-17 00:00:00
## 611  2022-12-16 23:41:31      TRUE 2022-12-17 00:00:00
## 612  2022-12-16 23:41:24      TRUE 2022-12-17 00:00:00
## 613  2022-12-16 23:41:19      TRUE 2022-12-17 00:00:00
## 614  2022-12-16 23:41:14      TRUE 2022-12-17 00:00:00
## 615  2022-12-16 23:41:11      TRUE 2022-12-17 00:00:00
## 616  2022-12-16 23:41:09      TRUE 2022-12-17 00:00:00
## 617  2022-12-16 23:41:07      TRUE 2022-12-17 00:00:00
## 618  2022-12-16 23:41:06      TRUE 2022-12-17 00:00:00
## 619  2022-12-16 23:41:03      TRUE 2022-12-17 00:00:00
## 620  2022-12-16 23:41:00      TRUE 2022-12-17 00:00:00
## 621  2022-12-16 23:40:59      TRUE 2022-12-17 00:00:00
## 622  2022-12-16 23:40:56      TRUE 2022-12-17 00:00:00
## 623  2022-12-16 23:40:56      TRUE 2022-12-17 00:00:00
## 624  2022-12-16 23:40:54      TRUE 2022-12-17 00:00:00
## 625  2022-12-16 23:40:53      TRUE 2022-12-17 00:00:00
## 626  2022-12-16 23:40:52      TRUE 2022-12-17 00:00:00
## 627  2022-12-16 23:40:51      TRUE 2022-12-17 00:00:00
## 628  2022-12-16 23:40:49      TRUE 2022-12-17 00:00:00
## 629  2022-12-16 23:40:49      TRUE 2022-12-17 00:00:00
## 630  2022-12-16 23:40:48      TRUE 2022-12-17 00:00:00
## 631  2022-12-16 23:40:45      TRUE 2022-12-17 00:00:00
## 632  2022-12-16 23:40:43      TRUE 2022-12-17 00:00:00
## 633  2022-12-16 23:40:42      TRUE 2022-12-17 00:00:00
## 634  2022-12-16 23:40:41      TRUE 2022-12-17 00:00:00
## 635  2022-12-16 23:40:41      TRUE 2022-12-17 00:00:00
## 636  2022-12-16 23:40:39      TRUE 2022-12-17 00:00:00
## 637  2022-12-16 23:40:38      TRUE 2022-12-17 00:00:00
## 638  2022-12-16 23:40:29      TRUE 2022-12-17 00:00:00
## 639  2022-12-16 23:40:28      TRUE 2022-12-17 00:00:00
## 640  2022-12-16 23:40:28      TRUE 2022-12-17 00:00:00
## 641  2022-12-16 23:40:26      TRUE 2022-12-17 00:00:00
## 642  2022-12-16 23:40:20      TRUE 2022-12-17 00:00:00
## 643  2022-12-16 23:40:20      TRUE 2022-12-17 00:00:00
## 644  2022-12-16 23:40:17      TRUE 2022-12-17 00:00:00
## 645  2022-12-16 23:40:16      TRUE 2022-12-17 00:00:00
## 646  2022-12-16 23:40:15      TRUE 2022-12-17 00:00:00
## 647  2022-12-16 23:40:14      TRUE 2022-12-17 00:00:00
## 648  2022-12-16 23:40:13      TRUE 2022-12-17 00:00:00
## 649  2022-12-16 23:40:11      TRUE 2022-12-17 00:00:00
## 650  2022-12-16 23:40:09      TRUE 2022-12-17 00:00:00
## 651  2022-12-16 23:40:09      TRUE 2022-12-17 00:00:00
## 652  2022-12-16 23:40:09      TRUE 2022-12-17 00:00:00
## 653  2022-12-16 23:40:09      TRUE 2022-12-17 00:00:00
## 654  2022-12-16 23:40:08      TRUE 2022-12-17 00:00:00
## 655  2022-12-16 23:40:07      TRUE 2022-12-17 00:00:00
## 656  2022-12-16 23:40:04      TRUE 2022-12-17 00:00:00
## 657  2022-12-16 23:39:55      TRUE 2022-12-17 00:00:00
## 658  2022-12-16 23:39:53      TRUE 2022-12-17 00:00:00
## 659  2022-12-16 23:39:48      TRUE 2022-12-17 00:00:00
## 660  2022-12-16 23:39:47      TRUE 2022-12-17 00:00:00
## 661  2022-12-16 23:39:45      TRUE 2022-12-17 00:00:00
## 662  2022-12-16 23:39:44      TRUE 2022-12-17 00:00:00
## 663  2022-12-16 23:39:42      TRUE 2022-12-17 00:00:00
## 664  2022-12-16 23:39:34      TRUE 2022-12-17 00:00:00
## 665  2022-12-16 23:39:31      TRUE 2022-12-17 00:00:00
## 666  2022-12-16 23:39:29      TRUE 2022-12-17 00:00:00
## 667  2022-12-16 23:39:22      TRUE 2022-12-17 00:00:00
## 668  2022-12-16 23:39:20      TRUE 2022-12-17 00:00:00
## 669  2022-12-16 23:39:17      TRUE 2022-12-17 00:00:00
## 670  2022-12-16 23:39:17      TRUE 2022-12-17 00:00:00
## 671  2022-12-16 23:39:17      TRUE 2022-12-17 00:00:00
## 672  2022-12-16 23:39:16      TRUE 2022-12-17 00:00:00
## 673  2022-12-16 23:39:14      TRUE 2022-12-17 00:00:00
## 674  2022-12-16 23:39:11      TRUE 2022-12-17 00:00:00
## 675  2022-12-16 23:39:04      TRUE 2022-12-17 00:00:00
## 676  2022-12-16 23:39:02      TRUE 2022-12-17 00:00:00
## 677  2022-12-16 23:39:01      TRUE 2022-12-17 00:00:00
## 678  2022-12-16 23:39:01      TRUE 2022-12-17 00:00:00
## 679  2022-12-16 23:39:00      TRUE 2022-12-17 00:00:00
## 680  2022-12-16 23:38:59      TRUE 2022-12-17 00:00:00
## 681  2022-12-16 23:38:57      TRUE 2022-12-17 00:00:00
## 682  2022-12-16 23:38:57      TRUE 2022-12-17 00:00:00
## 683  2022-12-16 23:38:56      TRUE 2022-12-17 00:00:00
## 684  2022-12-16 23:38:54      TRUE 2022-12-17 00:00:00
## 685  2022-12-16 23:38:54      TRUE 2022-12-17 00:00:00
## 686  2022-12-16 23:38:53      TRUE 2022-12-17 00:00:00
## 687  2022-12-16 23:38:51      TRUE 2022-12-17 00:00:00
## 688  2022-12-16 23:38:50      TRUE 2022-12-17 00:00:00
## 689  2022-12-16 23:38:47      TRUE 2022-12-17 00:00:00
## 690  2022-12-16 23:38:42      TRUE 2022-12-17 00:00:00
## 691  2022-12-16 23:38:33      TRUE 2022-12-17 00:00:00
## 692  2022-12-16 23:38:32      TRUE 2022-12-17 00:00:00
## 693  2022-12-16 23:38:31      TRUE 2022-12-17 00:00:00
## 694  2022-12-16 23:38:31      TRUE 2022-12-17 00:00:00
## 695  2022-12-16 23:38:27      TRUE 2022-12-17 00:00:00
## 696  2022-12-16 23:38:26      TRUE 2022-12-17 00:00:00
## 697  2022-12-16 23:38:23      TRUE 2022-12-17 00:00:00
## 698  2022-12-16 23:38:18      TRUE 2022-12-17 00:00:00
## 699  2022-12-16 23:38:16      TRUE 2022-12-17 00:00:00
## 700  2022-12-16 23:38:16      TRUE 2022-12-17 00:00:00
## 701  2022-12-16 23:38:15      TRUE 2022-12-17 00:00:00
## 702  2022-12-16 23:38:15      TRUE 2022-12-17 00:00:00
## 703  2022-12-16 23:38:14      TRUE 2022-12-17 00:00:00
## 704  2022-12-16 23:38:09      TRUE 2022-12-17 00:00:00
## 705  2022-12-16 23:38:06      TRUE 2022-12-17 00:00:00
## 706  2022-12-16 23:38:03      TRUE 2022-12-17 00:00:00
## 707  2022-12-16 23:38:02      TRUE 2022-12-17 00:00:00
## 708  2022-12-16 23:38:00      TRUE 2022-12-17 00:00:00
## 709  2022-12-16 23:37:59      TRUE 2022-12-17 00:00:00
## 710  2022-12-16 23:37:56      TRUE 2022-12-17 00:00:00
## 711  2022-12-16 23:37:55      TRUE 2022-12-17 00:00:00
## 712  2022-12-16 23:37:55      TRUE 2022-12-17 00:00:00
## 713  2022-12-16 23:37:54      TRUE 2022-12-17 00:00:00
## 714  2022-12-16 23:37:53      TRUE 2022-12-17 00:00:00
## 715  2022-12-16 23:37:45      TRUE 2022-12-17 00:00:00
## 716  2022-12-16 23:37:42      TRUE 2022-12-17 00:00:00
## 717  2022-12-16 23:37:41      TRUE 2022-12-17 00:00:00
## 718  2022-12-16 23:37:41      TRUE 2022-12-17 00:00:00
## 719  2022-12-16 23:37:40      TRUE 2022-12-17 00:00:00
## 720  2022-12-16 23:37:40      TRUE 2022-12-17 00:00:00
## 721  2022-12-16 23:37:39      TRUE 2022-12-17 00:00:00
## 722  2022-12-16 23:37:35      TRUE 2022-12-17 00:00:00
## 723  2022-12-16 23:37:34      TRUE 2022-12-17 00:00:00
## 724  2022-12-16 23:37:34      TRUE 2022-12-17 00:00:00
## 725  2022-12-16 23:37:33      TRUE 2022-12-17 00:00:00
## 726  2022-12-16 23:37:32      TRUE 2022-12-17 00:00:00
## 727  2022-12-16 23:37:29      TRUE 2022-12-17 00:00:00
## 728  2022-12-16 23:37:25      TRUE 2022-12-17 00:00:00
## 729  2022-12-16 23:37:25      TRUE 2022-12-17 00:00:00
## 730  2022-12-16 23:37:24      TRUE 2022-12-17 00:00:00
## 731  2022-12-16 23:37:24      TRUE 2022-12-17 00:00:00
## 732  2022-12-16 23:37:18      TRUE 2022-12-17 00:00:00
## 733  2022-12-16 23:37:15      TRUE 2022-12-17 00:00:00
## 734  2022-12-16 23:37:14      TRUE 2022-12-17 00:00:00
## 735  2022-12-16 23:37:13      TRUE 2022-12-17 00:00:00
## 736  2022-12-16 23:37:12      TRUE 2022-12-17 00:00:00
## 737  2022-12-16 23:37:12      TRUE 2022-12-17 00:00:00
## 738  2022-12-16 23:37:12      TRUE 2022-12-17 00:00:00
## 739  2022-12-16 23:37:11      TRUE 2022-12-17 00:00:00
## 740  2022-12-16 23:37:09      TRUE 2022-12-17 00:00:00
## 741  2022-12-16 23:37:07      TRUE 2022-12-17 00:00:00
## 742  2022-12-16 23:37:07      TRUE 2022-12-17 00:00:00
## 743  2022-12-16 23:37:04      TRUE 2022-12-17 00:00:00
## 744  2022-12-16 23:37:02      TRUE 2022-12-17 00:00:00
## 745  2022-12-16 23:36:59      TRUE 2022-12-17 00:00:00
## 746  2022-12-16 23:36:57      TRUE 2022-12-17 00:00:00
## 747  2022-12-16 23:36:56      TRUE 2022-12-17 00:00:00
## 748  2022-12-16 23:36:56      TRUE 2022-12-17 00:00:00
## 749  2022-12-16 23:36:56      TRUE 2022-12-17 00:00:00
## 750  2022-12-16 23:36:53      TRUE 2022-12-17 00:00:00
## 751  2022-12-16 23:36:49      TRUE 2022-12-17 00:00:00
## 752  2022-12-16 23:36:47      TRUE 2022-12-17 00:00:00
## 753  2022-12-16 23:36:45      TRUE 2022-12-17 00:00:00
## 754  2022-12-16 23:36:44      TRUE 2022-12-17 00:00:00
## 755  2022-12-16 23:36:39      TRUE 2022-12-17 00:00:00
## 756  2022-12-16 23:36:37      TRUE 2022-12-17 00:00:00
## 757  2022-12-16 23:36:36      TRUE 2022-12-17 00:00:00
## 758  2022-12-16 23:36:31      TRUE 2022-12-17 00:00:00
## 759  2022-12-16 23:36:31      TRUE 2022-12-17 00:00:00
## 760  2022-12-16 23:36:28      TRUE 2022-12-17 00:00:00
## 761  2022-12-16 23:36:27      TRUE 2022-12-17 00:00:00
## 762  2022-12-16 23:36:23      TRUE 2022-12-17 00:00:00
## 763  2022-12-16 23:36:15      TRUE 2022-12-17 00:00:00
## 764  2022-12-16 23:36:11      TRUE 2022-12-17 00:00:00
## 765  2022-12-16 23:36:09      TRUE 2022-12-17 00:00:00
## 766  2022-12-16 23:36:08      TRUE 2022-12-17 00:00:00
## 767  2022-12-16 23:36:05      TRUE 2022-12-17 00:00:00
## 768  2022-12-16 23:36:02      TRUE 2022-12-17 00:00:00
## 769  2022-12-16 23:36:00      TRUE 2022-12-17 00:00:00
## 770  2022-12-16 23:35:59      TRUE 2022-12-17 00:00:00
## 771  2022-12-16 23:35:56      TRUE 2022-12-17 00:00:00
## 772  2022-12-16 23:35:53      TRUE 2022-12-17 00:00:00
## 773  2022-12-16 23:35:53      TRUE 2022-12-17 00:00:00
## 774  2022-12-16 23:35:49      TRUE 2022-12-17 00:00:00
## 775  2022-12-16 23:35:48      TRUE 2022-12-17 00:00:00
## 776  2022-12-16 23:35:45      TRUE 2022-12-17 00:00:00
## 777  2022-12-16 23:35:45      TRUE 2022-12-17 00:00:00
## 778  2022-12-16 23:35:44      TRUE 2022-12-17 00:00:00
## 779  2022-12-16 23:35:42      TRUE 2022-12-17 00:00:00
## 780  2022-12-16 23:35:38      TRUE 2022-12-17 00:00:00
## 781  2022-12-16 23:35:37      TRUE 2022-12-17 00:00:00
## 782  2022-12-16 23:35:35      TRUE 2022-12-17 00:00:00
## 783  2022-12-16 23:35:35      TRUE 2022-12-17 00:00:00
## 784  2022-12-16 23:35:35      TRUE 2022-12-17 00:00:00
## 785  2022-12-16 23:35:34      TRUE 2022-12-17 00:00:00
## 786  2022-12-16 23:35:34      TRUE 2022-12-17 00:00:00
## 787  2022-12-16 23:35:33      TRUE 2022-12-17 00:00:00
## 788  2022-12-16 23:35:33      TRUE 2022-12-17 00:00:00
## 789  2022-12-16 23:35:32      TRUE 2022-12-17 00:00:00
## 790  2022-12-16 23:35:32      TRUE 2022-12-17 00:00:00
## 791  2022-12-16 23:35:29      TRUE 2022-12-17 00:00:00
## 792  2022-12-16 23:35:27      TRUE 2022-12-17 00:00:00
## 793  2022-12-16 23:35:27      TRUE 2022-12-17 00:00:00
## 794  2022-12-16 23:35:26      TRUE 2022-12-17 00:00:00
## 795  2022-12-16 23:35:22      TRUE 2022-12-17 00:00:00
## 796  2022-12-16 23:35:19      TRUE 2022-12-17 00:00:00
## 797  2022-12-16 23:35:14      TRUE 2022-12-17 00:00:00
## 798  2022-12-16 23:35:13      TRUE 2022-12-17 00:00:00
## 799  2022-12-16 23:35:11      TRUE 2022-12-17 00:00:00
## 800  2022-12-16 23:35:09      TRUE 2022-12-17 00:00:00
## 801  2022-12-16 23:35:09      TRUE 2022-12-17 00:00:00
## 802  2022-12-16 23:35:07      TRUE 2022-12-17 00:00:00
## 803  2022-12-16 23:35:05      TRUE 2022-12-17 00:00:00
## 804  2022-12-16 23:35:05      TRUE 2022-12-17 00:00:00
## 805  2022-12-16 23:35:03      TRUE 2022-12-17 00:00:00
## 806  2022-12-16 23:34:58      TRUE 2022-12-17 00:00:00
## 807  2022-12-16 23:34:58      TRUE 2022-12-17 00:00:00
## 808  2022-12-16 23:34:52      TRUE 2022-12-17 00:00:00
## 809  2022-12-16 23:34:52      TRUE 2022-12-17 00:00:00
## 810  2022-12-16 23:34:50      TRUE 2022-12-17 00:00:00
## 811  2022-12-16 23:34:50      TRUE 2022-12-17 00:00:00
## 812  2022-12-16 23:34:49      TRUE 2022-12-17 00:00:00
## 813  2022-12-16 23:34:47      TRUE 2022-12-17 00:00:00
## 814  2022-12-16 23:34:44      TRUE 2022-12-17 00:00:00
## 815  2022-12-16 23:34:44      TRUE 2022-12-17 00:00:00
## 816  2022-12-16 23:34:43      TRUE 2022-12-17 00:00:00
## 817  2022-12-16 23:34:43      TRUE 2022-12-17 00:00:00
## 818  2022-12-16 23:34:42      TRUE 2022-12-17 00:00:00
## 819  2022-12-16 23:34:40      TRUE 2022-12-17 00:00:00
## 820  2022-12-16 23:34:39      TRUE 2022-12-17 00:00:00
## 821  2022-12-16 23:34:38      TRUE 2022-12-17 00:00:00
## 822  2022-12-16 23:34:37      TRUE 2022-12-17 00:00:00
## 823  2022-12-16 23:34:36      TRUE 2022-12-17 00:00:00
## 824  2022-12-16 23:34:36      TRUE 2022-12-17 00:00:00
## 825  2022-12-16 23:34:35      TRUE 2022-12-17 00:00:00
## 826  2022-12-16 23:34:33      TRUE 2022-12-17 00:00:00
## 827  2022-12-16 23:34:33      TRUE 2022-12-17 00:00:00
## 828  2022-12-16 23:34:33      TRUE 2022-12-17 00:00:00
## 829  2022-12-16 23:34:31      TRUE 2022-12-17 00:00:00
## 830  2022-12-16 23:34:24      TRUE 2022-12-17 00:00:00
## 831  2022-12-16 23:34:18      TRUE 2022-12-17 00:00:00
## 832  2022-12-16 23:34:18      TRUE 2022-12-17 00:00:00
## 833  2022-12-16 23:34:17      TRUE 2022-12-17 00:00:00
## 834  2022-12-16 23:34:17      TRUE 2022-12-17 00:00:00
## 835  2022-12-16 23:34:15      TRUE 2022-12-17 00:00:00
## 836  2022-12-16 23:34:15      TRUE 2022-12-17 00:00:00
## 837  2022-12-16 23:34:11      TRUE 2022-12-17 00:00:00
## 838  2022-12-16 23:34:09      TRUE 2022-12-17 00:00:00
## 839  2022-12-16 23:34:08      TRUE 2022-12-17 00:00:00
## 840  2022-12-16 23:34:06      TRUE 2022-12-17 00:00:00
## 841  2022-12-16 23:34:03      TRUE 2022-12-17 00:00:00
## 842  2022-12-16 23:34:00      TRUE 2022-12-17 00:00:00
## 843  2022-12-16 23:33:58      TRUE 2022-12-17 00:00:00
## 844  2022-12-16 23:33:57      TRUE 2022-12-17 00:00:00
## 845  2022-12-16 23:33:56      TRUE 2022-12-17 00:00:00
## 846  2022-12-16 23:33:48      TRUE 2022-12-17 00:00:00
## 847  2022-12-16 23:33:47      TRUE 2022-12-17 00:00:00
## 848  2022-12-16 23:33:46      TRUE 2022-12-17 00:00:00
## 849  2022-12-16 23:33:45      TRUE 2022-12-17 00:00:00
## 850  2022-12-16 23:33:44      TRUE 2022-12-17 00:00:00
## 851  2022-12-16 23:33:44      TRUE 2022-12-17 00:00:00
## 852  2022-12-16 23:33:44      TRUE 2022-12-17 00:00:00
## 853  2022-12-16 23:33:41      TRUE 2022-12-17 00:00:00
## 854  2022-12-16 23:33:41      TRUE 2022-12-17 00:00:00
## 855  2022-12-16 23:33:37      TRUE 2022-12-17 00:00:00
## 856  2022-12-16 23:33:32      TRUE 2022-12-17 00:00:00
## 857  2022-12-16 23:33:31      TRUE 2022-12-17 00:00:00
## 858  2022-12-16 23:33:27      TRUE 2022-12-17 00:00:00
## 859  2022-12-16 23:33:26      TRUE 2022-12-17 00:00:00
## 860  2022-12-16 23:33:26      TRUE 2022-12-17 00:00:00
## 861  2022-12-16 23:33:26      TRUE 2022-12-17 00:00:00
## 862  2022-12-16 23:33:23      TRUE 2022-12-17 00:00:00
## 863  2022-12-16 23:33:19      TRUE 2022-12-17 00:00:00
## 864  2022-12-16 23:33:08      TRUE 2022-12-17 00:00:00
## 865  2022-12-16 23:33:07      TRUE 2022-12-17 00:00:00
## 866  2022-12-16 23:33:04      TRUE 2022-12-17 00:00:00
## 867  2022-12-16 23:33:02      TRUE 2022-12-17 00:00:00
## 868  2022-12-16 23:33:01      TRUE 2022-12-17 00:00:00
## 869  2022-12-16 23:32:57      TRUE 2022-12-17 00:00:00
## 870  2022-12-16 23:32:55      TRUE 2022-12-17 00:00:00
## 871  2022-12-16 23:32:50      TRUE 2022-12-17 00:00:00
## 872  2022-12-16 23:32:49      TRUE 2022-12-17 00:00:00
## 873  2022-12-16 23:32:47      TRUE 2022-12-17 00:00:00
## 874  2022-12-16 23:32:47      TRUE 2022-12-17 00:00:00
## 875  2022-12-16 23:32:46      TRUE 2022-12-17 00:00:00
## 876  2022-12-16 23:32:42      TRUE 2022-12-17 00:00:00
## 877  2022-12-16 23:32:42      TRUE 2022-12-17 00:00:00
## 878  2022-12-16 23:32:41      TRUE 2022-12-17 00:00:00
## 879  2022-12-16 23:32:38      TRUE 2022-12-17 00:00:00
## 880  2022-12-16 23:32:37      TRUE 2022-12-17 00:00:00
## 881  2022-12-16 23:32:36      TRUE 2022-12-17 00:00:00
## 882  2022-12-16 23:32:36      TRUE 2022-12-17 00:00:00
## 883  2022-12-16 23:32:35      TRUE 2022-12-17 00:00:00
## 884  2022-12-16 23:32:32      TRUE 2022-12-17 00:00:00
## 885  2022-12-16 23:32:30      TRUE 2022-12-17 00:00:00
## 886  2022-12-16 23:32:30      TRUE 2022-12-17 00:00:00
## 887  2022-12-16 23:32:29      TRUE 2022-12-17 00:00:00
## 888  2022-12-16 23:32:28      TRUE 2022-12-17 00:00:00
## 889  2022-12-16 23:32:27      TRUE 2022-12-17 00:00:00
## 890  2022-12-16 23:32:23      TRUE 2022-12-17 00:00:00
## 891  2022-12-16 23:32:23      TRUE 2022-12-17 00:00:00
## 892  2022-12-16 23:32:19      TRUE 2022-12-17 00:00:00
## 893  2022-12-16 23:32:16      TRUE 2022-12-17 00:00:00
## 894  2022-12-16 23:32:15      TRUE 2022-12-17 00:00:00
## 895  2022-12-16 23:32:14      TRUE 2022-12-17 00:00:00
## 896  2022-12-16 23:32:10      TRUE 2022-12-17 00:00:00
## 897  2022-12-16 23:32:08      TRUE 2022-12-17 00:00:00
## 898  2022-12-16 23:32:04      TRUE 2022-12-17 00:00:00
## 899  2022-12-16 23:32:02      TRUE 2022-12-17 00:00:00
## 900  2022-12-16 23:32:02      TRUE 2022-12-17 00:00:00
## 901  2022-12-16 23:31:53      TRUE 2022-12-17 00:00:00
## 902  2022-12-16 23:31:53      TRUE 2022-12-17 00:00:00
## 903  2022-12-16 23:31:53      TRUE 2022-12-17 00:00:00
## 904  2022-12-16 23:31:49      TRUE 2022-12-17 00:00:00
## 905  2022-12-16 23:31:48      TRUE 2022-12-17 00:00:00
## 906  2022-12-16 23:31:47      TRUE 2022-12-17 00:00:00
## 907  2022-12-16 23:31:43      TRUE 2022-12-17 00:00:00
## 908  2022-12-16 23:31:42      TRUE 2022-12-17 00:00:00
## 909  2022-12-16 23:31:39      TRUE 2022-12-17 00:00:00
## 910  2022-12-16 23:31:39      TRUE 2022-12-17 00:00:00
## 911  2022-12-16 23:31:36      TRUE 2022-12-17 00:00:00
## 912  2022-12-16 23:31:28      TRUE 2022-12-17 00:00:00
## 913  2022-12-16 23:31:26      TRUE 2022-12-17 00:00:00
## 914  2022-12-16 23:31:26      TRUE 2022-12-17 00:00:00
## 915  2022-12-16 23:31:26      TRUE 2022-12-17 00:00:00
## 916  2022-12-16 23:31:25      TRUE 2022-12-17 00:00:00
## 917  2022-12-16 23:31:21      TRUE 2022-12-17 00:00:00
## 918  2022-12-16 23:31:21      TRUE 2022-12-17 00:00:00
## 919  2022-12-16 23:31:16      TRUE 2022-12-17 00:00:00
## 920  2022-12-16 23:31:13      TRUE 2022-12-17 00:00:00
## 921  2022-12-16 23:31:12      TRUE 2022-12-17 00:00:00
## 922  2022-12-16 23:31:10      TRUE 2022-12-17 00:00:00
## 923  2022-12-16 23:31:09      TRUE 2022-12-17 00:00:00
## 924  2022-12-16 23:31:06      TRUE 2022-12-17 00:00:00
## 925  2022-12-16 23:31:06      TRUE 2022-12-17 00:00:00
## 926  2022-12-16 23:31:06      TRUE 2022-12-17 00:00:00
## 927  2022-12-16 23:31:02      TRUE 2022-12-17 00:00:00
## 928  2022-12-16 23:31:02      TRUE 2022-12-17 00:00:00
## 929  2022-12-16 23:30:58      TRUE 2022-12-17 00:00:00
## 930  2022-12-16 23:30:56      TRUE 2022-12-17 00:00:00
## 931  2022-12-16 23:30:54      TRUE 2022-12-17 00:00:00
## 932  2022-12-16 23:30:51      TRUE 2022-12-17 00:00:00
## 933  2022-12-16 23:30:49      TRUE 2022-12-17 00:00:00
## 934  2022-12-16 23:30:48      TRUE 2022-12-17 00:00:00
## 935  2022-12-16 23:30:47      TRUE 2022-12-17 00:00:00
## 936  2022-12-16 23:30:46      TRUE 2022-12-17 00:00:00
## 937  2022-12-16 23:30:46      TRUE 2022-12-17 00:00:00
## 938  2022-12-16 23:30:45      TRUE 2022-12-17 00:00:00
## 939  2022-12-16 23:30:40      TRUE 2022-12-17 00:00:00
## 940  2022-12-16 23:30:36      TRUE 2022-12-17 00:00:00
## 941  2022-12-16 23:30:33      TRUE 2022-12-17 00:00:00
## 942  2022-12-16 23:30:31      TRUE 2022-12-17 00:00:00
## 943  2022-12-16 23:30:29      TRUE 2022-12-17 00:00:00
## 944  2022-12-16 23:30:28      TRUE 2022-12-17 00:00:00
## 945  2022-12-16 23:30:25      TRUE 2022-12-17 00:00:00
## 946  2022-12-16 23:30:23      TRUE 2022-12-17 00:00:00
## 947  2022-12-16 23:30:22      TRUE 2022-12-17 00:00:00
## 948  2022-12-16 23:30:17      TRUE 2022-12-17 00:00:00
## 949  2022-12-16 23:30:13      TRUE 2022-12-17 00:00:00
## 950  2022-12-16 23:30:11      TRUE 2022-12-17 00:00:00
## 951  2022-12-16 23:30:10      TRUE 2022-12-17 00:00:00
## 952  2022-12-16 23:30:09      TRUE 2022-12-17 00:00:00
## 953  2022-12-16 23:30:02      TRUE 2022-12-17 00:00:00
## 954  2022-12-16 23:30:02      TRUE 2022-12-17 00:00:00
## 955  2022-12-16 23:30:00      TRUE 2022-12-17 00:00:00
## 956  2022-12-16 23:29:59      TRUE 2022-12-16 23:00:00
## 957  2022-12-16 23:29:56      TRUE 2022-12-16 23:00:00
## 958  2022-12-16 23:29:55      TRUE 2022-12-16 23:00:00
## 959  2022-12-16 23:29:54      TRUE 2022-12-16 23:00:00
## 960  2022-12-16 23:29:54      TRUE 2022-12-16 23:00:00
## 961  2022-12-16 23:29:50      TRUE 2022-12-16 23:00:00
## 962  2022-12-16 23:29:48      TRUE 2022-12-16 23:00:00
## 963  2022-12-16 23:29:48      TRUE 2022-12-16 23:00:00
## 964  2022-12-16 23:29:46      TRUE 2022-12-16 23:00:00
## 965  2022-12-16 23:29:45      TRUE 2022-12-16 23:00:00
## 966  2022-12-16 23:29:45      TRUE 2022-12-16 23:00:00
## 967  2022-12-16 23:29:40      TRUE 2022-12-16 23:00:00
## 968  2022-12-16 23:29:36      TRUE 2022-12-16 23:00:00
## 969  2022-12-16 23:29:36      TRUE 2022-12-16 23:00:00
## 970  2022-12-16 23:29:31      TRUE 2022-12-16 23:00:00
## 971  2022-12-16 23:29:30      TRUE 2022-12-16 23:00:00
## 972  2022-12-16 23:29:26      TRUE 2022-12-16 23:00:00
## 973  2022-12-16 23:29:21      TRUE 2022-12-16 23:00:00
## 974  2022-12-16 23:29:21      TRUE 2022-12-16 23:00:00
## 975  2022-12-16 23:29:19      TRUE 2022-12-16 23:00:00
## 976  2022-12-16 23:29:19      TRUE 2022-12-16 23:00:00
## 977  2022-12-16 23:29:19      TRUE 2022-12-16 23:00:00
## 978  2022-12-16 23:29:18      TRUE 2022-12-16 23:00:00
## 979  2022-12-16 23:29:13      TRUE 2022-12-16 23:00:00
## 980  2022-12-16 23:29:09      TRUE 2022-12-16 23:00:00
## 981  2022-12-16 23:29:08      TRUE 2022-12-16 23:00:00
## 982  2022-12-16 23:29:08      TRUE 2022-12-16 23:00:00
## 983  2022-12-16 23:29:07      TRUE 2022-12-16 23:00:00
## 984  2022-12-16 23:29:05      TRUE 2022-12-16 23:00:00
## 985  2022-12-16 23:29:01      TRUE 2022-12-16 23:00:00
## 986  2022-12-16 23:28:56      TRUE 2022-12-16 23:00:00
## 987  2022-12-16 23:28:53      TRUE 2022-12-16 23:00:00
## 988  2022-12-16 23:28:53      TRUE 2022-12-16 23:00:00
## 989  2022-12-16 23:28:48      TRUE 2022-12-16 23:00:00
## 990  2022-12-16 23:28:45      TRUE 2022-12-16 23:00:00
## 991  2022-12-16 23:28:44      TRUE 2022-12-16 23:00:00
## 992  2022-12-16 23:28:40      TRUE 2022-12-16 23:00:00
## 993  2022-12-16 23:28:39      TRUE 2022-12-16 23:00:00
## 994  2022-12-16 23:28:35      TRUE 2022-12-16 23:00:00
## 995  2022-12-16 23:28:32      TRUE 2022-12-16 23:00:00
## 996  2022-12-16 23:28:31      TRUE 2022-12-16 23:00:00
## 997  2022-12-16 23:28:30      TRUE 2022-12-16 23:00:00
## 998  2022-12-16 23:28:26      TRUE 2022-12-16 23:00:00
## 999  2022-12-16 23:28:25      TRUE 2022-12-16 23:00:00
## 1000 2022-12-16 23:28:25      TRUE 2022-12-16 23:00:00
## 1001 2022-12-16 23:28:25      TRUE 2022-12-16 23:00:00
## 1002 2022-12-16 23:28:22      TRUE 2022-12-16 23:00:00
## 1003 2022-12-16 23:28:22      TRUE 2022-12-16 23:00:00
## 1004 2022-12-16 23:28:18      TRUE 2022-12-16 23:00:00
## 1005 2022-12-16 23:28:17      TRUE 2022-12-16 23:00:00
## 1006 2022-12-16 23:28:13      TRUE 2022-12-16 23:00:00
## 1007 2022-12-16 23:28:12      TRUE 2022-12-16 23:00:00
## 1008 2022-12-16 23:28:11      TRUE 2022-12-16 23:00:00
## 1009 2022-12-16 23:28:08      TRUE 2022-12-16 23:00:00
## 1010 2022-12-16 23:28:08      TRUE 2022-12-16 23:00:00
## 1011 2022-12-16 23:28:07      TRUE 2022-12-16 23:00:00
## 1012 2022-12-16 23:28:06      TRUE 2022-12-16 23:00:00
## 1013 2022-12-16 23:28:05      TRUE 2022-12-16 23:00:00
## 1014 2022-12-16 23:28:04      TRUE 2022-12-16 23:00:00
## 1015 2022-12-16 23:27:59      TRUE 2022-12-16 23:00:00
## 1016 2022-12-16 23:27:57      TRUE 2022-12-16 23:00:00
## 1017 2022-12-16 23:27:57      TRUE 2022-12-16 23:00:00
## 1018 2022-12-16 23:27:56      TRUE 2022-12-16 23:00:00
## 1019 2022-12-16 23:27:55      TRUE 2022-12-16 23:00:00
## 1020 2022-12-16 23:27:54      TRUE 2022-12-16 23:00:00
## 1021 2022-12-16 23:27:52      TRUE 2022-12-16 23:00:00
## 1022 2022-12-16 23:27:49      TRUE 2022-12-16 23:00:00
## 1023 2022-12-16 23:27:46      TRUE 2022-12-16 23:00:00
## 1024 2022-12-16 23:27:44      TRUE 2022-12-16 23:00:00
## 1025 2022-12-16 23:27:44      TRUE 2022-12-16 23:00:00
## 1026 2022-12-16 23:27:43      TRUE 2022-12-16 23:00:00
## 1027 2022-12-16 23:27:42      TRUE 2022-12-16 23:00:00
## 1028 2022-12-16 23:27:42      TRUE 2022-12-16 23:00:00
## 1029 2022-12-16 23:27:42      TRUE 2022-12-16 23:00:00
## 1030 2022-12-16 23:27:38      TRUE 2022-12-16 23:00:00
## 1031 2022-12-16 23:27:36      TRUE 2022-12-16 23:00:00
## 1032 2022-12-16 23:27:35      TRUE 2022-12-16 23:00:00
## 1033 2022-12-16 23:27:33      TRUE 2022-12-16 23:00:00
## 1034 2022-12-16 23:27:29      TRUE 2022-12-16 23:00:00
## 1035 2022-12-16 23:27:27      TRUE 2022-12-16 23:00:00
## 1036 2022-12-16 23:27:27      TRUE 2022-12-16 23:00:00
## 1037 2022-12-16 23:27:26      TRUE 2022-12-16 23:00:00
## 1038 2022-12-16 23:27:26      TRUE 2022-12-16 23:00:00
## 1039 2022-12-16 23:27:26      TRUE 2022-12-16 23:00:00
## 1040 2022-12-16 23:27:24      TRUE 2022-12-16 23:00:00
## 1041 2022-12-16 23:27:23      TRUE 2022-12-16 23:00:00
## 1042 2022-12-16 23:27:23      TRUE 2022-12-16 23:00:00
## 1043 2022-12-16 23:27:21      TRUE 2022-12-16 23:00:00
## 1044 2022-12-16 23:27:21      TRUE 2022-12-16 23:00:00
## 1045 2022-12-16 23:27:19      TRUE 2022-12-16 23:00:00
## 1046 2022-12-16 23:27:18      TRUE 2022-12-16 23:00:00
## 1047 2022-12-16 23:27:11      TRUE 2022-12-16 23:00:00
## 1048 2022-12-16 23:27:11      TRUE 2022-12-16 23:00:00
## 1049 2022-12-16 23:27:10      TRUE 2022-12-16 23:00:00
## 1050 2022-12-16 23:27:09      TRUE 2022-12-16 23:00:00
## 1051 2022-12-16 23:27:03      TRUE 2022-12-16 23:00:00
## 1052 2022-12-16 23:27:03      TRUE 2022-12-16 23:00:00
## 1053 2022-12-16 23:27:01      TRUE 2022-12-16 23:00:00
## 1054 2022-12-16 23:27:00      TRUE 2022-12-16 23:00:00
## 1055 2022-12-16 23:27:00      TRUE 2022-12-16 23:00:00
## 1056 2022-12-16 23:26:59      TRUE 2022-12-16 23:00:00
## 1057 2022-12-16 23:26:59      TRUE 2022-12-16 23:00:00
## 1058 2022-12-16 23:26:59      TRUE 2022-12-16 23:00:00
## 1059 2022-12-16 23:26:58      TRUE 2022-12-16 23:00:00
## 1060 2022-12-16 23:26:54      TRUE 2022-12-16 23:00:00
## 1061 2022-12-16 23:26:54      TRUE 2022-12-16 23:00:00
## 1062 2022-12-16 23:26:53      TRUE 2022-12-16 23:00:00
## 1063 2022-12-16 23:26:49      TRUE 2022-12-16 23:00:00
## 1064 2022-12-16 23:26:46      TRUE 2022-12-16 23:00:00
## 1065 2022-12-16 23:26:44      TRUE 2022-12-16 23:00:00
## 1066 2022-12-16 23:26:43      TRUE 2022-12-16 23:00:00
## 1067 2022-12-16 23:26:41      TRUE 2022-12-16 23:00:00
## 1068 2022-12-16 23:26:40      TRUE 2022-12-16 23:00:00
## 1069 2022-12-16 23:26:36      TRUE 2022-12-16 23:00:00
## 1070 2022-12-16 23:26:33      TRUE 2022-12-16 23:00:00
## 1071 2022-12-16 23:26:32      TRUE 2022-12-16 23:00:00
## 1072 2022-12-16 23:26:29      TRUE 2022-12-16 23:00:00
## 1073 2022-12-16 23:26:28      TRUE 2022-12-16 23:00:00
## 1074 2022-12-16 23:26:27      TRUE 2022-12-16 23:00:00
## 1075 2022-12-16 23:26:25      TRUE 2022-12-16 23:00:00
## 1076 2022-12-16 23:26:21      TRUE 2022-12-16 23:00:00
## 1077 2022-12-16 23:26:18      TRUE 2022-12-16 23:00:00
## 1078 2022-12-16 23:26:15      TRUE 2022-12-16 23:00:00
## 1079 2022-12-16 23:26:13      TRUE 2022-12-16 23:00:00
## 1080 2022-12-16 23:26:09      TRUE 2022-12-16 23:00:00
## 1081 2022-12-16 23:26:07      TRUE 2022-12-16 23:00:00
## 1082 2022-12-16 23:26:07      TRUE 2022-12-16 23:00:00
## 1083 2022-12-16 23:26:06      TRUE 2022-12-16 23:00:00
## 1084 2022-12-16 23:26:05      TRUE 2022-12-16 23:00:00
## 1085 2022-12-16 23:25:57      TRUE 2022-12-16 23:00:00
## 1086 2022-12-16 23:25:56      TRUE 2022-12-16 23:00:00
## 1087 2022-12-16 23:25:50      TRUE 2022-12-16 23:00:00
## 1088 2022-12-16 23:25:45      TRUE 2022-12-16 23:00:00
## 1089 2022-12-16 23:25:41      TRUE 2022-12-16 23:00:00
## 1090 2022-12-16 23:25:39      TRUE 2022-12-16 23:00:00
## 1091 2022-12-16 23:25:39      TRUE 2022-12-16 23:00:00
## 1092 2022-12-16 23:25:35      TRUE 2022-12-16 23:00:00
## 1093 2022-12-16 23:25:35      TRUE 2022-12-16 23:00:00
## 1094 2022-12-16 23:25:34      TRUE 2022-12-16 23:00:00
## 1095 2022-12-16 23:25:30      TRUE 2022-12-16 23:00:00
## 1096 2022-12-16 23:25:29      TRUE 2022-12-16 23:00:00
## 1097 2022-12-16 23:25:29      TRUE 2022-12-16 23:00:00
## 1098 2022-12-16 23:25:28      TRUE 2022-12-16 23:00:00
## 1099 2022-12-16 23:25:24      TRUE 2022-12-16 23:00:00
## 1100 2022-12-16 23:25:23      TRUE 2022-12-16 23:00:00
## 1101 2022-12-16 23:25:23      TRUE 2022-12-16 23:00:00
## 1102 2022-12-16 23:25:21      TRUE 2022-12-16 23:00:00
## 1103 2022-12-16 23:25:20      TRUE 2022-12-16 23:00:00
## 1104 2022-12-16 23:25:19      TRUE 2022-12-16 23:00:00
## 1105 2022-12-16 23:25:12      TRUE 2022-12-16 23:00:00
## 1106 2022-12-16 23:25:07      TRUE 2022-12-16 23:00:00
## 1107 2022-12-16 23:25:06      TRUE 2022-12-16 23:00:00
## 1108 2022-12-16 23:25:04      TRUE 2022-12-16 23:00:00
## 1109 2022-12-16 23:25:00      TRUE 2022-12-16 23:00:00
## 1110 2022-12-16 23:24:59      TRUE 2022-12-16 23:00:00
## 1111 2022-12-16 23:24:59      TRUE 2022-12-16 23:00:00
## 1112 2022-12-16 23:24:57      TRUE 2022-12-16 23:00:00
## 1113 2022-12-16 23:24:55      TRUE 2022-12-16 23:00:00
## 1114 2022-12-16 23:24:48      TRUE 2022-12-16 23:00:00
## 1115 2022-12-16 23:24:45      TRUE 2022-12-16 23:00:00
## 1116 2022-12-16 23:24:42      TRUE 2022-12-16 23:00:00
## 1117 2022-12-16 23:24:42      TRUE 2022-12-16 23:00:00
## 1118 2022-12-16 23:24:36      TRUE 2022-12-16 23:00:00
## 1119 2022-12-16 23:24:22      TRUE 2022-12-16 23:00:00
## 1120 2022-12-16 23:24:21      TRUE 2022-12-16 23:00:00
## 1121 2022-12-16 23:24:19      TRUE 2022-12-16 23:00:00
## 1122 2022-12-16 23:24:18      TRUE 2022-12-16 23:00:00
## 1123 2022-12-16 23:24:12      TRUE 2022-12-16 23:00:00
## 1124 2022-12-16 23:24:08      TRUE 2022-12-16 23:00:00
## 1125 2022-12-16 23:24:05      TRUE 2022-12-16 23:00:00
## 1126 2022-12-16 23:24:05      TRUE 2022-12-16 23:00:00
## 1127 2022-12-16 23:24:05      TRUE 2022-12-16 23:00:00
## 1128 2022-12-16 23:24:00      TRUE 2022-12-16 23:00:00
## 1129 2022-12-16 23:23:58      TRUE 2022-12-16 23:00:00
## 1130 2022-12-16 23:23:55      TRUE 2022-12-16 23:00:00
## 1131 2022-12-16 23:23:54      TRUE 2022-12-16 23:00:00
## 1132 2022-12-16 23:23:52      TRUE 2022-12-16 23:00:00
## 1133 2022-12-16 23:23:50      TRUE 2022-12-16 23:00:00
## 1134 2022-12-16 23:23:50      TRUE 2022-12-16 23:00:00
## 1135 2022-12-16 23:23:46      TRUE 2022-12-16 23:00:00
## 1136 2022-12-16 23:23:45      TRUE 2022-12-16 23:00:00
## 1137 2022-12-16 23:23:45      TRUE 2022-12-16 23:00:00
## 1138 2022-12-16 23:23:40      TRUE 2022-12-16 23:00:00
## 1139 2022-12-16 23:23:39      TRUE 2022-12-16 23:00:00
## 1140 2022-12-16 23:23:38      TRUE 2022-12-16 23:00:00
## 1141 2022-12-16 23:23:34      TRUE 2022-12-16 23:00:00
## 1142 2022-12-16 23:23:32      TRUE 2022-12-16 23:00:00
## 1143 2022-12-16 23:23:31      TRUE 2022-12-16 23:00:00
## 1144 2022-12-16 23:23:28      TRUE 2022-12-16 23:00:00
## 1145 2022-12-16 23:23:21      TRUE 2022-12-16 23:00:00
## 1146 2022-12-16 23:23:19      TRUE 2022-12-16 23:00:00
## 1147 2022-12-16 23:23:15      TRUE 2022-12-16 23:00:00
## 1148 2022-12-16 23:23:14      TRUE 2022-12-16 23:00:00
## 1149 2022-12-16 23:23:13      TRUE 2022-12-16 23:00:00
## 1150 2022-12-16 23:23:11      TRUE 2022-12-16 23:00:00
## 1151 2022-12-16 23:23:07      TRUE 2022-12-16 23:00:00
## 1152 2022-12-16 23:23:01      TRUE 2022-12-16 23:00:00
## 1153 2022-12-16 23:23:00      TRUE 2022-12-16 23:00:00
## 1154 2022-12-16 23:22:59      TRUE 2022-12-16 23:00:00
## 1155 2022-12-16 23:22:58      TRUE 2022-12-16 23:00:00
## 1156 2022-12-16 23:22:58      TRUE 2022-12-16 23:00:00
## 1157 2022-12-16 23:22:52      TRUE 2022-12-16 23:00:00
## 1158 2022-12-16 23:22:50      TRUE 2022-12-16 23:00:00
## 1159 2022-12-16 23:22:45      TRUE 2022-12-16 23:00:00
## 1160 2022-12-16 23:22:44      TRUE 2022-12-16 23:00:00
## 1161 2022-12-16 23:22:42      TRUE 2022-12-16 23:00:00
## 1162 2022-12-16 23:22:37      TRUE 2022-12-16 23:00:00
## 1163 2022-12-16 23:22:35      TRUE 2022-12-16 23:00:00
## 1164 2022-12-16 23:22:35      TRUE 2022-12-16 23:00:00
## 1165 2022-12-16 23:22:34      TRUE 2022-12-16 23:00:00
## 1166 2022-12-16 23:22:32      TRUE 2022-12-16 23:00:00
## 1167 2022-12-16 23:22:30      TRUE 2022-12-16 23:00:00
## 1168 2022-12-16 23:22:30      TRUE 2022-12-16 23:00:00
## 1169 2022-12-16 23:22:27      TRUE 2022-12-16 23:00:00
## 1170 2022-12-16 23:22:27      TRUE 2022-12-16 23:00:00
## 1171 2022-12-16 23:22:26      TRUE 2022-12-16 23:00:00
## 1172 2022-12-16 23:22:26      TRUE 2022-12-16 23:00:00
## 1173 2022-12-16 23:22:21      TRUE 2022-12-16 23:00:00
## 1174 2022-12-16 23:22:19      TRUE 2022-12-16 23:00:00
## 1175 2022-12-16 23:22:19      TRUE 2022-12-16 23:00:00
## 1176 2022-12-16 23:22:19      TRUE 2022-12-16 23:00:00
## 1177 2022-12-16 23:22:15      TRUE 2022-12-16 23:00:00
## 1178 2022-12-16 23:22:14      TRUE 2022-12-16 23:00:00
## 1179 2022-12-16 23:22:09      TRUE 2022-12-16 23:00:00
## 1180 2022-12-16 23:22:09      TRUE 2022-12-16 23:00:00
## 1181 2022-12-16 23:22:07      TRUE 2022-12-16 23:00:00
## 1182 2022-12-16 23:22:01      TRUE 2022-12-16 23:00:00
## 1183 2022-12-16 23:22:01      TRUE 2022-12-16 23:00:00
## 1184 2022-12-16 23:22:01      TRUE 2022-12-16 23:00:00
## 1185 2022-12-16 23:22:01      TRUE 2022-12-16 23:00:00
## 1186 2022-12-16 23:21:57      TRUE 2022-12-16 23:00:00
## 1187 2022-12-16 23:21:55      TRUE 2022-12-16 23:00:00
## 1188 2022-12-16 23:21:55      TRUE 2022-12-16 23:00:00
## 1189 2022-12-16 23:21:52      TRUE 2022-12-16 23:00:00
## 1190 2022-12-16 23:21:49      TRUE 2022-12-16 23:00:00
## 1191 2022-12-16 23:21:46      TRUE 2022-12-16 23:00:00
## 1192 2022-12-16 23:21:46      TRUE 2022-12-16 23:00:00
## 1193 2022-12-16 23:21:45      TRUE 2022-12-16 23:00:00
## 1194 2022-12-16 23:21:40      TRUE 2022-12-16 23:00:00
## 1195 2022-12-16 23:21:38      TRUE 2022-12-16 23:00:00
## 1196 2022-12-16 23:21:34      TRUE 2022-12-16 23:00:00
## 1197 2022-12-16 23:21:33      TRUE 2022-12-16 23:00:00
## 1198 2022-12-16 23:21:32      TRUE 2022-12-16 23:00:00
## 1199 2022-12-16 23:21:31      TRUE 2022-12-16 23:00:00
## 1200 2022-12-16 23:21:31      TRUE 2022-12-16 23:00:00
## 1201 2022-12-16 23:21:30      TRUE 2022-12-16 23:00:00
## 1202 2022-12-16 23:21:30      TRUE 2022-12-16 23:00:00
## 1203 2022-12-16 23:21:27      TRUE 2022-12-16 23:00:00
## 1204 2022-12-16 23:21:27      TRUE 2022-12-16 23:00:00
## 1205 2022-12-16 23:21:27      TRUE 2022-12-16 23:00:00
## 1206 2022-12-16 23:21:26      TRUE 2022-12-16 23:00:00
## 1207 2022-12-16 23:21:23      TRUE 2022-12-16 23:00:00
## 1208 2022-12-16 23:21:23      TRUE 2022-12-16 23:00:00
## 1209 2022-12-16 23:21:22      TRUE 2022-12-16 23:00:00
## 1210 2022-12-16 23:21:16      TRUE 2022-12-16 23:00:00
## 1211 2022-12-16 23:21:16      TRUE 2022-12-16 23:00:00
## 1212 2022-12-16 23:21:16      TRUE 2022-12-16 23:00:00
## 1213 2022-12-16 23:21:14      TRUE 2022-12-16 23:00:00
## 1214 2022-12-16 23:21:12      TRUE 2022-12-16 23:00:00
## 1215 2022-12-16 23:21:12      TRUE 2022-12-16 23:00:00
## 1216 2022-12-16 23:21:11      TRUE 2022-12-16 23:00:00
## 1217 2022-12-16 23:21:08      TRUE 2022-12-16 23:00:00
## 1218 2022-12-16 23:21:07      TRUE 2022-12-16 23:00:00
## 1219 2022-12-16 23:21:04      TRUE 2022-12-16 23:00:00
## 1220 2022-12-16 23:21:04      TRUE 2022-12-16 23:00:00
## 1221 2022-12-16 23:21:03      TRUE 2022-12-16 23:00:00
## 1222 2022-12-16 23:21:02      TRUE 2022-12-16 23:00:00
## 1223 2022-12-16 23:21:00      TRUE 2022-12-16 23:00:00
## 1224 2022-12-16 23:20:55      TRUE 2022-12-16 23:00:00
## 1225 2022-12-16 23:20:55      TRUE 2022-12-16 23:00:00
## 1226 2022-12-16 23:20:53      TRUE 2022-12-16 23:00:00
## 1227 2022-12-16 23:20:45      TRUE 2022-12-16 23:00:00
## 1228 2022-12-16 23:20:37      TRUE 2022-12-16 23:00:00
## 1229 2022-12-16 23:20:32      TRUE 2022-12-16 23:00:00
## 1230 2022-12-16 23:20:31      TRUE 2022-12-16 23:00:00
## 1231 2022-12-16 23:20:26      TRUE 2022-12-16 23:00:00
## 1232 2022-12-16 23:20:25      TRUE 2022-12-16 23:00:00
## 1233 2022-12-16 23:20:24      TRUE 2022-12-16 23:00:00
## 1234 2022-12-16 23:20:17      TRUE 2022-12-16 23:00:00
## 1235 2022-12-16 23:20:17      TRUE 2022-12-16 23:00:00
## 1236 2022-12-16 23:20:14      TRUE 2022-12-16 23:00:00
## 1237 2022-12-16 23:20:13      TRUE 2022-12-16 23:00:00
## 1238 2022-12-16 23:20:12      TRUE 2022-12-16 23:00:00
## 1239 2022-12-16 23:20:11      TRUE 2022-12-16 23:00:00
## 1240 2022-12-16 23:20:11      TRUE 2022-12-16 23:00:00
## 1241 2022-12-16 23:20:11      TRUE 2022-12-16 23:00:00
## 1242 2022-12-16 23:20:10      TRUE 2022-12-16 23:00:00
## 1243 2022-12-16 23:20:09      TRUE 2022-12-16 23:00:00
## 1244 2022-12-16 23:20:08      TRUE 2022-12-16 23:00:00
## 1245 2022-12-16 23:20:08      TRUE 2022-12-16 23:00:00
## 1246 2022-12-16 23:20:06      TRUE 2022-12-16 23:00:00
## 1247 2022-12-16 23:20:06      TRUE 2022-12-16 23:00:00
## 1248 2022-12-16 23:20:05      TRUE 2022-12-16 23:00:00
## 1249 2022-12-16 23:20:04      TRUE 2022-12-16 23:00:00
## 1250 2022-12-16 23:20:03      TRUE 2022-12-16 23:00:00
## 1251 2022-12-16 23:20:03      TRUE 2022-12-16 23:00:00
## 1252 2022-12-16 23:20:01      TRUE 2022-12-16 23:00:00
## 1253 2022-12-16 23:19:59      TRUE 2022-12-16 23:00:00
## 1254 2022-12-16 23:19:59      TRUE 2022-12-16 23:00:00
## 1255 2022-12-16 23:19:57      TRUE 2022-12-16 23:00:00
## 1256 2022-12-16 23:19:56      TRUE 2022-12-16 23:00:00
## 1257 2022-12-16 23:19:55      TRUE 2022-12-16 23:00:00
## 1258 2022-12-16 23:19:55      TRUE 2022-12-16 23:00:00
## 1259 2022-12-16 23:19:52      TRUE 2022-12-16 23:00:00
## 1260 2022-12-16 23:19:52      TRUE 2022-12-16 23:00:00
## 1261 2022-12-16 23:19:48      TRUE 2022-12-16 23:00:00
## 1262 2022-12-16 23:19:47      TRUE 2022-12-16 23:00:00
## 1263 2022-12-16 23:19:46      TRUE 2022-12-16 23:00:00
## 1264 2022-12-16 23:19:45      TRUE 2022-12-16 23:00:00
## 1265 2022-12-16 23:19:44      TRUE 2022-12-16 23:00:00
## 1266 2022-12-16 23:19:43      TRUE 2022-12-16 23:00:00
## 1267 2022-12-16 23:19:40      TRUE 2022-12-16 23:00:00
## 1268 2022-12-16 23:19:38      TRUE 2022-12-16 23:00:00
## 1269 2022-12-16 23:19:38      TRUE 2022-12-16 23:00:00
## 1270 2022-12-16 23:19:36      TRUE 2022-12-16 23:00:00
## 1271 2022-12-16 23:19:35      TRUE 2022-12-16 23:00:00
## 1272 2022-12-16 23:19:34      TRUE 2022-12-16 23:00:00
## 1273 2022-12-16 23:19:31      TRUE 2022-12-16 23:00:00
## 1274 2022-12-16 23:19:30      TRUE 2022-12-16 23:00:00
## 1275 2022-12-16 23:19:24      TRUE 2022-12-16 23:00:00
## 1276 2022-12-16 23:19:20      TRUE 2022-12-16 23:00:00
## 1277 2022-12-16 23:19:19      TRUE 2022-12-16 23:00:00
## 1278 2022-12-16 23:19:18      TRUE 2022-12-16 23:00:00
## 1279 2022-12-16 23:19:17      TRUE 2022-12-16 23:00:00
## 1280 2022-12-16 23:19:15      TRUE 2022-12-16 23:00:00
## 1281 2022-12-16 23:19:10      TRUE 2022-12-16 23:00:00
## 1282 2022-12-16 23:19:09      TRUE 2022-12-16 23:00:00
## 1283 2022-12-16 23:19:08      TRUE 2022-12-16 23:00:00
## 1284 2022-12-16 23:19:04      TRUE 2022-12-16 23:00:00
## 1285 2022-12-16 23:19:03      TRUE 2022-12-16 23:00:00
## 1286 2022-12-16 23:19:02      TRUE 2022-12-16 23:00:00
## 1287 2022-12-16 23:19:00      TRUE 2022-12-16 23:00:00
## 1288 2022-12-16 23:19:00      TRUE 2022-12-16 23:00:00
## 1289 2022-12-16 23:18:59      TRUE 2022-12-16 23:00:00
## 1290 2022-12-16 23:18:59      TRUE 2022-12-16 23:00:00
## 1291 2022-12-16 23:18:55      TRUE 2022-12-16 23:00:00
## 1292 2022-12-16 23:18:53      TRUE 2022-12-16 23:00:00
## 1293 2022-12-16 23:18:52      TRUE 2022-12-16 23:00:00
## 1294 2022-12-16 23:18:50      TRUE 2022-12-16 23:00:00
## 1295 2022-12-16 23:18:48      TRUE 2022-12-16 23:00:00
## 1296 2022-12-16 23:18:47      TRUE 2022-12-16 23:00:00
## 1297 2022-12-16 23:18:47      TRUE 2022-12-16 23:00:00
## 1298 2022-12-16 23:18:46      TRUE 2022-12-16 23:00:00
## 1299 2022-12-16 23:18:44      TRUE 2022-12-16 23:00:00
## 1300 2022-12-16 23:18:43      TRUE 2022-12-16 23:00:00
## 1301 2022-12-16 23:18:43      TRUE 2022-12-16 23:00:00
## 1302 2022-12-16 23:18:42      TRUE 2022-12-16 23:00:00
## 1303 2022-12-16 23:18:42      TRUE 2022-12-16 23:00:00
## 1304 2022-12-16 23:18:41      TRUE 2022-12-16 23:00:00
## 1305 2022-12-16 23:18:38      TRUE 2022-12-16 23:00:00
## 1306 2022-12-16 23:18:37      TRUE 2022-12-16 23:00:00
## 1307 2022-12-16 23:18:36      TRUE 2022-12-16 23:00:00
## 1308 2022-12-16 23:18:34      TRUE 2022-12-16 23:00:00
## 1309 2022-12-16 23:18:31      TRUE 2022-12-16 23:00:00
## 1310 2022-12-16 23:18:30      TRUE 2022-12-16 23:00:00
## 1311 2022-12-16 23:18:29      TRUE 2022-12-16 23:00:00
## 1312 2022-12-16 23:18:28      TRUE 2022-12-16 23:00:00
## 1313 2022-12-16 23:18:24      TRUE 2022-12-16 23:00:00
## 1314 2022-12-16 23:18:24      TRUE 2022-12-16 23:00:00
## 1315 2022-12-16 23:18:16      TRUE 2022-12-16 23:00:00
## 1316 2022-12-16 23:18:16      TRUE 2022-12-16 23:00:00
## 1317 2022-12-16 23:18:15      TRUE 2022-12-16 23:00:00
## 1318 2022-12-16 23:18:13      TRUE 2022-12-16 23:00:00
## 1319 2022-12-16 23:18:12      TRUE 2022-12-16 23:00:00
## 1320 2022-12-16 23:18:11      TRUE 2022-12-16 23:00:00
## 1321 2022-12-16 23:18:08      TRUE 2022-12-16 23:00:00
## 1322 2022-12-16 23:18:07      TRUE 2022-12-16 23:00:00
## 1323 2022-12-16 23:18:05      TRUE 2022-12-16 23:00:00
## 1324 2022-12-16 23:18:04      TRUE 2022-12-16 23:00:00
## 1325 2022-12-16 23:18:04      TRUE 2022-12-16 23:00:00
## 1326 2022-12-16 23:18:02      TRUE 2022-12-16 23:00:00
## 1327 2022-12-16 23:18:01      TRUE 2022-12-16 23:00:00
## 1328 2022-12-16 23:17:53      TRUE 2022-12-16 23:00:00
## 1329 2022-12-16 23:17:53      TRUE 2022-12-16 23:00:00
## 1330 2022-12-16 23:17:45      TRUE 2022-12-16 23:00:00
## 1331 2022-12-16 23:17:42      TRUE 2022-12-16 23:00:00
## 1332 2022-12-16 23:17:40      TRUE 2022-12-16 23:00:00
## 1333 2022-12-16 23:17:37      TRUE 2022-12-16 23:00:00
## 1334 2022-12-16 23:17:37      TRUE 2022-12-16 23:00:00
## 1335 2022-12-16 23:17:30      TRUE 2022-12-16 23:00:00
## 1336 2022-12-16 23:17:27      TRUE 2022-12-16 23:00:00
## 1337 2022-12-16 23:17:25      TRUE 2022-12-16 23:00:00
## 1338 2022-12-16 23:17:23      TRUE 2022-12-16 23:00:00
## 1339 2022-12-16 23:17:23      TRUE 2022-12-16 23:00:00
## 1340 2022-12-16 23:17:23      TRUE 2022-12-16 23:00:00
## 1341 2022-12-16 23:17:18      TRUE 2022-12-16 23:00:00
## 1342 2022-12-16 23:17:17      TRUE 2022-12-16 23:00:00
## 1343 2022-12-16 23:17:17      TRUE 2022-12-16 23:00:00
## 1344 2022-12-16 23:17:16      TRUE 2022-12-16 23:00:00
## 1345 2022-12-16 23:17:14      TRUE 2022-12-16 23:00:00
## 1346 2022-12-16 23:17:12      TRUE 2022-12-16 23:00:00
## 1347 2022-12-16 23:17:11      TRUE 2022-12-16 23:00:00
## 1348 2022-12-16 23:17:10      TRUE 2022-12-16 23:00:00
## 1349 2022-12-16 23:17:08      TRUE 2022-12-16 23:00:00
## 1350 2022-12-16 23:17:07      TRUE 2022-12-16 23:00:00
## 1351 2022-12-16 23:17:03      TRUE 2022-12-16 23:00:00
## 1352 2022-12-16 23:17:03      TRUE 2022-12-16 23:00:00
## 1353 2022-12-16 23:17:01      TRUE 2022-12-16 23:00:00
## 1354 2022-12-16 23:17:01      TRUE 2022-12-16 23:00:00
## 1355 2022-12-16 23:16:57      TRUE 2022-12-16 23:00:00
## 1356 2022-12-16 23:16:56      TRUE 2022-12-16 23:00:00
## 1357 2022-12-16 23:16:55      TRUE 2022-12-16 23:00:00
## 1358 2022-12-16 23:16:54      TRUE 2022-12-16 23:00:00
## 1359 2022-12-16 23:16:53      TRUE 2022-12-16 23:00:00
## 1360 2022-12-16 23:16:49      TRUE 2022-12-16 23:00:00
## 1361 2022-12-16 23:16:44      TRUE 2022-12-16 23:00:00
## 1362 2022-12-16 23:16:44      TRUE 2022-12-16 23:00:00
## 1363 2022-12-16 23:16:44      TRUE 2022-12-16 23:00:00
## 1364 2022-12-16 23:16:43      TRUE 2022-12-16 23:00:00
## 1365 2022-12-16 23:16:43      TRUE 2022-12-16 23:00:00
## 1366 2022-12-16 23:16:42      TRUE 2022-12-16 23:00:00
## 1367 2022-12-16 23:16:41      TRUE 2022-12-16 23:00:00
## 1368 2022-12-16 23:16:40      TRUE 2022-12-16 23:00:00
## 1369 2022-12-16 23:16:39      TRUE 2022-12-16 23:00:00
## 1370 2022-12-16 23:16:39      TRUE 2022-12-16 23:00:00
## 1371 2022-12-16 23:16:38      TRUE 2022-12-16 23:00:00
## 1372 2022-12-16 23:16:36      TRUE 2022-12-16 23:00:00
## 1373 2022-12-16 23:16:34      TRUE 2022-12-16 23:00:00
## 1374 2022-12-16 23:16:32      TRUE 2022-12-16 23:00:00
## 1375 2022-12-16 23:16:29      TRUE 2022-12-16 23:00:00
## 1376 2022-12-16 23:16:29      TRUE 2022-12-16 23:00:00
## 1377 2022-12-16 23:16:28      TRUE 2022-12-16 23:00:00
## 1378 2022-12-16 23:16:24      TRUE 2022-12-16 23:00:00
## 1379 2022-12-16 23:16:24      TRUE 2022-12-16 23:00:00
## 1380 2022-12-16 23:16:20      TRUE 2022-12-16 23:00:00
## 1381 2022-12-16 23:16:20      TRUE 2022-12-16 23:00:00
## 1382 2022-12-16 23:16:20      TRUE 2022-12-16 23:00:00
## 1383 2022-12-16 23:16:19      TRUE 2022-12-16 23:00:00
## 1384 2022-12-16 23:16:14      TRUE 2022-12-16 23:00:00
## 1385 2022-12-16 23:16:14      TRUE 2022-12-16 23:00:00
## 1386 2022-12-16 23:16:07      TRUE 2022-12-16 23:00:00
## 1387 2022-12-16 23:16:04      TRUE 2022-12-16 23:00:00
## 1388 2022-12-16 23:16:03      TRUE 2022-12-16 23:00:00
## 1389 2022-12-16 23:16:03      TRUE 2022-12-16 23:00:00
## 1390 2022-12-16 23:16:02      TRUE 2022-12-16 23:00:00
## 1391 2022-12-16 23:16:02      TRUE 2022-12-16 23:00:00
## 1392 2022-12-16 23:16:00      TRUE 2022-12-16 23:00:00
## 1393 2022-12-16 23:16:00      TRUE 2022-12-16 23:00:00
## 1394 2022-12-16 23:15:59      TRUE 2022-12-16 23:00:00
## 1395 2022-12-16 23:15:57      TRUE 2022-12-16 23:00:00
## 1396 2022-12-16 23:15:57      TRUE 2022-12-16 23:00:00
## 1397 2022-12-16 23:15:54      TRUE 2022-12-16 23:00:00
## 1398 2022-12-16 23:15:51      TRUE 2022-12-16 23:00:00
## 1399 2022-12-16 23:15:47      TRUE 2022-12-16 23:00:00
## 1400 2022-12-16 23:15:45      TRUE 2022-12-16 23:00:00
## 1401 2022-12-16 23:15:45      TRUE 2022-12-16 23:00:00
## 1402 2022-12-16 23:15:44      TRUE 2022-12-16 23:00:00
## 1403 2022-12-16 23:15:43      TRUE 2022-12-16 23:00:00
## 1404 2022-12-16 23:15:42      TRUE 2022-12-16 23:00:00
## 1405 2022-12-16 23:15:41      TRUE 2022-12-16 23:00:00
## 1406 2022-12-16 23:15:41      TRUE 2022-12-16 23:00:00
## 1407 2022-12-16 23:15:41      TRUE 2022-12-16 23:00:00
## 1408 2022-12-16 23:15:41      TRUE 2022-12-16 23:00:00
## 1409 2022-12-16 23:15:40      TRUE 2022-12-16 23:00:00
## 1410 2022-12-16 23:15:38      TRUE 2022-12-16 23:00:00
## 1411 2022-12-16 23:15:36      TRUE 2022-12-16 23:00:00
## 1412 2022-12-16 23:15:33      TRUE 2022-12-16 23:00:00
## 1413 2022-12-16 23:15:30      TRUE 2022-12-16 23:00:00
## 1414 2022-12-16 23:15:30      TRUE 2022-12-16 23:00:00
## 1415 2022-12-16 23:15:29      TRUE 2022-12-16 23:00:00
## 1416 2022-12-16 23:15:26      TRUE 2022-12-16 23:00:00
## 1417 2022-12-16 23:15:23      TRUE 2022-12-16 23:00:00
## 1418 2022-12-16 23:15:21      TRUE 2022-12-16 23:00:00
## 1419 2022-12-16 23:15:21      TRUE 2022-12-16 23:00:00
## 1420 2022-12-16 23:15:20      TRUE 2022-12-16 23:00:00
## 1421 2022-12-16 23:15:20      TRUE 2022-12-16 23:00:00
## 1422 2022-12-16 23:15:16      TRUE 2022-12-16 23:00:00
## 1423 2022-12-16 23:15:14      TRUE 2022-12-16 23:00:00
## 1424 2022-12-16 23:15:12      TRUE 2022-12-16 23:00:00
## 1425 2022-12-16 23:15:11      TRUE 2022-12-16 23:00:00
## 1426 2022-12-16 23:15:10      TRUE 2022-12-16 23:00:00
## 1427 2022-12-16 23:15:03      TRUE 2022-12-16 23:00:00
## 1428 2022-12-16 23:15:02      TRUE 2022-12-16 23:00:00
## 1429 2022-12-16 23:15:01      TRUE 2022-12-16 23:00:00
## 1430 2022-12-16 23:14:59      TRUE 2022-12-16 23:00:00
## 1431 2022-12-16 23:14:58      TRUE 2022-12-16 23:00:00
## 1432 2022-12-16 23:14:57      TRUE 2022-12-16 23:00:00
## 1433 2022-12-16 23:14:56      TRUE 2022-12-16 23:00:00
## 1434 2022-12-16 23:14:55      TRUE 2022-12-16 23:00:00
## 1435 2022-12-16 23:14:51      TRUE 2022-12-16 23:00:00
## 1436 2022-12-16 23:14:48      TRUE 2022-12-16 23:00:00
## 1437 2022-12-16 23:14:44      TRUE 2022-12-16 23:00:00
## 1438 2022-12-16 23:14:42      TRUE 2022-12-16 23:00:00
## 1439 2022-12-16 23:14:40      TRUE 2022-12-16 23:00:00
## 1440 2022-12-16 23:14:40      TRUE 2022-12-16 23:00:00
## 1441 2022-12-16 23:14:38      TRUE 2022-12-16 23:00:00
## 1442 2022-12-16 23:14:34      TRUE 2022-12-16 23:00:00
## 1443 2022-12-16 23:14:34      TRUE 2022-12-16 23:00:00
## 1444 2022-12-16 23:14:31      TRUE 2022-12-16 23:00:00
## 1445 2022-12-16 23:14:30      TRUE 2022-12-16 23:00:00
## 1446 2022-12-16 23:14:28      TRUE 2022-12-16 23:00:00
## 1447 2022-12-16 23:14:23      TRUE 2022-12-16 23:00:00
## 1448 2022-12-16 23:14:22      TRUE 2022-12-16 23:00:00
## 1449 2022-12-16 23:14:20      TRUE 2022-12-16 23:00:00
## 1450 2022-12-16 23:14:20      TRUE 2022-12-16 23:00:00
## 1451 2022-12-16 23:14:19      TRUE 2022-12-16 23:00:00
## 1452 2022-12-16 23:14:15      TRUE 2022-12-16 23:00:00
## 1453 2022-12-16 23:14:11      TRUE 2022-12-16 23:00:00
## 1454 2022-12-16 23:14:10      TRUE 2022-12-16 23:00:00
## 1455 2022-12-16 23:14:08      TRUE 2022-12-16 23:00:00
## 1456 2022-12-16 23:14:08      TRUE 2022-12-16 23:00:00
## 1457 2022-12-16 23:14:05      TRUE 2022-12-16 23:00:00
## 1458 2022-12-16 23:13:59      TRUE 2022-12-16 23:00:00
## 1459 2022-12-16 23:13:59      TRUE 2022-12-16 23:00:00
## 1460 2022-12-16 23:13:57      TRUE 2022-12-16 23:00:00
## 1461 2022-12-16 23:13:55      TRUE 2022-12-16 23:00:00
## 1462 2022-12-16 23:13:54      TRUE 2022-12-16 23:00:00
## 1463 2022-12-16 23:13:51      TRUE 2022-12-16 23:00:00
## 1464 2022-12-16 23:13:49      TRUE 2022-12-16 23:00:00
## 1465 2022-12-16 23:13:47      TRUE 2022-12-16 23:00:00
## 1466 2022-12-16 23:13:44      TRUE 2022-12-16 23:00:00
## 1467 2022-12-16 23:13:43      TRUE 2022-12-16 23:00:00
## 1468 2022-12-16 23:13:42      TRUE 2022-12-16 23:00:00
## 1469 2022-12-16 23:13:42      TRUE 2022-12-16 23:00:00
## 1470 2022-12-16 23:13:37      TRUE 2022-12-16 23:00:00
## 1471 2022-12-16 23:13:33      TRUE 2022-12-16 23:00:00
## 1472 2022-12-16 23:13:33      TRUE 2022-12-16 23:00:00
## 1473 2022-12-16 23:13:32      TRUE 2022-12-16 23:00:00
## 1474 2022-12-16 23:13:28      TRUE 2022-12-16 23:00:00
## 1475 2022-12-16 23:13:28      TRUE 2022-12-16 23:00:00
## 1476 2022-12-16 23:13:24      TRUE 2022-12-16 23:00:00
## 1477 2022-12-16 23:13:22      TRUE 2022-12-16 23:00:00
## 1478 2022-12-16 23:13:20      TRUE 2022-12-16 23:00:00
## 1479 2022-12-16 23:13:20      TRUE 2022-12-16 23:00:00
## 1480 2022-12-16 23:13:19      TRUE 2022-12-16 23:00:00
## 1481 2022-12-16 23:13:19      TRUE 2022-12-16 23:00:00
## 1482 2022-12-16 23:13:02      TRUE 2022-12-16 23:00:00
## 1483 2022-12-16 23:12:59      TRUE 2022-12-16 23:00:00
## 1484 2022-12-16 23:12:57      TRUE 2022-12-16 23:00:00
## 1485 2022-12-16 23:12:54      TRUE 2022-12-16 23:00:00
## 1486 2022-12-16 23:12:54      TRUE 2022-12-16 23:00:00
## 1487 2022-12-16 23:12:51      TRUE 2022-12-16 23:00:00
## 1488 2022-12-16 23:12:49      TRUE 2022-12-16 23:00:00
## 1489 2022-12-16 23:12:46      TRUE 2022-12-16 23:00:00
## 1490 2022-12-16 23:12:46      TRUE 2022-12-16 23:00:00
## 1491 2022-12-16 23:12:40      TRUE 2022-12-16 23:00:00
## 1492 2022-12-16 23:12:34      TRUE 2022-12-16 23:00:00
## 1493 2022-12-16 23:12:34      TRUE 2022-12-16 23:00:00
## 1494 2022-12-16 23:12:33      TRUE 2022-12-16 23:00:00
## 1495 2022-12-16 23:12:33      TRUE 2022-12-16 23:00:00
## 1496 2022-12-16 23:12:32      TRUE 2022-12-16 23:00:00
## 1497 2022-12-16 23:12:31      TRUE 2022-12-16 23:00:00
## 1498 2022-12-16 23:12:25      TRUE 2022-12-16 23:00:00
## 1499 2022-12-16 23:12:22      TRUE 2022-12-16 23:00:00
## 1500 2022-12-16 23:12:21      TRUE 2022-12-16 23:00:00
## 1501 2022-12-16 23:12:21      TRUE 2022-12-16 23:00:00
## 1502 2022-12-16 23:12:19      TRUE 2022-12-16 23:00:00
## 1503 2022-12-16 23:12:19      TRUE 2022-12-16 23:00:00
## 1504 2022-12-16 23:12:16      TRUE 2022-12-16 23:00:00
## 1505 2022-12-16 23:12:15      TRUE 2022-12-16 23:00:00
## 1506 2022-12-16 23:12:13      TRUE 2022-12-16 23:00:00
## 1507 2022-12-16 23:12:09      TRUE 2022-12-16 23:00:00
## 1508 2022-12-16 23:12:08      TRUE 2022-12-16 23:00:00
## 1509 2022-12-16 23:12:07      TRUE 2022-12-16 23:00:00
## 1510 2022-12-16 23:11:59      TRUE 2022-12-16 23:00:00
## 1511 2022-12-16 23:11:58      TRUE 2022-12-16 23:00:00
## 1512 2022-12-16 23:11:55      TRUE 2022-12-16 23:00:00
## 1513 2022-12-16 23:11:52      TRUE 2022-12-16 23:00:00
## 1514 2022-12-16 23:11:50      TRUE 2022-12-16 23:00:00
## 1515 2022-12-16 23:11:49      TRUE 2022-12-16 23:00:00
## 1516 2022-12-16 23:11:49      TRUE 2022-12-16 23:00:00
## 1517 2022-12-16 23:11:47      TRUE 2022-12-16 23:00:00
## 1518 2022-12-16 23:11:42      TRUE 2022-12-16 23:00:00
## 1519 2022-12-16 23:11:38      TRUE 2022-12-16 23:00:00
## 1520 2022-12-16 23:10:50      TRUE 2022-12-16 23:00:00
## 1521 2022-12-16 23:10:49      TRUE 2022-12-16 23:00:00
## 1522 2022-12-16 23:10:49      TRUE 2022-12-16 23:00:00
## 1523 2022-12-16 23:10:29      TRUE 2022-12-16 23:00:00
## 1524 2022-12-16 23:10:26      TRUE 2022-12-16 23:00:00
## 1525 2022-12-16 23:10:23      TRUE 2022-12-16 23:00:00
## 1526 2022-12-16 23:10:21      TRUE 2022-12-16 23:00:00
## 1527 2022-12-16 23:10:21      TRUE 2022-12-16 23:00:00
## 1528 2022-12-16 23:10:18      TRUE 2022-12-16 23:00:00
## 1529 2022-12-16 23:10:18      TRUE 2022-12-16 23:00:00
## 1530 2022-12-16 23:10:17      TRUE 2022-12-16 23:00:00
## 1531 2022-12-16 23:10:14      TRUE 2022-12-16 23:00:00
## 1532 2022-12-16 23:10:04      TRUE 2022-12-16 23:00:00
## 1533 2022-12-16 23:10:02      TRUE 2022-12-16 23:00:00
## 1534 2022-12-16 23:10:01      TRUE 2022-12-16 23:00:00
## 1535 2022-12-16 23:10:00      TRUE 2022-12-16 23:00:00
## 1536 2022-12-16 23:09:58      TRUE 2022-12-16 23:00:00
## 1537 2022-12-16 23:09:53      TRUE 2022-12-16 23:00:00
## 1538 2022-12-16 23:09:51      TRUE 2022-12-16 23:00:00
## 1539 2022-12-16 23:09:44      TRUE 2022-12-16 23:00:00
## 1540 2022-12-16 23:09:42      TRUE 2022-12-16 23:00:00
## 1541 2022-12-16 23:09:40      TRUE 2022-12-16 23:00:00
## 1542 2022-12-16 23:09:30      TRUE 2022-12-16 23:00:00
## 1543 2022-12-16 23:09:25      TRUE 2022-12-16 23:00:00
## 1544 2022-12-16 23:09:23      TRUE 2022-12-16 23:00:00
## 1545 2022-12-16 23:09:20      TRUE 2022-12-16 23:00:00
## 1546 2022-12-16 23:09:19      TRUE 2022-12-16 23:00:00
## 1547 2022-12-16 23:09:12      TRUE 2022-12-16 23:00:00
## 1548 2022-12-16 23:09:11      TRUE 2022-12-16 23:00:00
## 1549 2022-12-16 23:09:09      TRUE 2022-12-16 23:00:00
## 1550 2022-12-16 23:09:00      TRUE 2022-12-16 23:00:00
## 1551 2022-12-16 23:08:56      TRUE 2022-12-16 23:00:00
## 1552 2022-12-16 23:08:55      TRUE 2022-12-16 23:00:00
## 1553 2022-12-16 23:08:54      TRUE 2022-12-16 23:00:00
## 1554 2022-12-16 23:08:50      TRUE 2022-12-16 23:00:00
## 1555 2022-12-16 23:08:39      TRUE 2022-12-16 23:00:00
## 1556 2022-12-16 23:08:34      TRUE 2022-12-16 23:00:00
## 1557 2022-12-16 23:08:33      TRUE 2022-12-16 23:00:00
## 1558 2022-12-16 23:08:33      TRUE 2022-12-16 23:00:00
## 1559 2022-12-16 23:08:32      TRUE 2022-12-16 23:00:00
## 1560 2022-12-16 23:08:27      TRUE 2022-12-16 23:00:00
## 1561 2022-12-16 23:08:23      TRUE 2022-12-16 23:00:00
## 1562 2022-12-16 23:08:23      TRUE 2022-12-16 23:00:00
## 1563 2022-12-16 23:08:23      TRUE 2022-12-16 23:00:00
## 1564 2022-12-16 23:08:22      TRUE 2022-12-16 23:00:00
## 1565 2022-12-16 23:08:21      TRUE 2022-12-16 23:00:00
## 1566 2022-12-16 23:08:20      TRUE 2022-12-16 23:00:00
## 1567 2022-12-16 23:08:20      TRUE 2022-12-16 23:00:00
## 1568 2022-12-16 23:08:16      TRUE 2022-12-16 23:00:00
## 1569 2022-12-16 23:08:15      TRUE 2022-12-16 23:00:00
## 1570 2022-12-16 23:08:15      TRUE 2022-12-16 23:00:00
## 1571 2022-12-16 23:08:14      TRUE 2022-12-16 23:00:00
## 1572 2022-12-16 23:08:13      TRUE 2022-12-16 23:00:00
## 1573 2022-12-16 23:08:12      TRUE 2022-12-16 23:00:00
## 1574 2022-12-16 23:08:12      TRUE 2022-12-16 23:00:00
## 1575 2022-12-16 23:08:12      TRUE 2022-12-16 23:00:00
## 1576 2022-12-16 23:08:07      TRUE 2022-12-16 23:00:00
## 1577 2022-12-16 23:08:06      TRUE 2022-12-16 23:00:00
## 1578 2022-12-16 23:08:03      TRUE 2022-12-16 23:00:00
## 1579 2022-12-16 23:08:01      TRUE 2022-12-16 23:00:00
## 1580 2022-12-16 23:08:01      TRUE 2022-12-16 23:00:00
## 1581 2022-12-16 23:07:51      TRUE 2022-12-16 23:00:00
## 1582 2022-12-16 23:07:50      TRUE 2022-12-16 23:00:00
## 1583 2022-12-16 23:07:44      TRUE 2022-12-16 23:00:00
## 1584 2022-12-16 23:07:43      TRUE 2022-12-16 23:00:00
## 1585 2022-12-16 23:07:43      TRUE 2022-12-16 23:00:00
## 1586 2022-12-16 23:07:40      TRUE 2022-12-16 23:00:00
## 1587 2022-12-16 23:07:40      TRUE 2022-12-16 23:00:00
## 1588 2022-12-16 23:07:38      TRUE 2022-12-16 23:00:00
## 1589 2022-12-16 23:07:38      TRUE 2022-12-16 23:00:00
## 1590 2022-12-16 23:07:37      TRUE 2022-12-16 23:00:00
## 1591 2022-12-16 23:07:36      TRUE 2022-12-16 23:00:00
## 1592 2022-12-16 23:07:35      TRUE 2022-12-16 23:00:00
## 1593 2022-12-16 23:07:31      TRUE 2022-12-16 23:00:00
## 1594 2022-12-16 23:07:31      TRUE 2022-12-16 23:00:00
## 1595 2022-12-16 23:07:31      TRUE 2022-12-16 23:00:00
## 1596 2022-12-16 23:07:30      TRUE 2022-12-16 23:00:00
## 1597 2022-12-16 23:07:29      TRUE 2022-12-16 23:00:00
## 1598 2022-12-16 23:07:28      TRUE 2022-12-16 23:00:00
## 1599 2022-12-16 23:07:27      TRUE 2022-12-16 23:00:00
## 1600 2022-12-16 23:07:20      TRUE 2022-12-16 23:00:00
## 1601 2022-12-16 23:07:19      TRUE 2022-12-16 23:00:00
## 1602 2022-12-16 23:07:19      TRUE 2022-12-16 23:00:00
## 1603 2022-12-16 23:07:15      TRUE 2022-12-16 23:00:00
## 1604 2022-12-16 23:07:13      TRUE 2022-12-16 23:00:00
## 1605 2022-12-16 23:07:10      TRUE 2022-12-16 23:00:00
## 1606 2022-12-16 23:07:07      TRUE 2022-12-16 23:00:00
## 1607 2022-12-16 23:07:06      TRUE 2022-12-16 23:00:00
## 1608 2022-12-16 23:07:04      TRUE 2022-12-16 23:00:00
## 1609 2022-12-16 23:06:58      TRUE 2022-12-16 23:00:00
## 1610 2022-12-16 23:06:55      TRUE 2022-12-16 23:00:00
## 1611 2022-12-16 23:06:55      TRUE 2022-12-16 23:00:00
## 1612 2022-12-16 23:06:54      TRUE 2022-12-16 23:00:00
## 1613 2022-12-16 23:06:53      TRUE 2022-12-16 23:00:00
## 1614 2022-12-16 23:06:52      TRUE 2022-12-16 23:00:00
## 1615 2022-12-16 23:06:48      TRUE 2022-12-16 23:00:00
## 1616 2022-12-16 23:06:46      TRUE 2022-12-16 23:00:00
## 1617 2022-12-16 23:06:42      TRUE 2022-12-16 23:00:00
## 1618 2022-12-16 23:06:36      TRUE 2022-12-16 23:00:00
## 1619 2022-12-16 23:06:33      TRUE 2022-12-16 23:00:00
## 1620 2022-12-16 23:06:31      TRUE 2022-12-16 23:00:00
## 1621 2022-12-16 23:06:26      TRUE 2022-12-16 23:00:00
## 1622 2022-12-16 23:06:22      TRUE 2022-12-16 23:00:00
## 1623 2022-12-16 23:06:21      TRUE 2022-12-16 23:00:00
## 1624 2022-12-16 23:06:20      TRUE 2022-12-16 23:00:00
## 1625 2022-12-16 23:06:19      TRUE 2022-12-16 23:00:00
## 1626 2022-12-16 23:06:18      TRUE 2022-12-16 23:00:00
## 1627 2022-12-16 23:06:17      TRUE 2022-12-16 23:00:00
## 1628 2022-12-16 23:06:16      TRUE 2022-12-16 23:00:00
## 1629 2022-12-16 23:06:15      TRUE 2022-12-16 23:00:00
## 1630 2022-12-16 23:06:12      TRUE 2022-12-16 23:00:00
## 1631 2022-12-16 23:06:10      TRUE 2022-12-16 23:00:00
## 1632 2022-12-16 23:06:10      TRUE 2022-12-16 23:00:00
## 1633 2022-12-16 23:06:07      TRUE 2022-12-16 23:00:00
## 1634 2022-12-16 23:06:06      TRUE 2022-12-16 23:00:00
## 1635 2022-12-16 23:06:05      TRUE 2022-12-16 23:00:00
## 1636 2022-12-16 23:06:04      TRUE 2022-12-16 23:00:00
## 1637 2022-12-16 23:06:04      TRUE 2022-12-16 23:00:00
## 1638 2022-12-16 23:06:03      TRUE 2022-12-16 23:00:00
## 1639 2022-12-16 23:05:57      TRUE 2022-12-16 23:00:00
## 1640 2022-12-16 23:05:51      TRUE 2022-12-16 23:00:00
## 1641 2022-12-16 23:05:47      TRUE 2022-12-16 23:00:00
## 1642 2022-12-16 23:05:45      TRUE 2022-12-16 23:00:00
## 1643 2022-12-16 23:05:42      TRUE 2022-12-16 23:00:00
## 1644 2022-12-16 23:05:41      TRUE 2022-12-16 23:00:00
## 1645 2022-12-16 23:05:35      TRUE 2022-12-16 23:00:00
## 1646 2022-12-16 23:05:35      TRUE 2022-12-16 23:00:00
## 1647 2022-12-16 23:05:31      TRUE 2022-12-16 23:00:00
## 1648 2022-12-16 23:05:29      TRUE 2022-12-16 23:00:00
## 1649 2022-12-16 23:05:26      TRUE 2022-12-16 23:00:00
## 1650 2022-12-16 23:05:22      TRUE 2022-12-16 23:00:00
## 1651 2022-12-16 23:05:19      TRUE 2022-12-16 23:00:00
## 1652 2022-12-16 23:05:18      TRUE 2022-12-16 23:00:00
## 1653 2022-12-16 23:05:17      TRUE 2022-12-16 23:00:00
## 1654 2022-12-16 23:05:10      TRUE 2022-12-16 23:00:00
## 1655 2022-12-16 23:05:06      TRUE 2022-12-16 23:00:00
## 1656 2022-12-16 23:05:04      TRUE 2022-12-16 23:00:00
## 1657 2022-12-16 23:05:03      TRUE 2022-12-16 23:00:00
## 1658 2022-12-16 23:05:02      TRUE 2022-12-16 23:00:00
## 1659 2022-12-16 23:04:56      TRUE 2022-12-16 23:00:00
## 1660 2022-12-16 23:04:56      TRUE 2022-12-16 23:00:00
## 1661 2022-12-16 23:04:46      TRUE 2022-12-16 23:00:00
## 1662 2022-12-16 23:04:46      TRUE 2022-12-16 23:00:00
## 1663 2022-12-16 23:04:42      TRUE 2022-12-16 23:00:00
## 1664 2022-12-16 23:04:34      TRUE 2022-12-16 23:00:00
## 1665 2022-12-16 23:04:33      TRUE 2022-12-16 23:00:00
## 1666 2022-12-16 23:04:32      TRUE 2022-12-16 23:00:00
## 1667 2022-12-16 23:04:26      TRUE 2022-12-16 23:00:00
## 1668 2022-12-16 23:04:24      TRUE 2022-12-16 23:00:00
## 1669 2022-12-16 23:04:24      TRUE 2022-12-16 23:00:00
## 1670 2022-12-16 23:04:21      TRUE 2022-12-16 23:00:00
## 1671 2022-12-16 23:04:20      TRUE 2022-12-16 23:00:00
## 1672 2022-12-16 23:04:20      TRUE 2022-12-16 23:00:00
## 1673 2022-12-16 23:04:20      TRUE 2022-12-16 23:00:00
## 1674 2022-12-16 23:04:13      TRUE 2022-12-16 23:00:00
## 1675 2022-12-16 23:04:05      TRUE 2022-12-16 23:00:00
## 1676 2022-12-16 23:04:04      TRUE 2022-12-16 23:00:00
## 1677 2022-12-16 23:04:03      TRUE 2022-12-16 23:00:00
## 1678 2022-12-16 23:04:02      TRUE 2022-12-16 23:00:00
## 1679 2022-12-16 23:04:02      TRUE 2022-12-16 23:00:00
## 1680 2022-12-16 23:04:02      TRUE 2022-12-16 23:00:00
## 1681 2022-12-16 23:04:00      TRUE 2022-12-16 23:00:00
## 1682 2022-12-16 23:03:58      TRUE 2022-12-16 23:00:00
## 1683 2022-12-16 23:03:54      TRUE 2022-12-16 23:00:00
## 1684 2022-12-16 23:03:54      TRUE 2022-12-16 23:00:00
## 1685 2022-12-16 23:03:53      TRUE 2022-12-16 23:00:00
## 1686 2022-12-16 23:03:48      TRUE 2022-12-16 23:00:00
## 1687 2022-12-16 23:03:47      TRUE 2022-12-16 23:00:00
## 1688 2022-12-16 23:03:43      TRUE 2022-12-16 23:00:00
## 1689 2022-12-16 23:03:43      TRUE 2022-12-16 23:00:00
## 1690 2022-12-16 23:03:38      TRUE 2022-12-16 23:00:00
## 1691 2022-12-16 23:03:34      TRUE 2022-12-16 23:00:00
## 1692 2022-12-16 23:03:33      TRUE 2022-12-16 23:00:00
## 1693 2022-12-16 23:03:32      TRUE 2022-12-16 23:00:00
## 1694 2022-12-16 23:03:32      TRUE 2022-12-16 23:00:00
## 1695 2022-12-16 23:03:29      TRUE 2022-12-16 23:00:00
## 1696 2022-12-16 23:03:28      TRUE 2022-12-16 23:00:00
## 1697 2022-12-16 23:03:25      TRUE 2022-12-16 23:00:00
## 1698 2022-12-16 23:03:24      TRUE 2022-12-16 23:00:00
## 1699 2022-12-16 23:03:24      TRUE 2022-12-16 23:00:00
## 1700 2022-12-16 23:03:23      TRUE 2022-12-16 23:00:00
## 1701 2022-12-16 23:03:22      TRUE 2022-12-16 23:00:00
## 1702 2022-12-16 23:03:22      TRUE 2022-12-16 23:00:00
## 1703 2022-12-16 23:03:21      TRUE 2022-12-16 23:00:00
## 1704 2022-12-16 23:03:15      TRUE 2022-12-16 23:00:00
## 1705 2022-12-16 23:03:12      TRUE 2022-12-16 23:00:00
## 1706 2022-12-16 23:03:12      TRUE 2022-12-16 23:00:00
## 1707 2022-12-16 23:03:10      TRUE 2022-12-16 23:00:00
## 1708 2022-12-16 23:03:10      TRUE 2022-12-16 23:00:00
## 1709 2022-12-16 23:03:06      TRUE 2022-12-16 23:00:00
## 1710 2022-12-16 23:03:04      TRUE 2022-12-16 23:00:00
## 1711 2022-12-16 23:03:00      TRUE 2022-12-16 23:00:00
## 1712 2022-12-16 23:02:58      TRUE 2022-12-16 23:00:00
## 1713 2022-12-16 23:02:55      TRUE 2022-12-16 23:00:00
## 1714 2022-12-16 23:02:54      TRUE 2022-12-16 23:00:00
## 1715 2022-12-16 23:02:53      TRUE 2022-12-16 23:00:00
## 1716 2022-12-16 23:02:51      TRUE 2022-12-16 23:00:00
## 1717 2022-12-16 23:02:51      TRUE 2022-12-16 23:00:00
## 1718 2022-12-16 23:02:47      TRUE 2022-12-16 23:00:00
## 1719 2022-12-16 23:02:47      TRUE 2022-12-16 23:00:00
## 1720 2022-12-16 23:02:46      TRUE 2022-12-16 23:00:00
## 1721 2022-12-16 23:02:40      TRUE 2022-12-16 23:00:00
## 1722 2022-12-16 23:02:08      TRUE 2022-12-16 23:00:00
## 1723 2022-12-16 23:01:48      TRUE 2022-12-16 23:00:00
## 1724 2022-12-16 23:01:46      TRUE 2022-12-16 23:00:00
## 1725 2022-12-16 23:01:43      TRUE 2022-12-16 23:00:00
## 1726 2022-12-16 23:01:41      TRUE 2022-12-16 23:00:00
## 1727 2022-12-16 23:01:36      TRUE 2022-12-16 23:00:00
## 1728 2022-12-16 23:01:33      TRUE 2022-12-16 23:00:00
## 1729 2022-12-16 23:01:27      TRUE 2022-12-16 23:00:00
## 1730 2022-12-16 23:01:22      TRUE 2022-12-16 23:00:00
## 1731 2022-12-16 23:01:21      TRUE 2022-12-16 23:00:00
## 1732 2022-12-16 23:01:21      TRUE 2022-12-16 23:00:00
## 1733 2022-12-16 23:01:19      TRUE 2022-12-16 23:00:00
## 1734 2022-12-16 23:01:16      TRUE 2022-12-16 23:00:00
## 1735 2022-12-16 23:01:13      TRUE 2022-12-16 23:00:00
## 1736 2022-12-16 23:01:11      TRUE 2022-12-16 23:00:00
## 1737 2022-12-16 23:01:11      TRUE 2022-12-16 23:00:00
## 1738 2022-12-16 23:01:10      TRUE 2022-12-16 23:00:00
## 1739 2022-12-16 23:01:08      TRUE 2022-12-16 23:00:00
## 1740 2022-12-16 23:01:08      TRUE 2022-12-16 23:00:00
## 1741 2022-12-16 23:01:04      TRUE 2022-12-16 23:00:00
## 1742 2022-12-16 23:01:04      TRUE 2022-12-16 23:00:00
## 1743 2022-12-16 23:01:00      TRUE 2022-12-16 23:00:00
## 1744 2022-12-16 23:00:56      TRUE 2022-12-16 23:00:00
## 1745 2022-12-16 23:00:56      TRUE 2022-12-16 23:00:00
## 1746 2022-12-16 23:00:55      TRUE 2022-12-16 23:00:00
## 1747 2022-12-16 23:00:55      TRUE 2022-12-16 23:00:00
## 1748 2022-12-16 23:00:54      TRUE 2022-12-16 23:00:00
## 1749 2022-12-16 23:00:54      TRUE 2022-12-16 23:00:00
## 1750 2022-12-16 23:00:53      TRUE 2022-12-16 23:00:00
## 1751 2022-12-16 23:00:50      TRUE 2022-12-16 23:00:00
## 1752 2022-12-16 23:00:49      TRUE 2022-12-16 23:00:00
## 1753 2022-12-16 23:00:48      TRUE 2022-12-16 23:00:00
## 1754 2022-12-16 23:00:46      TRUE 2022-12-16 23:00:00
## 1755 2022-12-16 23:00:45      TRUE 2022-12-16 23:00:00
## 1756 2022-12-16 23:00:39      TRUE 2022-12-16 23:00:00
## 1757 2022-12-16 23:00:38      TRUE 2022-12-16 23:00:00
## 1758 2022-12-16 23:00:36      TRUE 2022-12-16 23:00:00
## 1759 2022-12-16 23:00:35      TRUE 2022-12-16 23:00:00
## 1760 2022-12-16 23:00:35      TRUE 2022-12-16 23:00:00
## 1761 2022-12-16 23:00:35      TRUE 2022-12-16 23:00:00
## 1762 2022-12-16 23:00:34      TRUE 2022-12-16 23:00:00
## 1763 2022-12-16 23:00:33      TRUE 2022-12-16 23:00:00
## 1764 2022-12-16 23:00:31      TRUE 2022-12-16 23:00:00
## 1765 2022-12-16 23:00:30      TRUE 2022-12-16 23:00:00
## 1766 2022-12-16 23:00:29      TRUE 2022-12-16 23:00:00
## 1767 2022-12-16 23:00:27      TRUE 2022-12-16 23:00:00
## 1768 2022-12-16 23:00:26      TRUE 2022-12-16 23:00:00
## 1769 2022-12-16 23:00:26      TRUE 2022-12-16 23:00:00
## 1770 2022-12-16 23:00:25      TRUE 2022-12-16 23:00:00
## 1771 2022-12-16 23:00:20      TRUE 2022-12-16 23:00:00
## 1772 2022-12-16 23:00:19      TRUE 2022-12-16 23:00:00
## 1773 2022-12-16 23:00:19      TRUE 2022-12-16 23:00:00
## 1774 2022-12-16 23:00:17      TRUE 2022-12-16 23:00:00
## 1775 2022-12-16 23:00:17      TRUE 2022-12-16 23:00:00
## 1776 2022-12-16 23:00:15      TRUE 2022-12-16 23:00:00
## 1777 2022-12-16 23:00:08      TRUE 2022-12-16 23:00:00
## 1778 2022-12-16 23:00:07      TRUE 2022-12-16 23:00:00
## 1779 2022-12-16 23:00:03      TRUE 2022-12-16 23:00:00
## 1780 2022-12-16 23:00:01      TRUE 2022-12-16 23:00:00
## 1781 2022-12-16 23:00:01      TRUE 2022-12-16 23:00:00
## 1782 2022-12-16 23:00:01      TRUE 2022-12-16 23:00:00
## 1783 2022-12-16 23:00:00      TRUE 2022-12-16 23:00:00
## 1784 2022-12-16 23:00:00      TRUE 2022-12-16 23:00:00
## 1785 2022-12-16 22:59:54      TRUE 2022-12-16 23:00:00
## 1786 2022-12-16 22:59:53      TRUE 2022-12-16 23:00:00
## 1787 2022-12-16 22:59:42      TRUE 2022-12-16 23:00:00
## 1788 2022-12-16 22:59:40      TRUE 2022-12-16 23:00:00
## 1789 2022-12-16 22:59:39      TRUE 2022-12-16 23:00:00
## 1790 2022-12-16 22:59:39      TRUE 2022-12-16 23:00:00
## 1791 2022-12-16 22:59:38      TRUE 2022-12-16 23:00:00
## 1792 2022-12-16 22:59:37      TRUE 2022-12-16 23:00:00
## 1793 2022-12-16 22:59:35      TRUE 2022-12-16 23:00:00
## 1794 2022-12-16 22:59:35      TRUE 2022-12-16 23:00:00
## 1795 2022-12-16 22:59:32      TRUE 2022-12-16 23:00:00
## 1796 2022-12-16 22:59:28      TRUE 2022-12-16 23:00:00
## 1797 2022-12-16 22:59:26      TRUE 2022-12-16 23:00:00
## 1798 2022-12-16 22:59:24      TRUE 2022-12-16 23:00:00
## 1799 2022-12-16 22:59:24      TRUE 2022-12-16 23:00:00
## 1800 2022-12-16 22:59:23      TRUE 2022-12-16 23:00:00
## 1801 2022-12-16 22:59:22      TRUE 2022-12-16 23:00:00
## 1802 2022-12-16 22:59:21      TRUE 2022-12-16 23:00:00
## 1803 2022-12-16 22:59:21      TRUE 2022-12-16 23:00:00
## 1804 2022-12-16 22:59:20      TRUE 2022-12-16 23:00:00
## 1805 2022-12-16 22:59:17      TRUE 2022-12-16 23:00:00
## 1806 2022-12-16 22:59:13      TRUE 2022-12-16 23:00:00
## 1807 2022-12-16 22:59:12      TRUE 2022-12-16 23:00:00
## 1808 2022-12-16 22:59:08      TRUE 2022-12-16 23:00:00
## 1809 2022-12-16 22:59:07      TRUE 2022-12-16 23:00:00
## 1810 2022-12-16 22:59:05      TRUE 2022-12-16 23:00:00
## 1811 2022-12-16 22:59:04      TRUE 2022-12-16 23:00:00
## 1812 2022-12-16 22:59:03      TRUE 2022-12-16 23:00:00
## 1813 2022-12-16 22:59:02      TRUE 2022-12-16 23:00:00
## 1814 2022-12-16 22:59:00      TRUE 2022-12-16 23:00:00
## 1815 2022-12-16 22:59:00      TRUE 2022-12-16 23:00:00
## 1816 2022-12-16 22:58:59      TRUE 2022-12-16 23:00:00
## 1817 2022-12-16 22:58:58      TRUE 2022-12-16 23:00:00
## 1818 2022-12-16 22:58:51      TRUE 2022-12-16 23:00:00
## 1819 2022-12-16 22:58:50      TRUE 2022-12-16 23:00:00
## 1820 2022-12-16 22:58:47      TRUE 2022-12-16 23:00:00
## 1821 2022-12-16 22:58:47      TRUE 2022-12-16 23:00:00
## 1822 2022-12-16 22:58:45      TRUE 2022-12-16 23:00:00
## 1823 2022-12-16 22:58:44      TRUE 2022-12-16 23:00:00
## 1824 2022-12-16 22:58:39      TRUE 2022-12-16 23:00:00
## 1825 2022-12-16 22:58:38      TRUE 2022-12-16 23:00:00
## 1826 2022-12-16 22:58:38      TRUE 2022-12-16 23:00:00
## 1827 2022-12-16 22:58:37      TRUE 2022-12-16 23:00:00
## 1828 2022-12-16 22:58:36      TRUE 2022-12-16 23:00:00
## 1829 2022-12-16 22:58:32      TRUE 2022-12-16 23:00:00
## 1830 2022-12-16 22:58:30      TRUE 2022-12-16 23:00:00
## 1831 2022-12-16 22:58:29      TRUE 2022-12-16 23:00:00
## 1832 2022-12-16 22:58:29      TRUE 2022-12-16 23:00:00
## 1833 2022-12-16 22:58:29      TRUE 2022-12-16 23:00:00
## 1834 2022-12-16 22:58:29      TRUE 2022-12-16 23:00:00
## 1835 2022-12-16 22:58:28      TRUE 2022-12-16 23:00:00
## 1836 2022-12-16 22:58:27      TRUE 2022-12-16 23:00:00
## 1837 2022-12-16 22:58:24      TRUE 2022-12-16 23:00:00
## 1838 2022-12-16 22:58:24      TRUE 2022-12-16 23:00:00
## 1839 2022-12-16 22:58:24      TRUE 2022-12-16 23:00:00
## 1840 2022-12-16 22:58:22      TRUE 2022-12-16 23:00:00
## 1841 2022-12-16 22:58:21      TRUE 2022-12-16 23:00:00
## 1842 2022-12-16 22:58:17      TRUE 2022-12-16 23:00:00
## 1843 2022-12-16 22:58:16      TRUE 2022-12-16 23:00:00
## 1844 2022-12-16 22:58:14      TRUE 2022-12-16 23:00:00
## 1845 2022-12-16 22:58:13      TRUE 2022-12-16 23:00:00
## 1846 2022-12-16 22:58:12      TRUE 2022-12-16 23:00:00
## 1847 2022-12-16 22:58:11      TRUE 2022-12-16 23:00:00
## 1848 2022-12-16 22:58:07      TRUE 2022-12-16 23:00:00
## 1849 2022-12-16 22:58:06      TRUE 2022-12-16 23:00:00
## 1850 2022-12-16 22:58:06      TRUE 2022-12-16 23:00:00
## 1851 2022-12-16 22:58:05      TRUE 2022-12-16 23:00:00
## 1852 2022-12-16 22:58:05      TRUE 2022-12-16 23:00:00
## 1853 2022-12-16 22:58:04      TRUE 2022-12-16 23:00:00
## 1854 2022-12-16 22:58:02      TRUE 2022-12-16 23:00:00
## 1855 2022-12-16 22:57:55      TRUE 2022-12-16 23:00:00
## 1856 2022-12-16 22:57:51      TRUE 2022-12-16 23:00:00
## 1857 2022-12-16 22:57:50      TRUE 2022-12-16 23:00:00
## 1858 2022-12-16 22:57:50      TRUE 2022-12-16 23:00:00
## 1859 2022-12-16 22:57:50      TRUE 2022-12-16 23:00:00
## 1860 2022-12-16 22:57:49      TRUE 2022-12-16 23:00:00
## 1861 2022-12-16 22:57:48      TRUE 2022-12-16 23:00:00
## 1862 2022-12-16 22:57:48      TRUE 2022-12-16 23:00:00
## 1863 2022-12-16 22:57:46      TRUE 2022-12-16 23:00:00
## 1864 2022-12-16 22:57:46      TRUE 2022-12-16 23:00:00
## 1865 2022-12-16 22:57:44      TRUE 2022-12-16 23:00:00
## 1866 2022-12-16 22:57:43      TRUE 2022-12-16 23:00:00
## 1867 2022-12-16 22:57:41      TRUE 2022-12-16 23:00:00
## 1868 2022-12-16 22:57:38      TRUE 2022-12-16 23:00:00
## 1869 2022-12-16 22:57:36      TRUE 2022-12-16 23:00:00
## 1870 2022-12-16 22:57:35      TRUE 2022-12-16 23:00:00
## 1871 2022-12-16 22:57:33      TRUE 2022-12-16 23:00:00
## 1872 2022-12-16 22:57:33      TRUE 2022-12-16 23:00:00
## 1873 2022-12-16 22:57:32      TRUE 2022-12-16 23:00:00
## 1874 2022-12-16 22:57:31      TRUE 2022-12-16 23:00:00
## 1875 2022-12-16 22:57:31      TRUE 2022-12-16 23:00:00
## 1876 2022-12-16 22:57:29      TRUE 2022-12-16 23:00:00
## 1877 2022-12-16 22:57:26      TRUE 2022-12-16 23:00:00
## 1878 2022-12-16 22:57:24      TRUE 2022-12-16 23:00:00
## 1879 2022-12-16 22:57:24      TRUE 2022-12-16 23:00:00
## 1880 2022-12-16 22:57:23      TRUE 2022-12-16 23:00:00
## 1881 2022-12-16 22:57:17      TRUE 2022-12-16 23:00:00
## 1882 2022-12-16 22:57:16      TRUE 2022-12-16 23:00:00
## 1883 2022-12-16 22:57:14      TRUE 2022-12-16 23:00:00
## 1884 2022-12-16 22:57:09      TRUE 2022-12-16 23:00:00
## 1885 2022-12-16 22:57:09      TRUE 2022-12-16 23:00:00
## 1886 2022-12-16 22:57:06      TRUE 2022-12-16 23:00:00
## 1887 2022-12-16 22:57:04      TRUE 2022-12-16 23:00:00
## 1888 2022-12-16 22:57:02      TRUE 2022-12-16 23:00:00
## 1889 2022-12-16 22:57:00      TRUE 2022-12-16 23:00:00
## 1890 2022-12-16 22:56:57      TRUE 2022-12-16 23:00:00
## 1891 2022-12-16 22:56:54      TRUE 2022-12-16 23:00:00
## 1892 2022-12-16 22:56:54      TRUE 2022-12-16 23:00:00
## 1893 2022-12-16 22:56:52      TRUE 2022-12-16 23:00:00
## 1894 2022-12-16 22:56:50      TRUE 2022-12-16 23:00:00
## 1895 2022-12-16 22:56:48      TRUE 2022-12-16 23:00:00
## 1896 2022-12-16 22:56:46      TRUE 2022-12-16 23:00:00
## 1897 2022-12-16 22:56:46      TRUE 2022-12-16 23:00:00
## 1898 2022-12-16 22:56:45      TRUE 2022-12-16 23:00:00
## 1899 2022-12-16 22:56:43      TRUE 2022-12-16 23:00:00
## 1900 2022-12-16 22:56:42      TRUE 2022-12-16 23:00:00
## 1901 2022-12-16 22:56:40      TRUE 2022-12-16 23:00:00
## 1902 2022-12-16 22:56:37      TRUE 2022-12-16 23:00:00
## 1903 2022-12-16 22:56:35      TRUE 2022-12-16 23:00:00
## 1904 2022-12-16 22:56:35      TRUE 2022-12-16 23:00:00
## 1905 2022-12-16 22:56:34      TRUE 2022-12-16 23:00:00
## 1906 2022-12-16 22:56:27      TRUE 2022-12-16 23:00:00
## 1907 2022-12-16 22:56:26      TRUE 2022-12-16 23:00:00
## 1908 2022-12-16 22:56:26      TRUE 2022-12-16 23:00:00
## 1909 2022-12-16 22:56:25      TRUE 2022-12-16 23:00:00
## 1910 2022-12-16 22:56:24      TRUE 2022-12-16 23:00:00
## 1911 2022-12-16 22:56:19      TRUE 2022-12-16 23:00:00
## 1912 2022-12-16 22:56:14      TRUE 2022-12-16 23:00:00
## 1913 2022-12-16 22:56:14      TRUE 2022-12-16 23:00:00
## 1914 2022-12-16 22:56:13      TRUE 2022-12-16 23:00:00
## 1915 2022-12-16 22:56:11      TRUE 2022-12-16 23:00:00
## 1916 2022-12-16 22:56:07      TRUE 2022-12-16 23:00:00
## 1917 2022-12-16 22:55:59      TRUE 2022-12-16 23:00:00
## 1918 2022-12-16 22:55:58      TRUE 2022-12-16 23:00:00
## 1919 2022-12-16 22:55:55      TRUE 2022-12-16 23:00:00
## 1920 2022-12-16 22:55:48      TRUE 2022-12-16 23:00:00
## 1921 2022-12-16 22:55:47      TRUE 2022-12-16 23:00:00
## 1922 2022-12-16 22:55:43      TRUE 2022-12-16 23:00:00
## 1923 2022-12-16 22:55:42      TRUE 2022-12-16 23:00:00
## 1924 2022-12-16 22:55:42      TRUE 2022-12-16 23:00:00
## 1925 2022-12-16 22:55:41      TRUE 2022-12-16 23:00:00
## 1926 2022-12-16 22:55:39      TRUE 2022-12-16 23:00:00
## 1927 2022-12-16 22:55:38      TRUE 2022-12-16 23:00:00
## 1928 2022-12-16 22:55:37      TRUE 2022-12-16 23:00:00
## 1929 2022-12-16 22:55:34      TRUE 2022-12-16 23:00:00
## 1930 2022-12-16 22:55:32      TRUE 2022-12-16 23:00:00
## 1931 2022-12-16 22:55:31      TRUE 2022-12-16 23:00:00
## 1932 2022-12-16 22:55:31      TRUE 2022-12-16 23:00:00
## 1933 2022-12-16 22:55:29      TRUE 2022-12-16 23:00:00
## 1934 2022-12-16 22:55:25      TRUE 2022-12-16 23:00:00
## 1935 2022-12-16 22:55:25      TRUE 2022-12-16 23:00:00
## 1936 2022-12-16 22:55:23      TRUE 2022-12-16 23:00:00
## 1937 2022-12-16 22:55:22      TRUE 2022-12-16 23:00:00
## 1938 2022-12-16 22:55:21      TRUE 2022-12-16 23:00:00
## 1939 2022-12-16 22:55:18      TRUE 2022-12-16 23:00:00
## 1940 2022-12-16 22:55:18      TRUE 2022-12-16 23:00:00
## 1941 2022-12-16 22:55:17      TRUE 2022-12-16 23:00:00
## 1942 2022-12-16 22:55:16      TRUE 2022-12-16 23:00:00
## 1943 2022-12-16 22:55:14      TRUE 2022-12-16 23:00:00
## 1944 2022-12-16 22:55:13      TRUE 2022-12-16 23:00:00
## 1945 2022-12-16 22:55:10      TRUE 2022-12-16 23:00:00
## 1946 2022-12-16 22:55:09      TRUE 2022-12-16 23:00:00
## 1947 2022-12-16 22:55:09      TRUE 2022-12-16 23:00:00
## 1948 2022-12-16 22:55:07      TRUE 2022-12-16 23:00:00
## 1949 2022-12-16 22:55:02      TRUE 2022-12-16 23:00:00
## 1950 2022-12-16 22:54:55      TRUE 2022-12-16 23:00:00
## 1951 2022-12-16 22:54:53      TRUE 2022-12-16 23:00:00
## 1952 2022-12-16 22:54:48      TRUE 2022-12-16 23:00:00
## 1953 2022-12-16 22:54:48      TRUE 2022-12-16 23:00:00
## 1954 2022-12-16 22:54:46      TRUE 2022-12-16 23:00:00
## 1955 2022-12-16 22:54:45      TRUE 2022-12-16 23:00:00
## 1956 2022-12-16 22:54:39      TRUE 2022-12-16 23:00:00
## 1957 2022-12-16 22:54:39      TRUE 2022-12-16 23:00:00
## 1958 2022-12-16 22:54:38      TRUE 2022-12-16 23:00:00
## 1959 2022-12-16 22:54:38      TRUE 2022-12-16 23:00:00
## 1960 2022-12-16 22:54:37      TRUE 2022-12-16 23:00:00
## 1961 2022-12-16 22:54:35      TRUE 2022-12-16 23:00:00
## 1962 2022-12-16 22:54:35      TRUE 2022-12-16 23:00:00
## 1963 2022-12-16 22:54:35      TRUE 2022-12-16 23:00:00
## 1964 2022-12-16 22:54:34      TRUE 2022-12-16 23:00:00
## 1965 2022-12-16 22:54:30      TRUE 2022-12-16 23:00:00
## 1966 2022-12-16 22:54:27      TRUE 2022-12-16 23:00:00
## 1967 2022-12-16 22:54:23      TRUE 2022-12-16 23:00:00
## 1968 2022-12-16 22:54:18      TRUE 2022-12-16 23:00:00
## 1969 2022-12-16 22:54:14      TRUE 2022-12-16 23:00:00
## 1970 2022-12-16 22:54:11      TRUE 2022-12-16 23:00:00
## 1971 2022-12-16 22:54:09      TRUE 2022-12-16 23:00:00
## 1972 2022-12-16 22:54:08      TRUE 2022-12-16 23:00:00
## 1973 2022-12-16 22:54:08      TRUE 2022-12-16 23:00:00
## 1974 2022-12-16 22:54:08      TRUE 2022-12-16 23:00:00
## 1975 2022-12-16 22:54:04      TRUE 2022-12-16 23:00:00
## 1976 2022-12-16 22:54:01      TRUE 2022-12-16 23:00:00
## 1977 2022-12-16 22:53:53      TRUE 2022-12-16 23:00:00
## 1978 2022-12-16 22:53:53      TRUE 2022-12-16 23:00:00
## 1979 2022-12-16 22:53:51      TRUE 2022-12-16 23:00:00
## 1980 2022-12-16 22:53:50      TRUE 2022-12-16 23:00:00
## 1981 2022-12-16 22:53:50      TRUE 2022-12-16 23:00:00
## 1982 2022-12-16 22:53:49      TRUE 2022-12-16 23:00:00
## 1983 2022-12-16 22:53:46      TRUE 2022-12-16 23:00:00
## 1984 2022-12-16 22:53:45      TRUE 2022-12-16 23:00:00
## 1985 2022-12-16 22:53:43      TRUE 2022-12-16 23:00:00
## 1986 2022-12-16 22:53:41      TRUE 2022-12-16 23:00:00
## 1987 2022-12-16 22:53:38      TRUE 2022-12-16 23:00:00
## 1988 2022-12-16 22:53:38      TRUE 2022-12-16 23:00:00
## 1989 2022-12-16 22:53:37      TRUE 2022-12-16 23:00:00
## 1990 2022-12-16 22:53:36      TRUE 2022-12-16 23:00:00
## 1991 2022-12-16 22:53:36      TRUE 2022-12-16 23:00:00
## 1992 2022-12-16 22:53:35      TRUE 2022-12-16 23:00:00
## 1993 2022-12-16 22:53:33      TRUE 2022-12-16 23:00:00
## 1994 2022-12-16 22:53:31      TRUE 2022-12-16 23:00:00
## 1995 2022-12-16 22:53:25      TRUE 2022-12-16 23:00:00
## 1996 2022-12-16 22:53:23      TRUE 2022-12-16 23:00:00
## 1997 2022-12-16 22:53:13      TRUE 2022-12-16 23:00:00
## 1998 2022-12-16 22:53:12      TRUE 2022-12-16 23:00:00
## 1999 2022-12-16 22:53:12      TRUE 2022-12-16 23:00:00
## 2000 2022-12-16 22:53:11      TRUE 2022-12-16 23:00:00
## 2001 2022-12-16 22:53:01      TRUE 2022-12-16 23:00:00
## 2002 2022-12-16 22:53:01      TRUE 2022-12-16 23:00:00
## 2003 2022-12-16 22:53:00      TRUE 2022-12-16 23:00:00
## 2004 2022-12-16 22:52:58      TRUE 2022-12-16 23:00:00
## 2005 2022-12-16 22:52:55      TRUE 2022-12-16 23:00:00
## 2006 2022-12-16 22:52:52      TRUE 2022-12-16 23:00:00
## 2007 2022-12-16 22:52:52      TRUE 2022-12-16 23:00:00
## 2008 2022-12-16 22:52:51      TRUE 2022-12-16 23:00:00
## 2009 2022-12-16 22:52:50      TRUE 2022-12-16 23:00:00
## 2010 2022-12-16 22:52:47      TRUE 2022-12-16 23:00:00
## 2011 2022-12-16 22:52:47      TRUE 2022-12-16 23:00:00
## 2012 2022-12-16 22:52:46      TRUE 2022-12-16 23:00:00
## 2013 2022-12-16 22:52:44      TRUE 2022-12-16 23:00:00
## 2014 2022-12-16 22:52:43      TRUE 2022-12-16 23:00:00
## 2015 2022-12-16 22:52:43      TRUE 2022-12-16 23:00:00
## 2016 2022-12-16 22:52:41      TRUE 2022-12-16 23:00:00
## 2017 2022-12-16 22:52:40      TRUE 2022-12-16 23:00:00
## 2018 2022-12-16 22:52:38      TRUE 2022-12-16 23:00:00
## 2019 2022-12-16 22:52:35      TRUE 2022-12-16 23:00:00
## 2020 2022-12-16 22:52:35      TRUE 2022-12-16 23:00:00
## 2021 2022-12-16 22:52:29      TRUE 2022-12-16 23:00:00
## 2022 2022-12-16 22:52:28      TRUE 2022-12-16 23:00:00
## 2023 2022-12-16 22:52:28      TRUE 2022-12-16 23:00:00
## 2024 2022-12-16 22:52:24      TRUE 2022-12-16 23:00:00
## 2025 2022-12-16 22:52:10      TRUE 2022-12-16 23:00:00
## 2026 2022-12-16 22:52:05      TRUE 2022-12-16 23:00:00
## 2027 2022-12-16 22:52:03      TRUE 2022-12-16 23:00:00
## 2028 2022-12-16 22:52:02      TRUE 2022-12-16 23:00:00
## 2029 2022-12-16 22:51:58      TRUE 2022-12-16 23:00:00
## 2030 2022-12-16 22:51:57      TRUE 2022-12-16 23:00:00
## 2031 2022-12-16 22:51:52      TRUE 2022-12-16 23:00:00
## 2032 2022-12-16 22:51:44      TRUE 2022-12-16 23:00:00
## 2033 2022-12-16 22:51:43      TRUE 2022-12-16 23:00:00
## 2034 2022-12-16 22:51:42      TRUE 2022-12-16 23:00:00
## 2035 2022-12-16 22:51:41      TRUE 2022-12-16 23:00:00
## 2036 2022-12-16 22:51:31      TRUE 2022-12-16 23:00:00
## 2037 2022-12-16 22:51:31      TRUE 2022-12-16 23:00:00
## 2038 2022-12-16 22:51:30      TRUE 2022-12-16 23:00:00
## 2039 2022-12-16 22:51:30      TRUE 2022-12-16 23:00:00
## 2040 2022-12-16 22:51:28      TRUE 2022-12-16 23:00:00
## 2041 2022-12-16 22:51:27      TRUE 2022-12-16 23:00:00
## 2042 2022-12-16 22:51:25      TRUE 2022-12-16 23:00:00
## 2043 2022-12-16 22:51:25      TRUE 2022-12-16 23:00:00
## 2044 2022-12-16 22:51:24      TRUE 2022-12-16 23:00:00
## 2045 2022-12-16 22:51:24      TRUE 2022-12-16 23:00:00
## 2046 2022-12-16 22:51:22      TRUE 2022-12-16 23:00:00
## 2047 2022-12-16 22:51:18      TRUE 2022-12-16 23:00:00
## 2048 2022-12-16 22:51:05      TRUE 2022-12-16 23:00:00
## 2049 2022-12-16 22:51:04      TRUE 2022-12-16 23:00:00
## 2050 2022-12-16 22:50:55      TRUE 2022-12-16 23:00:00
## 2051 2022-12-16 22:50:45      TRUE 2022-12-16 23:00:00
## 2052 2022-12-16 22:50:44      TRUE 2022-12-16 23:00:00
## 2053 2022-12-16 22:50:44      TRUE 2022-12-16 23:00:00
## 2054 2022-12-16 22:50:41      TRUE 2022-12-16 23:00:00
## 2055 2022-12-16 22:50:38      TRUE 2022-12-16 23:00:00
## 2056 2022-12-16 22:50:32      TRUE 2022-12-16 23:00:00
## 2057 2022-12-16 22:50:29      TRUE 2022-12-16 23:00:00
## 2058 2022-12-16 22:50:24      TRUE 2022-12-16 23:00:00
## 2059 2022-12-16 22:50:18      TRUE 2022-12-16 23:00:00
## 2060 2022-12-16 22:50:17      TRUE 2022-12-16 23:00:00
## 2061 2022-12-16 22:50:14      TRUE 2022-12-16 23:00:00
## 2062 2022-12-16 22:50:14      TRUE 2022-12-16 23:00:00
## 2063 2022-12-16 22:50:10      TRUE 2022-12-16 23:00:00
## 2064 2022-12-16 22:50:08      TRUE 2022-12-16 23:00:00
## 2065 2022-12-16 22:50:07      TRUE 2022-12-16 23:00:00
## 2066 2022-12-16 22:50:02      TRUE 2022-12-16 23:00:00
## 2067 2022-12-16 22:49:59      TRUE 2022-12-16 23:00:00
## 2068 2022-12-16 22:49:53      TRUE 2022-12-16 23:00:00
## 2069 2022-12-16 22:49:52      TRUE 2022-12-16 23:00:00
## 2070 2022-12-16 22:49:52      TRUE 2022-12-16 23:00:00
## 2071 2022-12-16 22:49:51      TRUE 2022-12-16 23:00:00
## 2072 2022-12-16 22:49:51      TRUE 2022-12-16 23:00:00
## 2073 2022-12-16 22:49:47      TRUE 2022-12-16 23:00:00
## 2074 2022-12-16 22:49:45      TRUE 2022-12-16 23:00:00
## 2075 2022-12-16 22:49:39      TRUE 2022-12-16 23:00:00
## 2076 2022-12-16 22:49:39      TRUE 2022-12-16 23:00:00
## 2077 2022-12-16 22:49:37      TRUE 2022-12-16 23:00:00
## 2078 2022-12-16 22:49:34      TRUE 2022-12-16 23:00:00
## 2079 2022-12-16 22:49:32      TRUE 2022-12-16 23:00:00
## 2080 2022-12-16 22:49:28      TRUE 2022-12-16 23:00:00
## 2081 2022-12-16 22:49:27      TRUE 2022-12-16 23:00:00
## 2082 2022-12-16 22:49:26      TRUE 2022-12-16 23:00:00
## 2083 2022-12-16 22:49:26      TRUE 2022-12-16 23:00:00
## 2084 2022-12-16 22:49:26      TRUE 2022-12-16 23:00:00
## 2085 2022-12-16 22:49:26      TRUE 2022-12-16 23:00:00
## 2086 2022-12-16 22:49:25      TRUE 2022-12-16 23:00:00
## 2087 2022-12-16 22:49:24      TRUE 2022-12-16 23:00:00
## 2088 2022-12-16 22:49:24      TRUE 2022-12-16 23:00:00
## 2089 2022-12-16 22:49:22      TRUE 2022-12-16 23:00:00
## 2090 2022-12-16 22:49:17      TRUE 2022-12-16 23:00:00
## 2091 2022-12-16 22:49:17      TRUE 2022-12-16 23:00:00
## 2092 2022-12-16 22:49:16      TRUE 2022-12-16 23:00:00
## 2093 2022-12-16 22:49:16      TRUE 2022-12-16 23:00:00
## 2094 2022-12-16 22:49:15      TRUE 2022-12-16 23:00:00
## 2095 2022-12-16 22:49:11      TRUE 2022-12-16 23:00:00
## 2096 2022-12-16 22:49:11      TRUE 2022-12-16 23:00:00
## 2097 2022-12-16 22:49:09      TRUE 2022-12-16 23:00:00
## 2098 2022-12-16 22:49:08      TRUE 2022-12-16 23:00:00
## 2099 2022-12-16 22:49:06      TRUE 2022-12-16 23:00:00
## 2100 2022-12-16 22:49:06      TRUE 2022-12-16 23:00:00
## 2101 2022-12-16 22:49:05      TRUE 2022-12-16 23:00:00
## 2102 2022-12-16 22:49:01      TRUE 2022-12-16 23:00:00
## 2103 2022-12-16 22:48:49      TRUE 2022-12-16 23:00:00
## 2104 2022-12-16 22:48:49      TRUE 2022-12-16 23:00:00
## 2105 2022-12-16 22:48:48      TRUE 2022-12-16 23:00:00
## 2106 2022-12-16 22:48:45      TRUE 2022-12-16 23:00:00
## 2107 2022-12-16 22:48:39      TRUE 2022-12-16 23:00:00
## 2108 2022-12-16 22:48:37      TRUE 2022-12-16 23:00:00
## 2109 2022-12-16 22:48:36      TRUE 2022-12-16 23:00:00
## 2110 2022-12-16 22:48:36      TRUE 2022-12-16 23:00:00
## 2111 2022-12-16 22:48:35      TRUE 2022-12-16 23:00:00
## 2112 2022-12-16 22:48:35      TRUE 2022-12-16 23:00:00
## 2113 2022-12-16 22:48:32      TRUE 2022-12-16 23:00:00
## 2114 2022-12-16 22:48:31      TRUE 2022-12-16 23:00:00
## 2115 2022-12-16 22:48:27      TRUE 2022-12-16 23:00:00
## 2116 2022-12-16 22:48:26      TRUE 2022-12-16 23:00:00
## 2117 2022-12-16 22:48:24      TRUE 2022-12-16 23:00:00
## 2118 2022-12-16 22:48:22      TRUE 2022-12-16 23:00:00
## 2119 2022-12-16 22:48:20      TRUE 2022-12-16 23:00:00
## 2120 2022-12-16 22:48:17      TRUE 2022-12-16 23:00:00
## 2121 2022-12-16 22:48:15      TRUE 2022-12-16 23:00:00
## 2122 2022-12-16 22:48:15      TRUE 2022-12-16 23:00:00
## 2123 2022-12-16 22:48:08      TRUE 2022-12-16 23:00:00
## 2124 2022-12-16 22:48:07      TRUE 2022-12-16 23:00:00
## 2125 2022-12-16 22:48:05      TRUE 2022-12-16 23:00:00
## 2126 2022-12-16 22:48:04      TRUE 2022-12-16 23:00:00
## 2127 2022-12-16 22:48:02      TRUE 2022-12-16 23:00:00
## 2128 2022-12-16 22:48:01      TRUE 2022-12-16 23:00:00
## 2129 2022-12-16 22:47:52      TRUE 2022-12-16 23:00:00
## 2130 2022-12-16 22:47:52      TRUE 2022-12-16 23:00:00
## 2131 2022-12-16 22:47:46      TRUE 2022-12-16 23:00:00
## 2132 2022-12-16 22:47:45      TRUE 2022-12-16 23:00:00
## 2133 2022-12-16 22:47:37      TRUE 2022-12-16 23:00:00
## 2134 2022-12-16 22:47:34      TRUE 2022-12-16 23:00:00
## 2135 2022-12-16 22:47:33      TRUE 2022-12-16 23:00:00
## 2136 2022-12-16 22:47:32      TRUE 2022-12-16 23:00:00
## 2137 2022-12-16 22:47:31      TRUE 2022-12-16 23:00:00
## 2138 2022-12-16 22:47:29      TRUE 2022-12-16 23:00:00
## 2139 2022-12-16 22:47:24      TRUE 2022-12-16 23:00:00
## 2140 2022-12-16 22:47:22      TRUE 2022-12-16 23:00:00
## 2141 2022-12-16 22:47:20      TRUE 2022-12-16 23:00:00
## 2142 2022-12-16 22:47:18      TRUE 2022-12-16 23:00:00
## 2143 2022-12-16 22:47:18      TRUE 2022-12-16 23:00:00
## 2144 2022-12-16 22:47:17      TRUE 2022-12-16 23:00:00
## 2145 2022-12-16 22:47:16      TRUE 2022-12-16 23:00:00
## 2146 2022-12-16 22:47:13      TRUE 2022-12-16 23:00:00
## 2147 2022-12-16 22:47:12      TRUE 2022-12-16 23:00:00
## 2148 2022-12-16 22:47:09      TRUE 2022-12-16 23:00:00
## 2149 2022-12-16 22:47:06      TRUE 2022-12-16 23:00:00
## 2150 2022-12-16 22:47:02      TRUE 2022-12-16 23:00:00
## 2151 2022-12-16 22:47:02      TRUE 2022-12-16 23:00:00
## 2152 2022-12-16 22:46:52      TRUE 2022-12-16 23:00:00
## 2153 2022-12-16 22:46:50      TRUE 2022-12-16 23:00:00
## 2154 2022-12-16 22:46:48      TRUE 2022-12-16 23:00:00
## 2155 2022-12-16 22:46:48      TRUE 2022-12-16 23:00:00
## 2156 2022-12-16 22:46:42      TRUE 2022-12-16 23:00:00
## 2157 2022-12-16 22:46:42      TRUE 2022-12-16 23:00:00
## 2158 2022-12-16 22:46:38      TRUE 2022-12-16 23:00:00
## 2159 2022-12-16 22:46:38      TRUE 2022-12-16 23:00:00
## 2160 2022-12-16 22:46:35      TRUE 2022-12-16 23:00:00
## 2161 2022-12-16 22:46:34      TRUE 2022-12-16 23:00:00
## 2162 2022-12-16 22:46:34      TRUE 2022-12-16 23:00:00
## 2163 2022-12-16 22:46:34      TRUE 2022-12-16 23:00:00
## 2164 2022-12-16 22:46:33      TRUE 2022-12-16 23:00:00
## 2165 2022-12-16 22:46:32      TRUE 2022-12-16 23:00:00
## 2166 2022-12-16 22:46:32      TRUE 2022-12-16 23:00:00
## 2167 2022-12-16 22:46:32      TRUE 2022-12-16 23:00:00
## 2168 2022-12-16 22:46:29      TRUE 2022-12-16 23:00:00
## 2169 2022-12-16 22:46:28      TRUE 2022-12-16 23:00:00
## 2170 2022-12-16 22:46:28      TRUE 2022-12-16 23:00:00
## 2171 2022-12-16 22:46:25      TRUE 2022-12-16 23:00:00
## 2172 2022-12-16 22:46:22      TRUE 2022-12-16 23:00:00
## 2173 2022-12-16 22:46:19      TRUE 2022-12-16 23:00:00
## 2174 2022-12-16 22:46:16      TRUE 2022-12-16 23:00:00
## 2175 2022-12-16 22:46:14      TRUE 2022-12-16 23:00:00
## 2176 2022-12-16 22:46:09      TRUE 2022-12-16 23:00:00
## 2177 2022-12-16 22:46:09      TRUE 2022-12-16 23:00:00
## 2178 2022-12-16 22:46:04      TRUE 2022-12-16 23:00:00
## 2179 2022-12-16 22:46:02      TRUE 2022-12-16 23:00:00
## 2180 2022-12-16 22:46:02      TRUE 2022-12-16 23:00:00
## 2181 2022-12-16 22:45:58      TRUE 2022-12-16 23:00:00
## 2182 2022-12-16 22:45:57      TRUE 2022-12-16 23:00:00
## 2183 2022-12-16 22:45:56      TRUE 2022-12-16 23:00:00
## 2184 2022-12-16 22:45:56      TRUE 2022-12-16 23:00:00
## 2185 2022-12-16 22:45:56      TRUE 2022-12-16 23:00:00
## 2186 2022-12-16 22:45:54      TRUE 2022-12-16 23:00:00
## 2187 2022-12-16 22:45:54      TRUE 2022-12-16 23:00:00
## 2188 2022-12-16 22:45:51      TRUE 2022-12-16 23:00:00
## 2189 2022-12-16 22:45:47      TRUE 2022-12-16 23:00:00
## 2190 2022-12-16 22:45:46      TRUE 2022-12-16 23:00:00
## 2191 2022-12-16 22:45:45      TRUE 2022-12-16 23:00:00
## 2192 2022-12-16 22:45:43      TRUE 2022-12-16 23:00:00
## 2193 2022-12-16 22:45:41      TRUE 2022-12-16 23:00:00
## 2194 2022-12-16 22:45:40      TRUE 2022-12-16 23:00:00
## 2195 2022-12-16 22:45:38      TRUE 2022-12-16 23:00:00
## 2196 2022-12-16 22:45:38      TRUE 2022-12-16 23:00:00
## 2197 2022-12-16 22:45:36      TRUE 2022-12-16 23:00:00
## 2198 2022-12-16 22:45:30      TRUE 2022-12-16 23:00:00
## 2199 2022-12-16 22:45:29      TRUE 2022-12-16 23:00:00
## 2200 2022-12-16 22:45:28      TRUE 2022-12-16 23:00:00
## 2201 2022-12-16 22:45:27      TRUE 2022-12-16 23:00:00
## 2202 2022-12-16 22:45:26      TRUE 2022-12-16 23:00:00
## 2203 2022-12-16 22:45:22      TRUE 2022-12-16 23:00:00
## 2204 2022-12-16 22:45:21      TRUE 2022-12-16 23:00:00
## 2205 2022-12-16 22:45:19      TRUE 2022-12-16 23:00:00
## 2206 2022-12-16 22:45:16      TRUE 2022-12-16 23:00:00
## 2207 2022-12-16 22:45:16      TRUE 2022-12-16 23:00:00
## 2208 2022-12-16 22:45:14      TRUE 2022-12-16 23:00:00
## 2209 2022-12-16 22:45:12      TRUE 2022-12-16 23:00:00
## 2210 2022-12-16 22:45:11      TRUE 2022-12-16 23:00:00
## 2211 2022-12-16 22:45:10      TRUE 2022-12-16 23:00:00
## 2212 2022-12-16 22:45:09      TRUE 2022-12-16 23:00:00
## 2213 2022-12-16 22:45:06      TRUE 2022-12-16 23:00:00
## 2214 2022-12-16 22:45:06      TRUE 2022-12-16 23:00:00
## 2215 2022-12-16 22:45:02      TRUE 2022-12-16 23:00:00
## 2216 2022-12-16 22:45:02      TRUE 2022-12-16 23:00:00
## 2217 2022-12-16 22:44:56      TRUE 2022-12-16 23:00:00
## 2218 2022-12-16 22:44:55      TRUE 2022-12-16 23:00:00
## 2219 2022-12-16 22:44:53      TRUE 2022-12-16 23:00:00
## 2220 2022-12-16 22:44:52      TRUE 2022-12-16 23:00:00
## 2221 2022-12-16 22:44:43      TRUE 2022-12-16 23:00:00
## 2222 2022-12-16 22:44:42      TRUE 2022-12-16 23:00:00
## 2223 2022-12-16 22:44:40      TRUE 2022-12-16 23:00:00
## 2224 2022-12-16 22:44:38      TRUE 2022-12-16 23:00:00
## 2225 2022-12-16 22:44:35      TRUE 2022-12-16 23:00:00
## 2226 2022-12-16 22:44:33      TRUE 2022-12-16 23:00:00
## 2227 2022-12-16 22:44:29      TRUE 2022-12-16 23:00:00
## 2228 2022-12-16 22:44:27      TRUE 2022-12-16 23:00:00
## 2229 2022-12-16 22:44:25      TRUE 2022-12-16 23:00:00
## 2230 2022-12-16 22:44:21      TRUE 2022-12-16 23:00:00
## 2231 2022-12-16 22:44:20      TRUE 2022-12-16 23:00:00
## 2232 2022-12-16 22:44:16      TRUE 2022-12-16 23:00:00
## 2233 2022-12-16 22:44:16      TRUE 2022-12-16 23:00:00
## 2234 2022-12-16 22:44:11      TRUE 2022-12-16 23:00:00
## 2235 2022-12-16 22:44:10      TRUE 2022-12-16 23:00:00
## 2236 2022-12-16 22:44:10      TRUE 2022-12-16 23:00:00
## 2237 2022-12-16 22:44:05      TRUE 2022-12-16 23:00:00
## 2238 2022-12-16 22:43:58      TRUE 2022-12-16 23:00:00
## 2239 2022-12-16 22:43:57      TRUE 2022-12-16 23:00:00
## 2240 2022-12-16 22:43:56      TRUE 2022-12-16 23:00:00
## 2241 2022-12-16 22:43:55      TRUE 2022-12-16 23:00:00
## 2242 2022-12-16 22:43:49      TRUE 2022-12-16 23:00:00
## 2243 2022-12-16 22:43:46      TRUE 2022-12-16 23:00:00
## 2244 2022-12-16 22:43:41      TRUE 2022-12-16 23:00:00
## 2245 2022-12-16 22:43:41      TRUE 2022-12-16 23:00:00
## 2246 2022-12-16 22:43:39      TRUE 2022-12-16 23:00:00
## 2247 2022-12-16 22:43:39      TRUE 2022-12-16 23:00:00
## 2248 2022-12-16 22:43:39      TRUE 2022-12-16 23:00:00
## 2249 2022-12-16 22:43:38      TRUE 2022-12-16 23:00:00
## 2250 2022-12-16 22:43:37      TRUE 2022-12-16 23:00:00
## 2251 2022-12-16 22:43:37      TRUE 2022-12-16 23:00:00
## 2252 2022-12-16 22:43:33      TRUE 2022-12-16 23:00:00
## 2253 2022-12-16 22:43:31      TRUE 2022-12-16 23:00:00
## 2254 2022-12-16 22:43:27      TRUE 2022-12-16 23:00:00
## 2255 2022-12-16 22:43:26      TRUE 2022-12-16 23:00:00
## 2256 2022-12-16 22:43:23      TRUE 2022-12-16 23:00:00
## 2257 2022-12-16 22:43:19      TRUE 2022-12-16 23:00:00
## 2258 2022-12-16 22:43:16      TRUE 2022-12-16 23:00:00
## 2259 2022-12-16 22:43:16      TRUE 2022-12-16 23:00:00
## 2260 2022-12-16 22:43:15      TRUE 2022-12-16 23:00:00
## 2261 2022-12-16 22:43:14      TRUE 2022-12-16 23:00:00
## 2262 2022-12-16 22:43:12      TRUE 2022-12-16 23:00:00
## 2263 2022-12-16 22:43:08      TRUE 2022-12-16 23:00:00
## 2264 2022-12-16 22:43:08      TRUE 2022-12-16 23:00:00
## 2265 2022-12-16 22:43:07      TRUE 2022-12-16 23:00:00
## 2266 2022-12-16 22:43:05      TRUE 2022-12-16 23:00:00
## 2267 2022-12-16 22:43:04      TRUE 2022-12-16 23:00:00
## 2268 2022-12-16 22:43:02      TRUE 2022-12-16 23:00:00
## 2269 2022-12-16 22:43:02      TRUE 2022-12-16 23:00:00
## 2270 2022-12-16 22:43:01      TRUE 2022-12-16 23:00:00
## 2271 2022-12-16 22:43:00      TRUE 2022-12-16 23:00:00
## 2272 2022-12-16 22:43:00      TRUE 2022-12-16 23:00:00
## 2273 2022-12-16 22:42:59      TRUE 2022-12-16 23:00:00
## 2274 2022-12-16 22:42:57      TRUE 2022-12-16 23:00:00
## 2275 2022-12-16 22:42:57      TRUE 2022-12-16 23:00:00
## 2276 2022-12-16 22:42:57      TRUE 2022-12-16 23:00:00
## 2277 2022-12-16 22:42:53      TRUE 2022-12-16 23:00:00
## 2278 2022-12-16 22:42:52      TRUE 2022-12-16 23:00:00
## 2279 2022-12-16 22:42:51      TRUE 2022-12-16 23:00:00
## 2280 2022-12-16 22:42:49      TRUE 2022-12-16 23:00:00
## 2281 2022-12-16 22:42:47      TRUE 2022-12-16 23:00:00
## 2282 2022-12-16 22:42:46      TRUE 2022-12-16 23:00:00
## 2283 2022-12-16 22:42:40      TRUE 2022-12-16 23:00:00
## 2284 2022-12-16 22:42:40      TRUE 2022-12-16 23:00:00
## 2285 2022-12-16 22:42:39      TRUE 2022-12-16 23:00:00
## 2286 2022-12-16 22:42:38      TRUE 2022-12-16 23:00:00
## 2287 2022-12-16 22:42:38      TRUE 2022-12-16 23:00:00
## 2288 2022-12-16 22:42:37      TRUE 2022-12-16 23:00:00
## 2289 2022-12-16 22:42:33      TRUE 2022-12-16 23:00:00
## 2290 2022-12-16 22:42:33      TRUE 2022-12-16 23:00:00
## 2291 2022-12-16 22:42:32      TRUE 2022-12-16 23:00:00
## 2292 2022-12-16 22:42:32      TRUE 2022-12-16 23:00:00
## 2293 2022-12-16 22:42:30      TRUE 2022-12-16 23:00:00
## 2294 2022-12-16 22:42:29      TRUE 2022-12-16 23:00:00
## 2295 2022-12-16 22:42:28      TRUE 2022-12-16 23:00:00
## 2296 2022-12-16 22:42:26      TRUE 2022-12-16 23:00:00
## 2297 2022-12-16 22:42:23      TRUE 2022-12-16 23:00:00
## 2298 2022-12-16 22:42:23      TRUE 2022-12-16 23:00:00
## 2299 2022-12-16 22:42:22      TRUE 2022-12-16 23:00:00
## 2300 2022-12-16 22:42:21      TRUE 2022-12-16 23:00:00
## 2301 2022-12-16 22:42:20      TRUE 2022-12-16 23:00:00
## 2302 2022-12-16 22:42:18      TRUE 2022-12-16 23:00:00
## 2303 2022-12-16 22:42:12      TRUE 2022-12-16 23:00:00
## 2304 2022-12-16 22:42:09      TRUE 2022-12-16 23:00:00
## 2305 2022-12-16 22:42:07      TRUE 2022-12-16 23:00:00
## 2306 2022-12-16 22:42:06      TRUE 2022-12-16 23:00:00
## 2307 2022-12-16 22:42:05      TRUE 2022-12-16 23:00:00
## 2308 2022-12-16 22:42:05      TRUE 2022-12-16 23:00:00
## 2309 2022-12-16 22:42:01      TRUE 2022-12-16 23:00:00
## 2310 2022-12-16 22:42:01      TRUE 2022-12-16 23:00:00
## 2311 2022-12-16 22:42:00      TRUE 2022-12-16 23:00:00
## 2312 2022-12-16 22:41:58      TRUE 2022-12-16 23:00:00
## 2313 2022-12-16 22:41:58      TRUE 2022-12-16 23:00:00
## 2314 2022-12-16 22:41:57      TRUE 2022-12-16 23:00:00
## 2315 2022-12-16 22:41:57      TRUE 2022-12-16 23:00:00
## 2316 2022-12-16 22:41:56      TRUE 2022-12-16 23:00:00
## 2317 2022-12-16 22:41:56      TRUE 2022-12-16 23:00:00
## 2318 2022-12-16 22:41:56      TRUE 2022-12-16 23:00:00
## 2319 2022-12-16 22:41:55      TRUE 2022-12-16 23:00:00
## 2320 2022-12-16 22:41:55      TRUE 2022-12-16 23:00:00
## 2321 2022-12-16 22:41:52      TRUE 2022-12-16 23:00:00
## 2322 2022-12-16 22:41:52      TRUE 2022-12-16 23:00:00
## 2323 2022-12-16 22:41:49      TRUE 2022-12-16 23:00:00
## 2324 2022-12-16 22:41:48      TRUE 2022-12-16 23:00:00
## 2325 2022-12-16 22:41:44      TRUE 2022-12-16 23:00:00
## 2326 2022-12-16 22:41:44      TRUE 2022-12-16 23:00:00
## 2327 2022-12-16 22:41:43      TRUE 2022-12-16 23:00:00
## 2328 2022-12-16 22:41:38      TRUE 2022-12-16 23:00:00
## 2329 2022-12-16 22:41:38      TRUE 2022-12-16 23:00:00
## 2330 2022-12-16 22:41:36      TRUE 2022-12-16 23:00:00
## 2331 2022-12-16 22:41:35      TRUE 2022-12-16 23:00:00
## 2332 2022-12-16 22:41:33      TRUE 2022-12-16 23:00:00
## 2333 2022-12-16 22:41:32      TRUE 2022-12-16 23:00:00
## 2334 2022-12-16 22:41:26      TRUE 2022-12-16 23:00:00
## 2335 2022-12-16 22:41:24      TRUE 2022-12-16 23:00:00
## 2336 2022-12-16 22:41:24      TRUE 2022-12-16 23:00:00
## 2337 2022-12-16 22:41:23      TRUE 2022-12-16 23:00:00
## 2338 2022-12-16 22:41:22      TRUE 2022-12-16 23:00:00
## 2339 2022-12-16 22:41:19      TRUE 2022-12-16 23:00:00
## 2340 2022-12-16 22:41:18      TRUE 2022-12-16 23:00:00
## 2341 2022-12-16 22:41:15      TRUE 2022-12-16 23:00:00
## 2342 2022-12-16 22:41:13      TRUE 2022-12-16 23:00:00
## 2343 2022-12-16 22:41:12      TRUE 2022-12-16 23:00:00
## 2344 2022-12-16 22:41:11      TRUE 2022-12-16 23:00:00
## 2345 2022-12-16 22:41:08      TRUE 2022-12-16 23:00:00
## 2346 2022-12-16 22:41:01      TRUE 2022-12-16 23:00:00
## 2347 2022-12-16 22:40:57      TRUE 2022-12-16 23:00:00
## 2348 2022-12-16 22:40:57      TRUE 2022-12-16 23:00:00
## 2349 2022-12-16 22:40:56      TRUE 2022-12-16 23:00:00
## 2350 2022-12-16 22:40:53      TRUE 2022-12-16 23:00:00
## 2351 2022-12-16 22:40:51      TRUE 2022-12-16 23:00:00
## 2352 2022-12-16 22:40:51      TRUE 2022-12-16 23:00:00
## 2353 2022-12-16 22:40:50      TRUE 2022-12-16 23:00:00
## 2354 2022-12-16 22:40:48      TRUE 2022-12-16 23:00:00
## 2355 2022-12-16 22:40:47      TRUE 2022-12-16 23:00:00
## 2356 2022-12-16 22:40:47      TRUE 2022-12-16 23:00:00
## 2357 2022-12-16 22:40:45      TRUE 2022-12-16 23:00:00
## 2358 2022-12-16 22:40:44      TRUE 2022-12-16 23:00:00
## 2359 2022-12-16 22:40:42      TRUE 2022-12-16 23:00:00
## 2360 2022-12-16 22:40:41      TRUE 2022-12-16 23:00:00
## 2361 2022-12-16 22:40:39      TRUE 2022-12-16 23:00:00
## 2362 2022-12-16 22:40:38      TRUE 2022-12-16 23:00:00
## 2363 2022-12-16 22:40:37      TRUE 2022-12-16 23:00:00
## 2364 2022-12-16 22:40:33      TRUE 2022-12-16 23:00:00
## 2365 2022-12-16 22:40:26      TRUE 2022-12-16 23:00:00
## 2366 2022-12-16 22:40:25      TRUE 2022-12-16 23:00:00
## 2367 2022-12-16 22:40:23      TRUE 2022-12-16 23:00:00
## 2368 2022-12-16 22:40:20      TRUE 2022-12-16 23:00:00
## 2369 2022-12-16 22:40:18      TRUE 2022-12-16 23:00:00
## 2370 2022-12-16 22:40:08      TRUE 2022-12-16 23:00:00
## 2371 2022-12-16 22:40:08      TRUE 2022-12-16 23:00:00
## 2372 2022-12-16 22:40:07      TRUE 2022-12-16 23:00:00
## 2373 2022-12-16 22:40:04      TRUE 2022-12-16 23:00:00
## 2374 2022-12-16 22:40:02      TRUE 2022-12-16 23:00:00
## 2375 2022-12-16 22:40:01      TRUE 2022-12-16 23:00:00
## 2376 2022-12-16 22:40:01      TRUE 2022-12-16 23:00:00
## 2377 2022-12-16 22:40:00      TRUE 2022-12-16 23:00:00
## 2378 2022-12-16 22:39:58      TRUE 2022-12-16 23:00:00
## 2379 2022-12-16 22:39:56      TRUE 2022-12-16 23:00:00
## 2380 2022-12-16 22:39:54      TRUE 2022-12-16 23:00:00
## 2381 2022-12-16 22:39:50      TRUE 2022-12-16 23:00:00
## 2382 2022-12-16 22:39:47      TRUE 2022-12-16 23:00:00
## 2383 2022-12-16 22:39:46      TRUE 2022-12-16 23:00:00
## 2384 2022-12-16 22:39:39      TRUE 2022-12-16 23:00:00
## 2385 2022-12-16 22:39:38      TRUE 2022-12-16 23:00:00
## 2386 2022-12-16 22:39:38      TRUE 2022-12-16 23:00:00
## 2387 2022-12-16 22:39:34      TRUE 2022-12-16 23:00:00
## 2388 2022-12-16 22:39:32      TRUE 2022-12-16 23:00:00
## 2389 2022-12-16 22:39:30      TRUE 2022-12-16 23:00:00
## 2390 2022-12-16 22:39:30      TRUE 2022-12-16 23:00:00
## 2391 2022-12-16 22:39:29      TRUE 2022-12-16 23:00:00
## 2392 2022-12-16 22:39:28      TRUE 2022-12-16 23:00:00
## 2393 2022-12-16 22:39:26      TRUE 2022-12-16 23:00:00
## 2394 2022-12-16 22:39:20      TRUE 2022-12-16 23:00:00
## 2395 2022-12-16 22:39:18      TRUE 2022-12-16 23:00:00
## 2396 2022-12-16 22:39:13      TRUE 2022-12-16 23:00:00
## 2397 2022-12-16 22:39:13      TRUE 2022-12-16 23:00:00
## 2398 2022-12-16 22:39:13      TRUE 2022-12-16 23:00:00
## 2399 2022-12-16 22:39:13      TRUE 2022-12-16 23:00:00
## 2400 2022-12-16 22:39:11      TRUE 2022-12-16 23:00:00
## 2401 2022-12-16 22:39:08      TRUE 2022-12-16 23:00:00
## 2402 2022-12-16 22:39:05      TRUE 2022-12-16 23:00:00
## 2403 2022-12-16 22:39:02      TRUE 2022-12-16 23:00:00
## 2404 2022-12-16 22:38:49      TRUE 2022-12-16 23:00:00
## 2405 2022-12-16 22:38:46      TRUE 2022-12-16 23:00:00
## 2406 2022-12-16 22:38:45      TRUE 2022-12-16 23:00:00
## 2407 2022-12-16 22:38:44      TRUE 2022-12-16 23:00:00
## 2408 2022-12-16 22:38:44      TRUE 2022-12-16 23:00:00
## 2409 2022-12-16 22:38:44      TRUE 2022-12-16 23:00:00
## 2410 2022-12-16 22:38:43      TRUE 2022-12-16 23:00:00
## 2411 2022-12-16 22:38:41      TRUE 2022-12-16 23:00:00
## 2412 2022-12-16 22:38:41      TRUE 2022-12-16 23:00:00
## 2413 2022-12-16 22:38:40      TRUE 2022-12-16 23:00:00
## 2414 2022-12-16 22:38:39      TRUE 2022-12-16 23:00:00
## 2415 2022-12-16 22:38:37      TRUE 2022-12-16 23:00:00
## 2416 2022-12-16 22:38:36      TRUE 2022-12-16 23:00:00
## 2417 2022-12-16 22:38:34      TRUE 2022-12-16 23:00:00
## 2418 2022-12-16 22:38:32      TRUE 2022-12-16 23:00:00
## 2419 2022-12-16 22:38:31      TRUE 2022-12-16 23:00:00
## 2420 2022-12-16 22:38:30      TRUE 2022-12-16 23:00:00
## 2421 2022-12-16 22:38:26      TRUE 2022-12-16 23:00:00
## 2422 2022-12-16 22:38:26      TRUE 2022-12-16 23:00:00
## 2423 2022-12-16 22:38:23      TRUE 2022-12-16 23:00:00
## 2424 2022-12-16 22:38:18      TRUE 2022-12-16 23:00:00
## 2425 2022-12-16 22:38:17      TRUE 2022-12-16 23:00:00
## 2426 2022-12-16 22:38:17      TRUE 2022-12-16 23:00:00
## 2427 2022-12-16 22:38:15      TRUE 2022-12-16 23:00:00
## 2428 2022-12-16 22:38:15      TRUE 2022-12-16 23:00:00
## 2429 2022-12-16 22:38:14      TRUE 2022-12-16 23:00:00
## 2430 2022-12-16 22:38:13      TRUE 2022-12-16 23:00:00
## 2431 2022-12-16 22:38:12      TRUE 2022-12-16 23:00:00
## 2432 2022-12-16 22:38:11      TRUE 2022-12-16 23:00:00
## 2433 2022-12-16 22:38:09      TRUE 2022-12-16 23:00:00
## 2434 2022-12-16 22:38:08      TRUE 2022-12-16 23:00:00
## 2435 2022-12-16 22:38:06      TRUE 2022-12-16 23:00:00
## 2436 2022-12-16 22:38:05      TRUE 2022-12-16 23:00:00
## 2437 2022-12-16 22:38:03      TRUE 2022-12-16 23:00:00
## 2438 2022-12-16 22:38:02      TRUE 2022-12-16 23:00:00
## 2439 2022-12-16 22:38:01      TRUE 2022-12-16 23:00:00
## 2440 2022-12-16 22:37:59      TRUE 2022-12-16 23:00:00
## 2441 2022-12-16 22:37:58      TRUE 2022-12-16 23:00:00
## 2442 2022-12-16 22:37:56      TRUE 2022-12-16 23:00:00
## 2443 2022-12-16 22:37:55      TRUE 2022-12-16 23:00:00
## 2444 2022-12-16 22:37:55      TRUE 2022-12-16 23:00:00
## 2445 2022-12-16 22:37:52      TRUE 2022-12-16 23:00:00
## 2446 2022-12-16 22:37:46      TRUE 2022-12-16 23:00:00
## 2447 2022-12-16 22:37:43      TRUE 2022-12-16 23:00:00
## 2448 2022-12-16 22:37:42      TRUE 2022-12-16 23:00:00
## 2449 2022-12-16 22:37:42      TRUE 2022-12-16 23:00:00
## 2450 2022-12-16 22:37:38      TRUE 2022-12-16 23:00:00
## 2451 2022-12-16 22:37:37      TRUE 2022-12-16 23:00:00
## 2452 2022-12-16 22:37:35      TRUE 2022-12-16 23:00:00
## 2453 2022-12-16 22:37:33      TRUE 2022-12-16 23:00:00
## 2454 2022-12-16 22:37:30      TRUE 2022-12-16 23:00:00
## 2455 2022-12-16 22:37:28      TRUE 2022-12-16 23:00:00
## 2456 2022-12-16 22:37:28      TRUE 2022-12-16 23:00:00
## 2457 2022-12-16 22:37:27      TRUE 2022-12-16 23:00:00
## 2458 2022-12-16 22:37:27      TRUE 2022-12-16 23:00:00
## 2459 2022-12-16 22:37:27      TRUE 2022-12-16 23:00:00
## 2460 2022-12-16 22:37:22      TRUE 2022-12-16 23:00:00
## 2461 2022-12-16 22:37:22      TRUE 2022-12-16 23:00:00
## 2462 2022-12-16 22:37:21      TRUE 2022-12-16 23:00:00
## 2463 2022-12-16 22:37:18      TRUE 2022-12-16 23:00:00
## 2464 2022-12-16 22:37:18      TRUE 2022-12-16 23:00:00
## 2465 2022-12-16 22:37:18      TRUE 2022-12-16 23:00:00
## 2466 2022-12-16 22:37:16      TRUE 2022-12-16 23:00:00
## 2467 2022-12-16 22:37:16      TRUE 2022-12-16 23:00:00
## 2468 2022-12-16 22:37:16      TRUE 2022-12-16 23:00:00
## 2469 2022-12-16 22:37:15      TRUE 2022-12-16 23:00:00
## 2470 2022-12-16 22:37:15      TRUE 2022-12-16 23:00:00
## 2471 2022-12-16 22:37:14      TRUE 2022-12-16 23:00:00
## 2472 2022-12-16 22:37:14      TRUE 2022-12-16 23:00:00
## 2473 2022-12-16 22:37:12      TRUE 2022-12-16 23:00:00
## 2474 2022-12-16 22:37:11      TRUE 2022-12-16 23:00:00
## 2475 2022-12-16 22:37:11      TRUE 2022-12-16 23:00:00
## 2476 2022-12-16 22:37:10      TRUE 2022-12-16 23:00:00
## 2477 2022-12-16 22:37:09      TRUE 2022-12-16 23:00:00
## 2478 2022-12-16 22:37:09      TRUE 2022-12-16 23:00:00
## 2479 2022-12-16 22:37:09      TRUE 2022-12-16 23:00:00
## 2480 2022-12-16 22:37:08      TRUE 2022-12-16 23:00:00
## 2481 2022-12-16 22:37:08      TRUE 2022-12-16 23:00:00
## 2482 2022-12-16 22:37:06      TRUE 2022-12-16 23:00:00
## 2483 2022-12-16 22:37:05      TRUE 2022-12-16 23:00:00
## 2484 2022-12-16 22:37:02      TRUE 2022-12-16 23:00:00
## 2485 2022-12-16 22:37:02      TRUE 2022-12-16 23:00:00
## 2486 2022-12-16 22:37:01      TRUE 2022-12-16 23:00:00
## 2487 2022-12-16 22:37:00      TRUE 2022-12-16 23:00:00
## 2488 2022-12-16 22:37:00      TRUE 2022-12-16 23:00:00
## 2489 2022-12-16 22:36:58      TRUE 2022-12-16 23:00:00
## 2490 2022-12-16 22:36:57      TRUE 2022-12-16 23:00:00
## 2491 2022-12-16 22:36:56      TRUE 2022-12-16 23:00:00
## 2492 2022-12-16 22:36:56      TRUE 2022-12-16 23:00:00
## 2493 2022-12-16 22:36:55      TRUE 2022-12-16 23:00:00
## 2494 2022-12-16 22:36:53      TRUE 2022-12-16 23:00:00
## 2495 2022-12-16 22:36:53      TRUE 2022-12-16 23:00:00
## 2496 2022-12-16 22:36:52      TRUE 2022-12-16 23:00:00
## 2497 2022-12-16 22:36:50      TRUE 2022-12-16 23:00:00
## 2498 2022-12-16 22:36:49      TRUE 2022-12-16 23:00:00
## 2499 2022-12-16 22:36:49      TRUE 2022-12-16 23:00:00
## 2500 2022-12-16 22:36:47      TRUE 2022-12-16 23:00:00
## 2501 2022-12-16 22:36:47      TRUE 2022-12-16 23:00:00
## 2502 2022-12-16 22:36:47      TRUE 2022-12-16 23:00:00
## 2503 2022-12-16 22:36:44      TRUE 2022-12-16 23:00:00
## 2504 2022-12-16 22:36:43      TRUE 2022-12-16 23:00:00
## 2505 2022-12-16 22:36:43      TRUE 2022-12-16 23:00:00
## 2506 2022-12-16 22:36:39      TRUE 2022-12-16 23:00:00
## 2507 2022-12-16 22:36:38      TRUE 2022-12-16 23:00:00
## 2508 2022-12-16 22:36:35      TRUE 2022-12-16 23:00:00
## 2509 2022-12-16 22:36:34      TRUE 2022-12-16 23:00:00
## 2510 2022-12-16 22:36:27      TRUE 2022-12-16 23:00:00
## 2511 2022-12-16 22:36:20      TRUE 2022-12-16 23:00:00
## 2512 2022-12-16 22:36:19      TRUE 2022-12-16 23:00:00
## 2513 2022-12-16 22:36:16      TRUE 2022-12-16 23:00:00
## 2514 2022-12-16 22:36:15      TRUE 2022-12-16 23:00:00
## 2515 2022-12-16 22:36:12      TRUE 2022-12-16 23:00:00
## 2516 2022-12-16 22:36:09      TRUE 2022-12-16 23:00:00
## 2517 2022-12-16 22:36:09      TRUE 2022-12-16 23:00:00
## 2518 2022-12-16 22:36:08      TRUE 2022-12-16 23:00:00
## 2519 2022-12-16 22:36:08      TRUE 2022-12-16 23:00:00
## 2520 2022-12-16 22:36:07      TRUE 2022-12-16 23:00:00
## 2521 2022-12-16 22:36:07      TRUE 2022-12-16 23:00:00
## 2522 2022-12-16 22:36:03      TRUE 2022-12-16 23:00:00
## 2523 2022-12-16 22:35:57      TRUE 2022-12-16 23:00:00
## 2524 2022-12-16 22:35:55      TRUE 2022-12-16 23:00:00
## 2525 2022-12-16 22:35:51      TRUE 2022-12-16 23:00:00
## 2526 2022-12-16 22:35:51      TRUE 2022-12-16 23:00:00
## 2527 2022-12-16 22:35:43      TRUE 2022-12-16 23:00:00
## 2528 2022-12-16 22:35:43      TRUE 2022-12-16 23:00:00
## 2529 2022-12-16 22:35:42      TRUE 2022-12-16 23:00:00
## 2530 2022-12-16 22:35:39      TRUE 2022-12-16 23:00:00
## 2531 2022-12-16 22:35:38      TRUE 2022-12-16 23:00:00
## 2532 2022-12-16 22:35:37      TRUE 2022-12-16 23:00:00
## 2533 2022-12-16 22:35:34      TRUE 2022-12-16 23:00:00
## 2534 2022-12-16 22:35:34      TRUE 2022-12-16 23:00:00
## 2535 2022-12-16 22:35:33      TRUE 2022-12-16 23:00:00
## 2536 2022-12-16 22:35:32      TRUE 2022-12-16 23:00:00
## 2537 2022-12-16 22:35:28      TRUE 2022-12-16 23:00:00
## 2538 2022-12-16 22:35:26      TRUE 2022-12-16 23:00:00
## 2539 2022-12-16 22:35:24      TRUE 2022-12-16 23:00:00
## 2540 2022-12-16 22:35:20      TRUE 2022-12-16 23:00:00
## 2541 2022-12-16 22:35:18      TRUE 2022-12-16 23:00:00
## 2542 2022-12-16 22:35:16      TRUE 2022-12-16 23:00:00
## 2543 2022-12-16 22:35:16      TRUE 2022-12-16 23:00:00
## 2544 2022-12-16 22:35:13      TRUE 2022-12-16 23:00:00
## 2545 2022-12-16 22:35:10      TRUE 2022-12-16 23:00:00
## 2546 2022-12-16 22:35:07      TRUE 2022-12-16 23:00:00
## 2547 2022-12-16 22:35:05      TRUE 2022-12-16 23:00:00
## 2548 2022-12-16 22:35:04      TRUE 2022-12-16 23:00:00
## 2549 2022-12-16 22:35:01      TRUE 2022-12-16 23:00:00
## 2550 2022-12-16 22:35:01      TRUE 2022-12-16 23:00:00
## 2551 2022-12-16 22:34:51      TRUE 2022-12-16 23:00:00
## 2552 2022-12-16 22:34:51      TRUE 2022-12-16 23:00:00
## 2553 2022-12-16 22:34:48      TRUE 2022-12-16 23:00:00
## 2554 2022-12-16 22:34:48      TRUE 2022-12-16 23:00:00
## 2555 2022-12-16 22:34:47      TRUE 2022-12-16 23:00:00
## 2556 2022-12-16 22:34:46      TRUE 2022-12-16 23:00:00
## 2557 2022-12-16 22:34:44      TRUE 2022-12-16 23:00:00
## 2558 2022-12-16 22:34:34      TRUE 2022-12-16 23:00:00
## 2559 2022-12-16 22:34:26      TRUE 2022-12-16 23:00:00
## 2560 2022-12-16 22:34:24      TRUE 2022-12-16 23:00:00
## 2561 2022-12-16 22:34:19      TRUE 2022-12-16 23:00:00
## 2562 2022-12-16 22:34:16      TRUE 2022-12-16 23:00:00
## 2563 2022-12-16 22:34:15      TRUE 2022-12-16 23:00:00
## 2564 2022-12-16 22:34:11      TRUE 2022-12-16 23:00:00
## 2565 2022-12-16 22:34:05      TRUE 2022-12-16 23:00:00
## 2566 2022-12-16 22:34:03      TRUE 2022-12-16 23:00:00
## 2567 2022-12-16 22:33:59      TRUE 2022-12-16 23:00:00
## 2568 2022-12-16 22:33:53      TRUE 2022-12-16 23:00:00
## 2569 2022-12-16 22:33:52      TRUE 2022-12-16 23:00:00
## 2570 2022-12-16 22:33:49      TRUE 2022-12-16 23:00:00
## 2571 2022-12-16 22:33:45      TRUE 2022-12-16 23:00:00
## 2572 2022-12-16 22:33:44      TRUE 2022-12-16 23:00:00
## 2573 2022-12-16 22:33:44      TRUE 2022-12-16 23:00:00
## 2574 2022-12-16 22:33:43      TRUE 2022-12-16 23:00:00
## 2575 2022-12-16 22:33:42      TRUE 2022-12-16 23:00:00
## 2576 2022-12-16 22:33:37      TRUE 2022-12-16 23:00:00
## 2577 2022-12-16 22:33:31      TRUE 2022-12-16 23:00:00
## 2578 2022-12-16 22:33:30      TRUE 2022-12-16 23:00:00
## 2579 2022-12-16 22:33:29      TRUE 2022-12-16 23:00:00
## 2580 2022-12-16 22:33:29      TRUE 2022-12-16 23:00:00
## 2581 2022-12-16 22:33:22      TRUE 2022-12-16 23:00:00
## 2582 2022-12-16 22:33:21      TRUE 2022-12-16 23:00:00
## 2583 2022-12-16 22:33:20      TRUE 2022-12-16 23:00:00
## 2584 2022-12-16 22:33:12      TRUE 2022-12-16 23:00:00
## 2585 2022-12-16 22:33:11      TRUE 2022-12-16 23:00:00
## 2586 2022-12-16 22:33:08      TRUE 2022-12-16 23:00:00
## 2587 2022-12-16 22:33:08      TRUE 2022-12-16 23:00:00
## 2588 2022-12-16 22:33:08      TRUE 2022-12-16 23:00:00
## 2589 2022-12-16 22:33:06      TRUE 2022-12-16 23:00:00
## 2590 2022-12-16 22:33:02      TRUE 2022-12-16 23:00:00
## 2591 2022-12-16 22:33:00      TRUE 2022-12-16 23:00:00
## 2592 2022-12-16 22:32:58      TRUE 2022-12-16 23:00:00
## 2593 2022-12-16 22:32:58      TRUE 2022-12-16 23:00:00
## 2594 2022-12-16 22:32:51      TRUE 2022-12-16 23:00:00
## 2595 2022-12-16 22:32:49      TRUE 2022-12-16 23:00:00
## 2596 2022-12-16 22:32:49      TRUE 2022-12-16 23:00:00
## 2597 2022-12-16 22:32:44      TRUE 2022-12-16 23:00:00
## 2598 2022-12-16 22:32:44      TRUE 2022-12-16 23:00:00
## 2599 2022-12-16 22:32:42      TRUE 2022-12-16 23:00:00
## 2600 2022-12-16 22:32:35      TRUE 2022-12-16 23:00:00
## 2601 2022-12-16 22:32:29      TRUE 2022-12-16 23:00:00
## 2602 2022-12-16 22:32:27      TRUE 2022-12-16 23:00:00
## 2603 2022-12-16 22:32:27      TRUE 2022-12-16 23:00:00
## 2604 2022-12-16 22:32:26      TRUE 2022-12-16 23:00:00
## 2605 2022-12-16 22:32:24      TRUE 2022-12-16 23:00:00
## 2606 2022-12-16 22:32:20      TRUE 2022-12-16 23:00:00
## 2607 2022-12-16 22:32:20      TRUE 2022-12-16 23:00:00
## 2608 2022-12-16 22:32:20      TRUE 2022-12-16 23:00:00
## 2609 2022-12-16 22:32:19      TRUE 2022-12-16 23:00:00
## 2610 2022-12-16 22:32:18      TRUE 2022-12-16 23:00:00
## 2611 2022-12-16 22:32:17      TRUE 2022-12-16 23:00:00
## 2612 2022-12-16 22:32:17      TRUE 2022-12-16 23:00:00
## 2613 2022-12-16 22:32:15      TRUE 2022-12-16 23:00:00
## 2614 2022-12-16 22:32:12      TRUE 2022-12-16 23:00:00
## 2615 2022-12-16 22:32:09      TRUE 2022-12-16 23:00:00
## 2616 2022-12-16 22:32:08      TRUE 2022-12-16 23:00:00
## 2617 2022-12-16 22:32:08      TRUE 2022-12-16 23:00:00
## 2618 2022-12-16 22:32:05      TRUE 2022-12-16 23:00:00
## 2619 2022-12-16 22:32:01      TRUE 2022-12-16 23:00:00
## 2620 2022-12-16 22:31:58      TRUE 2022-12-16 23:00:00
## 2621 2022-12-16 22:31:57      TRUE 2022-12-16 23:00:00
## 2622 2022-12-16 22:31:57      TRUE 2022-12-16 23:00:00
## 2623 2022-12-16 22:31:57      TRUE 2022-12-16 23:00:00
## 2624 2022-12-16 22:31:54      TRUE 2022-12-16 23:00:00
## 2625 2022-12-16 22:31:53      TRUE 2022-12-16 23:00:00
## 2626 2022-12-16 22:31:50      TRUE 2022-12-16 23:00:00
## 2627 2022-12-16 22:31:46      TRUE 2022-12-16 23:00:00
## 2628 2022-12-16 22:31:45      TRUE 2022-12-16 23:00:00
## 2629 2022-12-16 22:31:44      TRUE 2022-12-16 23:00:00
## 2630 2022-12-16 22:31:43      TRUE 2022-12-16 23:00:00
## 2631 2022-12-16 22:31:43      TRUE 2022-12-16 23:00:00
## 2632 2022-12-16 22:31:42      TRUE 2022-12-16 23:00:00
## 2633 2022-12-16 22:31:39      TRUE 2022-12-16 23:00:00
## 2634 2022-12-16 22:31:35      TRUE 2022-12-16 23:00:00
## 2635 2022-12-16 22:31:35      TRUE 2022-12-16 23:00:00
## 2636 2022-12-16 22:31:33      TRUE 2022-12-16 23:00:00
## 2637 2022-12-16 22:31:29      TRUE 2022-12-16 23:00:00
## 2638 2022-12-16 22:31:29      TRUE 2022-12-16 23:00:00
## 2639 2022-12-16 22:31:29      TRUE 2022-12-16 23:00:00
## 2640 2022-12-16 22:31:27      TRUE 2022-12-16 23:00:00
## 2641 2022-12-16 22:31:25      TRUE 2022-12-16 23:00:00
## 2642 2022-12-16 22:31:22      TRUE 2022-12-16 23:00:00
## 2643 2022-12-16 22:31:22      TRUE 2022-12-16 23:00:00
## 2644 2022-12-16 22:31:22      TRUE 2022-12-16 23:00:00
## 2645 2022-12-16 22:31:21      TRUE 2022-12-16 23:00:00
## 2646 2022-12-16 22:31:20      TRUE 2022-12-16 23:00:00
## 2647 2022-12-16 22:31:17      TRUE 2022-12-16 23:00:00
## 2648 2022-12-16 22:31:15      TRUE 2022-12-16 23:00:00
## 2649 2022-12-16 22:31:12      TRUE 2022-12-16 23:00:00
## 2650 2022-12-16 22:31:09      TRUE 2022-12-16 23:00:00
## 2651 2022-12-16 22:31:04      TRUE 2022-12-16 23:00:00
## 2652 2022-12-16 22:31:02      TRUE 2022-12-16 23:00:00
## 2653 2022-12-16 22:31:02      TRUE 2022-12-16 23:00:00
## 2654 2022-12-16 22:31:02      TRUE 2022-12-16 23:00:00
## 2655 2022-12-16 22:31:00      TRUE 2022-12-16 23:00:00
## 2656 2022-12-16 22:30:59      TRUE 2022-12-16 23:00:00
## 2657 2022-12-16 22:30:57      TRUE 2022-12-16 23:00:00
## 2658 2022-12-16 22:30:52      TRUE 2022-12-16 23:00:00
## 2659 2022-12-16 22:30:51      TRUE 2022-12-16 23:00:00
## 2660 2022-12-16 22:30:51      TRUE 2022-12-16 23:00:00
## 2661 2022-12-16 22:30:50      TRUE 2022-12-16 23:00:00
## 2662 2022-12-16 22:30:46      TRUE 2022-12-16 23:00:00
## 2663 2022-12-16 22:30:41      TRUE 2022-12-16 23:00:00
## 2664 2022-12-16 22:30:24      TRUE 2022-12-16 23:00:00
## 2665 2022-12-16 22:30:23      TRUE 2022-12-16 23:00:00
## 2666 2022-12-16 22:30:23      TRUE 2022-12-16 23:00:00
## 2667 2022-12-16 22:30:21      TRUE 2022-12-16 23:00:00
## 2668 2022-12-16 22:30:20      TRUE 2022-12-16 23:00:00
## 2669 2022-12-16 22:30:16      TRUE 2022-12-16 23:00:00
## 2670 2022-12-16 22:30:16      TRUE 2022-12-16 23:00:00
## 2671 2022-12-16 22:30:15      TRUE 2022-12-16 23:00:00
## 2672 2022-12-16 22:30:11      TRUE 2022-12-16 23:00:00
## 2673 2022-12-16 22:30:05      TRUE 2022-12-16 23:00:00
## 2674 2022-12-16 22:30:05      TRUE 2022-12-16 23:00:00
## 2675 2022-12-16 22:30:04      TRUE 2022-12-16 23:00:00
## 2676 2022-12-16 22:30:03      TRUE 2022-12-16 23:00:00
## 2677 2022-12-16 22:30:00      TRUE 2022-12-16 23:00:00
## 2678 2022-12-16 22:29:59      TRUE 2022-12-16 22:00:00
## 2679 2022-12-16 22:29:57      TRUE 2022-12-16 22:00:00
## 2680 2022-12-16 22:29:51      TRUE 2022-12-16 22:00:00
## 2681 2022-12-16 22:29:50      TRUE 2022-12-16 22:00:00
## 2682 2022-12-16 22:29:49      TRUE 2022-12-16 22:00:00
## 2683 2022-12-16 22:29:45      TRUE 2022-12-16 22:00:00
## 2684 2022-12-16 22:29:44      TRUE 2022-12-16 22:00:00
## 2685 2022-12-16 22:29:44      TRUE 2022-12-16 22:00:00
## 2686 2022-12-16 22:29:43      TRUE 2022-12-16 22:00:00
## 2687 2022-12-16 22:29:38      TRUE 2022-12-16 22:00:00
## 2688 2022-12-16 22:29:27      TRUE 2022-12-16 22:00:00
## 2689 2022-12-16 22:29:26      TRUE 2022-12-16 22:00:00
## 2690 2022-12-16 22:29:21      TRUE 2022-12-16 22:00:00
## 2691 2022-12-16 22:29:15      TRUE 2022-12-16 22:00:00
## 2692 2022-12-16 22:29:10      TRUE 2022-12-16 22:00:00
## 2693 2022-12-16 22:29:09      TRUE 2022-12-16 22:00:00
## 2694 2022-12-16 22:29:05      TRUE 2022-12-16 22:00:00
## 2695 2022-12-16 22:29:01      TRUE 2022-12-16 22:00:00
## 2696 2022-12-16 22:29:01      TRUE 2022-12-16 22:00:00
## 2697 2022-12-16 22:29:00      TRUE 2022-12-16 22:00:00
## 2698 2022-12-16 22:29:00      TRUE 2022-12-16 22:00:00
## 2699 2022-12-16 22:28:59      TRUE 2022-12-16 22:00:00
## 2700 2022-12-16 22:28:58      TRUE 2022-12-16 22:00:00
## 2701 2022-12-16 22:28:58      TRUE 2022-12-16 22:00:00
## 2702 2022-12-16 22:28:53      TRUE 2022-12-16 22:00:00
## 2703 2022-12-16 22:28:53      TRUE 2022-12-16 22:00:00
## 2704 2022-12-16 22:28:50      TRUE 2022-12-16 22:00:00
## 2705 2022-12-16 22:28:49      TRUE 2022-12-16 22:00:00
## 2706 2022-12-16 22:28:45      TRUE 2022-12-16 22:00:00
## 2707 2022-12-16 22:28:43      TRUE 2022-12-16 22:00:00
## 2708 2022-12-16 22:28:42      TRUE 2022-12-16 22:00:00
## 2709 2022-12-16 22:28:41      TRUE 2022-12-16 22:00:00
## 2710 2022-12-16 22:28:41      TRUE 2022-12-16 22:00:00
## 2711 2022-12-16 22:28:41      TRUE 2022-12-16 22:00:00
## 2712 2022-12-16 22:28:39      TRUE 2022-12-16 22:00:00
## 2713 2022-12-16 22:28:39      TRUE 2022-12-16 22:00:00
## 2714 2022-12-16 22:28:37      TRUE 2022-12-16 22:00:00
## 2715 2022-12-16 22:28:36      TRUE 2022-12-16 22:00:00
## 2716 2022-12-16 22:28:31      TRUE 2022-12-16 22:00:00
## 2717 2022-12-16 22:28:30      TRUE 2022-12-16 22:00:00
## 2718 2022-12-16 22:28:29      TRUE 2022-12-16 22:00:00
## 2719 2022-12-16 22:28:27      TRUE 2022-12-16 22:00:00
## 2720 2022-12-16 22:28:27      TRUE 2022-12-16 22:00:00
## 2721 2022-12-16 22:28:25      TRUE 2022-12-16 22:00:00
## 2722 2022-12-16 22:28:25      TRUE 2022-12-16 22:00:00
## 2723 2022-12-16 22:28:23      TRUE 2022-12-16 22:00:00
## 2724 2022-12-16 22:28:23      TRUE 2022-12-16 22:00:00
## 2725 2022-12-16 22:28:18      TRUE 2022-12-16 22:00:00
## 2726 2022-12-16 22:28:17      TRUE 2022-12-16 22:00:00
## 2727 2022-12-16 22:28:17      TRUE 2022-12-16 22:00:00
## 2728 2022-12-16 22:28:13      TRUE 2022-12-16 22:00:00
## 2729 2022-12-16 22:28:13      TRUE 2022-12-16 22:00:00
## 2730 2022-12-16 22:28:13      TRUE 2022-12-16 22:00:00
## 2731 2022-12-16 22:28:10      TRUE 2022-12-16 22:00:00
## 2732 2022-12-16 22:28:09      TRUE 2022-12-16 22:00:00
## 2733 2022-12-16 22:28:08      TRUE 2022-12-16 22:00:00
## 2734 2022-12-16 22:28:06      TRUE 2022-12-16 22:00:00
## 2735 2022-12-16 22:28:05      TRUE 2022-12-16 22:00:00
## 2736 2022-12-16 22:28:04      TRUE 2022-12-16 22:00:00
## 2737 2022-12-16 22:28:04      TRUE 2022-12-16 22:00:00
## 2738 2022-12-16 22:28:03      TRUE 2022-12-16 22:00:00
## 2739 2022-12-16 22:28:03      TRUE 2022-12-16 22:00:00
## 2740 2022-12-16 22:28:00      TRUE 2022-12-16 22:00:00
## 2741 2022-12-16 22:27:58      TRUE 2022-12-16 22:00:00
## 2742 2022-12-16 22:27:56      TRUE 2022-12-16 22:00:00
## 2743 2022-12-16 22:27:55      TRUE 2022-12-16 22:00:00
## 2744 2022-12-16 22:27:55      TRUE 2022-12-16 22:00:00
## 2745 2022-12-16 22:27:55      TRUE 2022-12-16 22:00:00
## 2746 2022-12-16 22:27:53      TRUE 2022-12-16 22:00:00
## 2747 2022-12-16 22:27:52      TRUE 2022-12-16 22:00:00
## 2748 2022-12-16 22:27:52      TRUE 2022-12-16 22:00:00
## 2749 2022-12-16 22:27:51      TRUE 2022-12-16 22:00:00
## 2750 2022-12-16 22:27:51      TRUE 2022-12-16 22:00:00
## 2751 2022-12-16 22:27:49      TRUE 2022-12-16 22:00:00
## 2752 2022-12-16 22:27:47      TRUE 2022-12-16 22:00:00
## 2753 2022-12-16 22:27:46      TRUE 2022-12-16 22:00:00
## 2754 2022-12-16 22:27:42      TRUE 2022-12-16 22:00:00
## 2755 2022-12-16 22:27:39      TRUE 2022-12-16 22:00:00
## 2756 2022-12-16 22:27:36      TRUE 2022-12-16 22:00:00
## 2757 2022-12-16 22:27:34      TRUE 2022-12-16 22:00:00
## 2758 2022-12-16 22:27:32      TRUE 2022-12-16 22:00:00
## 2759 2022-12-16 22:27:32      TRUE 2022-12-16 22:00:00
## 2760 2022-12-16 22:27:32      TRUE 2022-12-16 22:00:00
## 2761 2022-12-16 22:27:30      TRUE 2022-12-16 22:00:00
## 2762 2022-12-16 22:27:30      TRUE 2022-12-16 22:00:00
## 2763 2022-12-16 22:27:30      TRUE 2022-12-16 22:00:00
## 2764 2022-12-16 22:27:28      TRUE 2022-12-16 22:00:00
## 2765 2022-12-16 22:27:27      TRUE 2022-12-16 22:00:00
## 2766 2022-12-16 22:27:27      TRUE 2022-12-16 22:00:00
## 2767 2022-12-16 22:27:26      TRUE 2022-12-16 22:00:00
## 2768 2022-12-16 22:27:20      TRUE 2022-12-16 22:00:00
## 2769 2022-12-16 22:27:19      TRUE 2022-12-16 22:00:00
## 2770 2022-12-16 22:27:18      TRUE 2022-12-16 22:00:00
## 2771 2022-12-16 22:27:18      TRUE 2022-12-16 22:00:00
## 2772 2022-12-16 22:27:17      TRUE 2022-12-16 22:00:00
## 2773 2022-12-16 22:27:15      TRUE 2022-12-16 22:00:00
## 2774 2022-12-16 22:27:14      TRUE 2022-12-16 22:00:00
## 2775 2022-12-16 22:27:12      TRUE 2022-12-16 22:00:00
## 2776 2022-12-16 22:27:12      TRUE 2022-12-16 22:00:00
## 2777 2022-12-16 22:27:07      TRUE 2022-12-16 22:00:00
## 2778 2022-12-16 22:27:06      TRUE 2022-12-16 22:00:00
## 2779 2022-12-16 22:27:03      TRUE 2022-12-16 22:00:00
## 2780 2022-12-16 22:27:03      TRUE 2022-12-16 22:00:00
## 2781 2022-12-16 22:27:00      TRUE 2022-12-16 22:00:00
## 2782 2022-12-16 22:26:59      TRUE 2022-12-16 22:00:00
## 2783 2022-12-16 22:26:57      TRUE 2022-12-16 22:00:00
## 2784 2022-12-16 22:26:57      TRUE 2022-12-16 22:00:00
## 2785 2022-12-16 22:26:55      TRUE 2022-12-16 22:00:00
## 2786 2022-12-16 22:26:55      TRUE 2022-12-16 22:00:00
## 2787 2022-12-16 22:26:49      TRUE 2022-12-16 22:00:00
## 2788 2022-12-16 22:26:47      TRUE 2022-12-16 22:00:00
## 2789 2022-12-16 22:26:41      TRUE 2022-12-16 22:00:00
## 2790 2022-12-16 22:26:41      TRUE 2022-12-16 22:00:00
## 2791 2022-12-16 22:26:39      TRUE 2022-12-16 22:00:00
## 2792 2022-12-16 22:26:34      TRUE 2022-12-16 22:00:00
## 2793 2022-12-16 22:26:31      TRUE 2022-12-16 22:00:00
## 2794 2022-12-16 22:26:31      TRUE 2022-12-16 22:00:00
## 2795 2022-12-16 22:26:30      TRUE 2022-12-16 22:00:00
## 2796 2022-12-16 22:26:29      TRUE 2022-12-16 22:00:00
## 2797 2022-12-16 22:26:21      TRUE 2022-12-16 22:00:00
## 2798 2022-12-16 22:26:20      TRUE 2022-12-16 22:00:00
## 2799 2022-12-16 22:26:18      TRUE 2022-12-16 22:00:00
## 2800 2022-12-16 22:26:16      TRUE 2022-12-16 22:00:00
## 2801 2022-12-16 22:26:11      TRUE 2022-12-16 22:00:00
## 2802 2022-12-16 22:26:07      TRUE 2022-12-16 22:00:00
## 2803 2022-12-16 22:26:05      TRUE 2022-12-16 22:00:00
## 2804 2022-12-16 22:26:03      TRUE 2022-12-16 22:00:00
## 2805 2022-12-16 22:26:02      TRUE 2022-12-16 22:00:00
## 2806 2022-12-16 22:26:02      TRUE 2022-12-16 22:00:00
## 2807 2022-12-16 22:26:00      TRUE 2022-12-16 22:00:00
## 2808 2022-12-16 22:25:59      TRUE 2022-12-16 22:00:00
## 2809 2022-12-16 22:25:59      TRUE 2022-12-16 22:00:00
## 2810 2022-12-16 22:25:58      TRUE 2022-12-16 22:00:00
## 2811 2022-12-16 22:25:57      TRUE 2022-12-16 22:00:00
## 2812 2022-12-16 22:25:55      TRUE 2022-12-16 22:00:00
## 2813 2022-12-16 22:25:54      TRUE 2022-12-16 22:00:00
## 2814 2022-12-16 22:25:53      TRUE 2022-12-16 22:00:00
## 2815 2022-12-16 22:25:49      TRUE 2022-12-16 22:00:00
## 2816 2022-12-16 22:25:47      TRUE 2022-12-16 22:00:00
## 2817 2022-12-16 22:25:47      TRUE 2022-12-16 22:00:00
## 2818 2022-12-16 22:25:43      TRUE 2022-12-16 22:00:00
## 2819 2022-12-16 22:25:37      TRUE 2022-12-16 22:00:00
## 2820 2022-12-16 22:25:37      TRUE 2022-12-16 22:00:00
## 2821 2022-12-16 22:25:35      TRUE 2022-12-16 22:00:00
## 2822 2022-12-16 22:25:34      TRUE 2022-12-16 22:00:00
## 2823 2022-12-16 22:25:30      TRUE 2022-12-16 22:00:00
## 2824 2022-12-16 22:25:27      TRUE 2022-12-16 22:00:00
## 2825 2022-12-16 22:25:20      TRUE 2022-12-16 22:00:00
## 2826 2022-12-16 22:25:17      TRUE 2022-12-16 22:00:00
## 2827 2022-12-16 22:25:14      TRUE 2022-12-16 22:00:00
## 2828 2022-12-16 22:25:08      TRUE 2022-12-16 22:00:00
## 2829 2022-12-16 22:25:05      TRUE 2022-12-16 22:00:00
## 2830 2022-12-16 22:24:57      TRUE 2022-12-16 22:00:00
## 2831 2022-12-16 22:24:49      TRUE 2022-12-16 22:00:00
## 2832 2022-12-16 22:24:44      TRUE 2022-12-16 22:00:00
## 2833 2022-12-16 22:24:42      TRUE 2022-12-16 22:00:00
## 2834 2022-12-16 22:24:42      TRUE 2022-12-16 22:00:00
## 2835 2022-12-16 22:24:39      TRUE 2022-12-16 22:00:00
## 2836 2022-12-16 22:24:37      TRUE 2022-12-16 22:00:00
## 2837 2022-12-16 22:24:36      TRUE 2022-12-16 22:00:00
## 2838 2022-12-16 22:24:36      TRUE 2022-12-16 22:00:00
## 2839 2022-12-16 22:24:34      TRUE 2022-12-16 22:00:00
## 2840 2022-12-16 22:24:34      TRUE 2022-12-16 22:00:00
## 2841 2022-12-16 22:24:34      TRUE 2022-12-16 22:00:00
## 2842 2022-12-16 22:24:33      TRUE 2022-12-16 22:00:00
## 2843 2022-12-16 22:24:31      TRUE 2022-12-16 22:00:00
## 2844 2022-12-16 22:24:30      TRUE 2022-12-16 22:00:00
## 2845 2022-12-16 22:24:29      TRUE 2022-12-16 22:00:00
## 2846 2022-12-16 22:24:28      TRUE 2022-12-16 22:00:00
## 2847 2022-12-16 22:24:26      TRUE 2022-12-16 22:00:00
## 2848 2022-12-16 22:24:24      TRUE 2022-12-16 22:00:00
## 2849 2022-12-16 22:24:24      TRUE 2022-12-16 22:00:00
## 2850 2022-12-16 22:24:18      TRUE 2022-12-16 22:00:00
## 2851 2022-12-16 22:24:17      TRUE 2022-12-16 22:00:00
## 2852 2022-12-16 22:24:16      TRUE 2022-12-16 22:00:00
## 2853 2022-12-16 22:24:15      TRUE 2022-12-16 22:00:00
## 2854 2022-12-16 22:24:11      TRUE 2022-12-16 22:00:00
## 2855 2022-12-16 22:24:11      TRUE 2022-12-16 22:00:00
## 2856 2022-12-16 22:24:09      TRUE 2022-12-16 22:00:00
## 2857 2022-12-16 22:24:09      TRUE 2022-12-16 22:00:00
## 2858 2022-12-16 22:24:09      TRUE 2022-12-16 22:00:00
## 2859 2022-12-16 22:24:05      TRUE 2022-12-16 22:00:00
## 2860 2022-12-16 22:24:04      TRUE 2022-12-16 22:00:00
## 2861 2022-12-16 22:24:02      TRUE 2022-12-16 22:00:00
## 2862 2022-12-16 22:24:02      TRUE 2022-12-16 22:00:00
## 2863 2022-12-16 22:24:02      TRUE 2022-12-16 22:00:00
## 2864 2022-12-16 22:23:57      TRUE 2022-12-16 22:00:00
## 2865 2022-12-16 22:23:55      TRUE 2022-12-16 22:00:00
## 2866 2022-12-16 22:23:49      TRUE 2022-12-16 22:00:00
## 2867 2022-12-16 22:23:47      TRUE 2022-12-16 22:00:00
## 2868 2022-12-16 22:23:46      TRUE 2022-12-16 22:00:00
## 2869 2022-12-16 22:23:41      TRUE 2022-12-16 22:00:00
## 2870 2022-12-16 22:23:41      TRUE 2022-12-16 22:00:00
## 2871 2022-12-16 22:23:41      TRUE 2022-12-16 22:00:00
## 2872 2022-12-16 22:23:35      TRUE 2022-12-16 22:00:00
## 2873 2022-12-16 22:23:31      TRUE 2022-12-16 22:00:00
## 2874 2022-12-16 22:23:31      TRUE 2022-12-16 22:00:00
## 2875 2022-12-16 22:23:31      TRUE 2022-12-16 22:00:00
## 2876 2022-12-16 22:23:27      TRUE 2022-12-16 22:00:00
## 2877 2022-12-16 22:23:25      TRUE 2022-12-16 22:00:00
## 2878 2022-12-16 22:23:22      TRUE 2022-12-16 22:00:00
## 2879 2022-12-16 22:23:22      TRUE 2022-12-16 22:00:00
## 2880 2022-12-16 22:23:15      TRUE 2022-12-16 22:00:00
## 2881 2022-12-16 22:23:13      TRUE 2022-12-16 22:00:00
## 2882 2022-12-16 22:23:09      TRUE 2022-12-16 22:00:00
## 2883 2022-12-16 22:23:06      TRUE 2022-12-16 22:00:00
## 2884 2022-12-16 22:23:03      TRUE 2022-12-16 22:00:00
## 2885 2022-12-16 22:22:57      TRUE 2022-12-16 22:00:00
## 2886 2022-12-16 22:22:56      TRUE 2022-12-16 22:00:00
## 2887 2022-12-16 22:22:55      TRUE 2022-12-16 22:00:00
## 2888 2022-12-16 22:22:52      TRUE 2022-12-16 22:00:00
## 2889 2022-12-16 22:22:48      TRUE 2022-12-16 22:00:00
## 2890 2022-12-16 22:22:48      TRUE 2022-12-16 22:00:00
## 2891 2022-12-16 22:22:44      TRUE 2022-12-16 22:00:00
## 2892 2022-12-16 22:22:42      TRUE 2022-12-16 22:00:00
## 2893 2022-12-16 22:22:41      TRUE 2022-12-16 22:00:00
## 2894 2022-12-16 22:22:39      TRUE 2022-12-16 22:00:00
## 2895 2022-12-16 22:22:36      TRUE 2022-12-16 22:00:00
## 2896 2022-12-16 22:22:34      TRUE 2022-12-16 22:00:00
## 2897 2022-12-16 22:22:34      TRUE 2022-12-16 22:00:00
## 2898 2022-12-16 22:22:31      TRUE 2022-12-16 22:00:00
## 2899 2022-12-16 22:22:30      TRUE 2022-12-16 22:00:00
## 2900 2022-12-16 22:22:29      TRUE 2022-12-16 22:00:00
## 2901 2022-12-16 22:22:29      TRUE 2022-12-16 22:00:00
## 2902 2022-12-16 22:22:26      TRUE 2022-12-16 22:00:00
## 2903 2022-12-16 22:22:25      TRUE 2022-12-16 22:00:00
## 2904 2022-12-16 22:22:23      TRUE 2022-12-16 22:00:00
## 2905 2022-12-16 22:22:22      TRUE 2022-12-16 22:00:00
## 2906 2022-12-16 22:22:17      TRUE 2022-12-16 22:00:00
## 2907 2022-12-16 22:22:15      TRUE 2022-12-16 22:00:00
## 2908 2022-12-16 22:22:12      TRUE 2022-12-16 22:00:00
## 2909 2022-12-16 22:22:07      TRUE 2022-12-16 22:00:00
## 2910 2022-12-16 22:22:06      TRUE 2022-12-16 22:00:00
## 2911 2022-12-16 22:22:04      TRUE 2022-12-16 22:00:00
## 2912 2022-12-16 22:22:03      TRUE 2022-12-16 22:00:00
## 2913 2022-12-16 22:22:01      TRUE 2022-12-16 22:00:00
## 2914 2022-12-16 22:22:00      TRUE 2022-12-16 22:00:00
## 2915 2022-12-16 22:21:58      TRUE 2022-12-16 22:00:00
## 2916 2022-12-16 22:21:57      TRUE 2022-12-16 22:00:00
## 2917 2022-12-16 22:21:56      TRUE 2022-12-16 22:00:00
## 2918 2022-12-16 22:21:34      TRUE 2022-12-16 22:00:00
## 2919 2022-12-16 22:21:32      TRUE 2022-12-16 22:00:00
## 2920 2022-12-16 22:21:27      TRUE 2022-12-16 22:00:00
## 2921 2022-12-16 22:21:27      TRUE 2022-12-16 22:00:00
## 2922 2022-12-16 22:21:22      TRUE 2022-12-16 22:00:00
## 2923 2022-12-16 22:21:21      TRUE 2022-12-16 22:00:00
## 2924 2022-12-16 22:21:21      TRUE 2022-12-16 22:00:00
## 2925 2022-12-16 22:21:20      TRUE 2022-12-16 22:00:00
## 2926 2022-12-16 22:21:17      TRUE 2022-12-16 22:00:00
## 2927 2022-12-16 22:21:16      TRUE 2022-12-16 22:00:00
## 2928 2022-12-16 22:21:15      TRUE 2022-12-16 22:00:00
## 2929 2022-12-16 22:21:14      TRUE 2022-12-16 22:00:00
## 2930 2022-12-16 22:21:12      TRUE 2022-12-16 22:00:00
## 2931 2022-12-16 22:21:11      TRUE 2022-12-16 22:00:00
## 2932 2022-12-16 22:21:11      TRUE 2022-12-16 22:00:00
## 2933 2022-12-16 22:21:09      TRUE 2022-12-16 22:00:00
## 2934 2022-12-16 22:21:08      TRUE 2022-12-16 22:00:00
## 2935 2022-12-16 22:21:05      TRUE 2022-12-16 22:00:00
## 2936 2022-12-16 22:21:04      TRUE 2022-12-16 22:00:00
## 2937 2022-12-16 22:20:58      TRUE 2022-12-16 22:00:00
## 2938 2022-12-16 22:20:56      TRUE 2022-12-16 22:00:00
## 2939 2022-12-16 22:20:53      TRUE 2022-12-16 22:00:00
## 2940 2022-12-16 22:20:51      TRUE 2022-12-16 22:00:00
## 2941 2022-12-16 22:20:48      TRUE 2022-12-16 22:00:00
## 2942 2022-12-16 22:20:45      TRUE 2022-12-16 22:00:00
## 2943 2022-12-16 22:20:45      TRUE 2022-12-16 22:00:00
## 2944 2022-12-16 22:20:42      TRUE 2022-12-16 22:00:00
## 2945 2022-12-16 22:20:41      TRUE 2022-12-16 22:00:00
## 2946 2022-12-16 22:20:36      TRUE 2022-12-16 22:00:00
## 2947 2022-12-16 22:20:36      TRUE 2022-12-16 22:00:00
## 2948 2022-12-16 22:20:32      TRUE 2022-12-16 22:00:00
## 2949 2022-12-16 22:20:31      TRUE 2022-12-16 22:00:00
## 2950 2022-12-16 22:20:31      TRUE 2022-12-16 22:00:00
## 2951 2022-12-16 22:20:27      TRUE 2022-12-16 22:00:00
## 2952 2022-12-16 22:20:26      TRUE 2022-12-16 22:00:00
## 2953 2022-12-16 22:20:25      TRUE 2022-12-16 22:00:00
## 2954 2022-12-16 22:20:24      TRUE 2022-12-16 22:00:00
## 2955 2022-12-16 22:20:20      TRUE 2022-12-16 22:00:00
## 2956 2022-12-16 22:20:14      TRUE 2022-12-16 22:00:00
## 2957 2022-12-16 22:20:11      TRUE 2022-12-16 22:00:00
## 2958 2022-12-16 22:20:11      TRUE 2022-12-16 22:00:00
## 2959 2022-12-16 22:20:11      TRUE 2022-12-16 22:00:00
## 2960 2022-12-16 22:20:10      TRUE 2022-12-16 22:00:00
## 2961 2022-12-16 22:20:10      TRUE 2022-12-16 22:00:00
## 2962 2022-12-16 22:20:09      TRUE 2022-12-16 22:00:00
## 2963 2022-12-16 22:20:08      TRUE 2022-12-16 22:00:00
## 2964 2022-12-16 22:20:06      TRUE 2022-12-16 22:00:00
## 2965 2022-12-16 22:20:05      TRUE 2022-12-16 22:00:00
## 2966 2022-12-16 22:20:05      TRUE 2022-12-16 22:00:00
## 2967 2022-12-16 22:20:03      TRUE 2022-12-16 22:00:00
## 2968 2022-12-16 22:20:01      TRUE 2022-12-16 22:00:00
## 2969 2022-12-16 22:19:57      TRUE 2022-12-16 22:00:00
## 2970 2022-12-16 22:19:48      TRUE 2022-12-16 22:00:00
## 2971 2022-12-16 22:19:47      TRUE 2022-12-16 22:00:00
## 2972 2022-12-16 22:19:45      TRUE 2022-12-16 22:00:00
## 2973 2022-12-16 22:19:45      TRUE 2022-12-16 22:00:00
## 2974 2022-12-16 22:19:28      TRUE 2022-12-16 22:00:00
## 2975 2022-12-16 22:19:24      TRUE 2022-12-16 22:00:00
## 2976 2022-12-16 22:19:20      TRUE 2022-12-16 22:00:00
## 2977 2022-12-16 22:19:18      TRUE 2022-12-16 22:00:00
## 2978 2022-12-16 22:19:17      TRUE 2022-12-16 22:00:00
## 2979 2022-12-16 22:19:17      TRUE 2022-12-16 22:00:00
## 2980 2022-12-16 22:19:16      TRUE 2022-12-16 22:00:00
## 2981 2022-12-16 22:19:15      TRUE 2022-12-16 22:00:00
## 2982 2022-12-16 22:19:13      TRUE 2022-12-16 22:00:00
## 2983 2022-12-16 22:19:07      TRUE 2022-12-16 22:00:00
## 2984 2022-12-16 22:19:06      TRUE 2022-12-16 22:00:00
## 2985 2022-12-16 22:19:04      TRUE 2022-12-16 22:00:00
## 2986 2022-12-16 22:18:58      TRUE 2022-12-16 22:00:00
## 2987 2022-12-16 22:18:55      TRUE 2022-12-16 22:00:00
## 2988 2022-12-16 22:18:51      TRUE 2022-12-16 22:00:00
## 2989 2022-12-16 22:18:49      TRUE 2022-12-16 22:00:00
## 2990 2022-12-16 22:18:49      TRUE 2022-12-16 22:00:00
## 2991 2022-12-16 22:18:48      TRUE 2022-12-16 22:00:00
## 2992 2022-12-16 22:18:44      TRUE 2022-12-16 22:00:00
## 2993 2022-12-16 22:18:36      TRUE 2022-12-16 22:00:00
## 2994 2022-12-16 22:18:31      TRUE 2022-12-16 22:00:00
## 2995 2022-12-16 22:18:31      TRUE 2022-12-16 22:00:00
## 2996 2022-12-16 22:18:30      TRUE 2022-12-16 22:00:00
## 2997 2022-12-16 22:18:26      TRUE 2022-12-16 22:00:00
## 2998 2022-12-16 22:18:25      TRUE 2022-12-16 22:00:00
## 2999 2022-12-16 22:18:16      TRUE 2022-12-16 22:00:00
## 3000 2022-12-16 22:18:15      TRUE 2022-12-16 22:00:00
## 3001 2022-12-16 22:18:12      TRUE 2022-12-16 22:00:00
## 3002 2022-12-16 22:18:05      TRUE 2022-12-16 22:00:00
## 3003 2022-12-16 22:18:01      TRUE 2022-12-16 22:00:00
## 3004 2022-12-16 22:17:56      TRUE 2022-12-16 22:00:00
## 3005 2022-12-16 22:17:43      TRUE 2022-12-16 22:00:00
## 3006 2022-12-16 22:17:34      TRUE 2022-12-16 22:00:00
## 3007 2022-12-16 22:17:26      TRUE 2022-12-16 22:00:00
## 3008 2022-12-16 22:17:24      TRUE 2022-12-16 22:00:00
## 3009 2022-12-16 22:17:24      TRUE 2022-12-16 22:00:00
## 3010 2022-12-16 22:17:22      TRUE 2022-12-16 22:00:00
## 3011 2022-12-16 22:17:21      TRUE 2022-12-16 22:00:00
## 3012 2022-12-16 22:17:21      TRUE 2022-12-16 22:00:00
## 3013 2022-12-16 22:17:10      TRUE 2022-12-16 22:00:00
## 3014 2022-12-16 22:17:09      TRUE 2022-12-16 22:00:00
## 3015 2022-12-16 22:17:06      TRUE 2022-12-16 22:00:00
## 3016 2022-12-16 22:17:05      TRUE 2022-12-16 22:00:00
## 3017 2022-12-16 22:17:02      TRUE 2022-12-16 22:00:00
## 3018 2022-12-16 22:17:00      TRUE 2022-12-16 22:00:00
## 3019 2022-12-16 22:16:49      TRUE 2022-12-16 22:00:00
## 3020 2022-12-16 22:16:48      TRUE 2022-12-16 22:00:00
## 3021 2022-12-16 22:16:47      TRUE 2022-12-16 22:00:00
## 3022 2022-12-16 22:16:46      TRUE 2022-12-16 22:00:00
## 3023 2022-12-16 22:16:45      TRUE 2022-12-16 22:00:00
## 3024 2022-12-16 22:16:38      TRUE 2022-12-16 22:00:00
## 3025 2022-12-16 22:16:37      TRUE 2022-12-16 22:00:00
## 3026 2022-12-16 22:16:34      TRUE 2022-12-16 22:00:00
## 3027 2022-12-16 22:16:34      TRUE 2022-12-16 22:00:00
## 3028 2022-12-16 22:16:32      TRUE 2022-12-16 22:00:00
## 3029 2022-12-16 22:16:29      TRUE 2022-12-16 22:00:00
## 3030 2022-12-16 22:16:27      TRUE 2022-12-16 22:00:00
## 3031 2022-12-16 22:16:25      TRUE 2022-12-16 22:00:00
## 3032 2022-12-16 22:16:22      TRUE 2022-12-16 22:00:00
## 3033 2022-12-16 22:16:21      TRUE 2022-12-16 22:00:00
## 3034 2022-12-16 22:16:17      TRUE 2022-12-16 22:00:00
## 3035 2022-12-16 22:16:13      TRUE 2022-12-16 22:00:00
## 3036 2022-12-16 22:16:12      TRUE 2022-12-16 22:00:00
## 3037 2022-12-16 22:16:08      TRUE 2022-12-16 22:00:00
## 3038 2022-12-16 22:16:07      TRUE 2022-12-16 22:00:00
## 3039 2022-12-16 22:16:04      TRUE 2022-12-16 22:00:00
## 3040 2022-12-16 22:16:03      TRUE 2022-12-16 22:00:00
## 3041 2022-12-16 22:15:59      TRUE 2022-12-16 22:00:00
## 3042 2022-12-16 22:15:58      TRUE 2022-12-16 22:00:00
## 3043 2022-12-16 22:15:56      TRUE 2022-12-16 22:00:00
## 3044 2022-12-16 22:15:55      TRUE 2022-12-16 22:00:00
## 3045 2022-12-16 22:15:52      TRUE 2022-12-16 22:00:00
## 3046 2022-12-16 22:15:51      TRUE 2022-12-16 22:00:00
## 3047 2022-12-16 22:15:50      TRUE 2022-12-16 22:00:00
## 3048 2022-12-16 22:15:49      TRUE 2022-12-16 22:00:00
## 3049 2022-12-16 22:15:48      TRUE 2022-12-16 22:00:00
## 3050 2022-12-16 22:15:48      TRUE 2022-12-16 22:00:00
## 3051 2022-12-16 22:15:47      TRUE 2022-12-16 22:00:00
## 3052 2022-12-16 22:15:47      TRUE 2022-12-16 22:00:00
## 3053 2022-12-16 22:15:36      TRUE 2022-12-16 22:00:00
## 3054 2022-12-16 22:15:33      TRUE 2022-12-16 22:00:00
## 3055 2022-12-16 22:15:32      TRUE 2022-12-16 22:00:00
## 3056 2022-12-16 22:15:27      TRUE 2022-12-16 22:00:00
## 3057 2022-12-16 22:15:23      TRUE 2022-12-16 22:00:00
## 3058 2022-12-16 22:15:20      TRUE 2022-12-16 22:00:00
## 3059 2022-12-16 22:15:18      TRUE 2022-12-16 22:00:00
## 3060 2022-12-16 22:15:16      TRUE 2022-12-16 22:00:00
## 3061 2022-12-16 22:15:14      TRUE 2022-12-16 22:00:00
## 3062 2022-12-16 22:15:12      TRUE 2022-12-16 22:00:00
## 3063 2022-12-16 22:15:12      TRUE 2022-12-16 22:00:00
## 3064 2022-12-16 22:15:12      TRUE 2022-12-16 22:00:00
## 3065 2022-12-16 22:15:09      TRUE 2022-12-16 22:00:00
## 3066 2022-12-16 22:15:07      TRUE 2022-12-16 22:00:00
## 3067 2022-12-16 22:15:07      TRUE 2022-12-16 22:00:00
## 3068 2022-12-16 22:15:05      TRUE 2022-12-16 22:00:00
## 3069 2022-12-16 22:14:59      TRUE 2022-12-16 22:00:00
## 3070 2022-12-16 22:14:59      TRUE 2022-12-16 22:00:00
## 3071 2022-12-16 22:14:55      TRUE 2022-12-16 22:00:00
## 3072 2022-12-16 22:14:54      TRUE 2022-12-16 22:00:00
## 3073 2022-12-16 22:14:51      TRUE 2022-12-16 22:00:00
## 3074 2022-12-16 22:14:50      TRUE 2022-12-16 22:00:00
## 3075 2022-12-16 22:14:48      TRUE 2022-12-16 22:00:00
## 3076 2022-12-16 22:14:44      TRUE 2022-12-16 22:00:00
## 3077 2022-12-16 22:14:42      TRUE 2022-12-16 22:00:00
## 3078 2022-12-16 22:14:40      TRUE 2022-12-16 22:00:00
## 3079 2022-12-16 22:14:29      TRUE 2022-12-16 22:00:00
## 3080 2022-12-16 22:14:24      TRUE 2022-12-16 22:00:00
## 3081 2022-12-16 22:14:24      TRUE 2022-12-16 22:00:00
## 3082 2022-12-16 22:14:23      TRUE 2022-12-16 22:00:00
## 3083 2022-12-16 22:14:21      TRUE 2022-12-16 22:00:00
## 3084 2022-12-16 22:14:18      TRUE 2022-12-16 22:00:00
## 3085 2022-12-16 22:14:15      TRUE 2022-12-16 22:00:00
## 3086 2022-12-16 22:14:15      TRUE 2022-12-16 22:00:00
## 3087 2022-12-16 22:14:12      TRUE 2022-12-16 22:00:00
## 3088 2022-12-16 22:14:12      TRUE 2022-12-16 22:00:00
## 3089 2022-12-16 22:14:09      TRUE 2022-12-16 22:00:00
## 3090 2022-12-16 22:14:08      TRUE 2022-12-16 22:00:00
## 3091 2022-12-16 22:14:08      TRUE 2022-12-16 22:00:00
## 3092 2022-12-16 22:14:07      TRUE 2022-12-16 22:00:00
## 3093 2022-12-16 22:14:03      TRUE 2022-12-16 22:00:00
## 3094 2022-12-16 22:14:03      TRUE 2022-12-16 22:00:00
## 3095 2022-12-16 22:13:50      TRUE 2022-12-16 22:00:00
## 3096 2022-12-16 22:13:49      TRUE 2022-12-16 22:00:00
## 3097 2022-12-16 22:13:49      TRUE 2022-12-16 22:00:00
## 3098 2022-12-16 22:13:49      TRUE 2022-12-16 22:00:00
## 3099 2022-12-16 22:13:46      TRUE 2022-12-16 22:00:00
## 3100 2022-12-16 22:13:36      TRUE 2022-12-16 22:00:00
## 3101 2022-12-16 22:13:34      TRUE 2022-12-16 22:00:00
## 3102 2022-12-16 22:13:33      TRUE 2022-12-16 22:00:00
## 3103 2022-12-16 22:13:32      TRUE 2022-12-16 22:00:00
## 3104 2022-12-16 22:13:31      TRUE 2022-12-16 22:00:00
## 3105 2022-12-16 22:13:27      TRUE 2022-12-16 22:00:00
## 3106 2022-12-16 22:13:26      TRUE 2022-12-16 22:00:00
## 3107 2022-12-16 22:13:26      TRUE 2022-12-16 22:00:00
## 3108 2022-12-16 22:13:22      TRUE 2022-12-16 22:00:00
## 3109 2022-12-16 22:13:22      TRUE 2022-12-16 22:00:00
## 3110 2022-12-16 22:13:21      TRUE 2022-12-16 22:00:00
## 3111 2022-12-16 22:13:19      TRUE 2022-12-16 22:00:00
## 3112 2022-12-16 22:13:14      TRUE 2022-12-16 22:00:00
## 3113 2022-12-16 22:13:14      TRUE 2022-12-16 22:00:00
## 3114 2022-12-16 22:13:13      TRUE 2022-12-16 22:00:00
## 3115 2022-12-16 22:13:12      TRUE 2022-12-16 22:00:00
## 3116 2022-12-16 22:13:11      TRUE 2022-12-16 22:00:00
## 3117 2022-12-16 22:13:08      TRUE 2022-12-16 22:00:00
## 3118 2022-12-16 22:13:04      TRUE 2022-12-16 22:00:00
## 3119 2022-12-16 22:13:01      TRUE 2022-12-16 22:00:00
## 3120 2022-12-16 22:12:58      TRUE 2022-12-16 22:00:00
## 3121 2022-12-16 22:12:55      TRUE 2022-12-16 22:00:00
## 3122 2022-12-16 22:12:54      TRUE 2022-12-16 22:00:00
## 3123 2022-12-16 22:12:54      TRUE 2022-12-16 22:00:00
## 3124 2022-12-16 22:12:53      TRUE 2022-12-16 22:00:00
## 3125 2022-12-16 22:12:52      TRUE 2022-12-16 22:00:00
## 3126 2022-12-16 22:12:50      TRUE 2022-12-16 22:00:00
## 3127 2022-12-16 22:12:49      TRUE 2022-12-16 22:00:00
## 3128 2022-12-16 22:12:42      TRUE 2022-12-16 22:00:00
## 3129 2022-12-16 22:12:34      TRUE 2022-12-16 22:00:00
## 3130 2022-12-16 22:12:32      TRUE 2022-12-16 22:00:00
## 3131 2022-12-16 22:12:26      TRUE 2022-12-16 22:00:00
## 3132 2022-12-16 22:12:22      TRUE 2022-12-16 22:00:00
## 3133 2022-12-16 22:12:19      TRUE 2022-12-16 22:00:00
## 3134 2022-12-16 22:12:13      TRUE 2022-12-16 22:00:00
## 3135 2022-12-16 22:12:09      TRUE 2022-12-16 22:00:00
## 3136 2022-12-16 22:12:07      TRUE 2022-12-16 22:00:00
## 3137 2022-12-16 22:12:06      TRUE 2022-12-16 22:00:00
## 3138 2022-12-16 22:12:04      TRUE 2022-12-16 22:00:00
## 3139 2022-12-16 22:12:00      TRUE 2022-12-16 22:00:00
## 3140 2022-12-16 22:11:57      TRUE 2022-12-16 22:00:00
## 3141 2022-12-16 22:11:57      TRUE 2022-12-16 22:00:00
## 3142 2022-12-16 22:11:57      TRUE 2022-12-16 22:00:00
## 3143 2022-12-16 22:11:56      TRUE 2022-12-16 22:00:00
## 3144 2022-12-16 22:11:56      TRUE 2022-12-16 22:00:00
## 3145 2022-12-16 22:11:55      TRUE 2022-12-16 22:00:00
## 3146 2022-12-16 22:11:54      TRUE 2022-12-16 22:00:00
## 3147 2022-12-16 22:11:53      TRUE 2022-12-16 22:00:00
## 3148 2022-12-16 22:11:50      TRUE 2022-12-16 22:00:00
## 3149 2022-12-16 22:11:50      TRUE 2022-12-16 22:00:00
## 3150 2022-12-16 22:11:48      TRUE 2022-12-16 22:00:00
## 3151 2022-12-16 22:11:47      TRUE 2022-12-16 22:00:00
## 3152 2022-12-16 22:11:46      TRUE 2022-12-16 22:00:00
## 3153 2022-12-16 22:11:46      TRUE 2022-12-16 22:00:00
## 3154 2022-12-16 22:11:45      TRUE 2022-12-16 22:00:00
## 3155 2022-12-16 22:11:41      TRUE 2022-12-16 22:00:00
## 3156 2022-12-16 22:11:36      TRUE 2022-12-16 22:00:00
## 3157 2022-12-16 22:11:35      TRUE 2022-12-16 22:00:00
## 3158 2022-12-16 22:11:34      TRUE 2022-12-16 22:00:00
## 3159 2022-12-16 22:11:32      TRUE 2022-12-16 22:00:00
## 3160 2022-12-16 22:11:30      TRUE 2022-12-16 22:00:00
## 3161 2022-12-16 22:11:23      TRUE 2022-12-16 22:00:00
## 3162 2022-12-16 22:11:20      TRUE 2022-12-16 22:00:00
## 3163 2022-12-16 22:11:20      TRUE 2022-12-16 22:00:00
## 3164 2022-12-16 22:11:15      TRUE 2022-12-16 22:00:00
## 3165 2022-12-16 22:11:14      TRUE 2022-12-16 22:00:00
## 3166 2022-12-16 22:11:13      TRUE 2022-12-16 22:00:00
## 3167 2022-12-16 22:11:07      TRUE 2022-12-16 22:00:00
## 3168 2022-12-16 22:11:07      TRUE 2022-12-16 22:00:00
## 3169 2022-12-16 22:11:04      TRUE 2022-12-16 22:00:00
## 3170 2022-12-16 22:11:02      TRUE 2022-12-16 22:00:00
## 3171 2022-12-16 22:11:01      TRUE 2022-12-16 22:00:00
## 3172 2022-12-16 22:11:00      TRUE 2022-12-16 22:00:00
## 3173 2022-12-16 22:11:00      TRUE 2022-12-16 22:00:00
## 3174 2022-12-16 22:10:57      TRUE 2022-12-16 22:00:00
## 3175 2022-12-16 22:10:56      TRUE 2022-12-16 22:00:00
## 3176 2022-12-16 22:10:55      TRUE 2022-12-16 22:00:00
## 3177 2022-12-16 22:10:54      TRUE 2022-12-16 22:00:00
## 3178 2022-12-16 22:10:50      TRUE 2022-12-16 22:00:00
## 3179 2022-12-16 22:10:47      TRUE 2022-12-16 22:00:00
## 3180 2022-12-16 22:10:44      TRUE 2022-12-16 22:00:00
## 3181 2022-12-16 22:10:43      TRUE 2022-12-16 22:00:00
## 3182 2022-12-16 22:10:40      TRUE 2022-12-16 22:00:00
## 3183 2022-12-16 22:10:37      TRUE 2022-12-16 22:00:00
## 3184 2022-12-16 22:10:36      TRUE 2022-12-16 22:00:00
## 3185 2022-12-16 22:10:35      TRUE 2022-12-16 22:00:00
## 3186 2022-12-16 22:10:33      TRUE 2022-12-16 22:00:00
## 3187 2022-12-16 22:10:32      TRUE 2022-12-16 22:00:00
## 3188 2022-12-16 22:10:29      TRUE 2022-12-16 22:00:00
## 3189 2022-12-16 22:10:25      TRUE 2022-12-16 22:00:00
## 3190 2022-12-16 22:10:22      TRUE 2022-12-16 22:00:00
## 3191 2022-12-16 22:10:20      TRUE 2022-12-16 22:00:00
## 3192 2022-12-16 22:10:18      TRUE 2022-12-16 22:00:00
## 3193 2022-12-16 22:10:17      TRUE 2022-12-16 22:00:00
## 3194 2022-12-16 22:10:15      TRUE 2022-12-16 22:00:00
## 3195 2022-12-16 22:10:13      TRUE 2022-12-16 22:00:00
## 3196 2022-12-16 22:10:10      TRUE 2022-12-16 22:00:00
## 3197 2022-12-16 22:10:03      TRUE 2022-12-16 22:00:00
## 3198 2022-12-16 22:10:02      TRUE 2022-12-16 22:00:00
## 3199 2022-12-16 22:09:58      TRUE 2022-12-16 22:00:00
## 3200 2022-12-16 22:09:58      TRUE 2022-12-16 22:00:00
## 3201 2022-12-16 22:09:51      TRUE 2022-12-16 22:00:00
## 3202 2022-12-16 22:09:47      TRUE 2022-12-16 22:00:00
## 3203 2022-12-16 22:09:41      TRUE 2022-12-16 22:00:00
## 3204 2022-12-16 22:09:40      TRUE 2022-12-16 22:00:00
## 3205 2022-12-16 22:09:40      TRUE 2022-12-16 22:00:00
## 3206 2022-12-16 22:09:37      TRUE 2022-12-16 22:00:00
## 3207 2022-12-16 22:09:35      TRUE 2022-12-16 22:00:00
## 3208 2022-12-16 22:09:35      TRUE 2022-12-16 22:00:00
## 3209 2022-12-16 22:09:35      TRUE 2022-12-16 22:00:00
## 3210 2022-12-16 22:09:33      TRUE 2022-12-16 22:00:00
## 3211 2022-12-16 22:09:31      TRUE 2022-12-16 22:00:00
## 3212 2022-12-16 22:09:28      TRUE 2022-12-16 22:00:00
## 3213 2022-12-16 22:09:27      TRUE 2022-12-16 22:00:00
## 3214 2022-12-16 22:09:24      TRUE 2022-12-16 22:00:00
## 3215 2022-12-16 22:09:24      TRUE 2022-12-16 22:00:00
## 3216 2022-12-16 22:09:21      TRUE 2022-12-16 22:00:00
## 3217 2022-12-16 22:09:21      TRUE 2022-12-16 22:00:00
## 3218 2022-12-16 22:09:17      TRUE 2022-12-16 22:00:00
## 3219 2022-12-16 22:09:12      TRUE 2022-12-16 22:00:00
## 3220 2022-12-16 22:09:11      TRUE 2022-12-16 22:00:00
## 3221 2022-12-16 22:09:10      TRUE 2022-12-16 22:00:00
## 3222 2022-12-16 22:09:10      TRUE 2022-12-16 22:00:00
## 3223 2022-12-16 22:09:09      TRUE 2022-12-16 22:00:00
## 3224 2022-12-16 22:09:07      TRUE 2022-12-16 22:00:00
## 3225 2022-12-16 22:09:04      TRUE 2022-12-16 22:00:00
## 3226 2022-12-16 22:09:02      TRUE 2022-12-16 22:00:00
## 3227 2022-12-16 22:08:59      TRUE 2022-12-16 22:00:00
## 3228 2022-12-16 22:08:59      TRUE 2022-12-16 22:00:00
## 3229 2022-12-16 22:08:40      TRUE 2022-12-16 22:00:00
## 3230 2022-12-16 22:08:39      TRUE 2022-12-16 22:00:00
## 3231 2022-12-16 22:08:33      TRUE 2022-12-16 22:00:00
## 3232 2022-12-16 22:08:30      TRUE 2022-12-16 22:00:00
## 3233 2022-12-16 22:08:30      TRUE 2022-12-16 22:00:00
## 3234 2022-12-16 22:08:30      TRUE 2022-12-16 22:00:00
## 3235 2022-12-16 22:08:28      TRUE 2022-12-16 22:00:00
## 3236 2022-12-16 22:08:28      TRUE 2022-12-16 22:00:00
## 3237 2022-12-16 22:08:27      TRUE 2022-12-16 22:00:00
## 3238 2022-12-16 22:08:26      TRUE 2022-12-16 22:00:00
## 3239 2022-12-16 22:08:22      TRUE 2022-12-16 22:00:00
## 3240 2022-12-16 22:08:20      TRUE 2022-12-16 22:00:00
## 3241 2022-12-16 22:08:12      TRUE 2022-12-16 22:00:00
## 3242 2022-12-16 22:08:12      TRUE 2022-12-16 22:00:00
## 3243 2022-12-16 22:08:12      TRUE 2022-12-16 22:00:00
## 3244 2022-12-16 22:08:11      TRUE 2022-12-16 22:00:00
## 3245 2022-12-16 22:07:53      TRUE 2022-12-16 22:00:00
## 3246 2022-12-16 22:07:51      TRUE 2022-12-16 22:00:00
## 3247 2022-12-16 22:07:50      TRUE 2022-12-16 22:00:00
## 3248 2022-12-16 22:07:49      TRUE 2022-12-16 22:00:00
## 3249 2022-12-16 22:07:49      TRUE 2022-12-16 22:00:00
## 3250 2022-12-16 22:07:47      TRUE 2022-12-16 22:00:00
## 3251 2022-12-16 22:07:40      TRUE 2022-12-16 22:00:00
## 3252 2022-12-16 22:07:39      TRUE 2022-12-16 22:00:00
## 3253 2022-12-16 22:07:35      TRUE 2022-12-16 22:00:00
## 3254 2022-12-16 22:07:32      TRUE 2022-12-16 22:00:00
## 3255 2022-12-16 22:07:30      TRUE 2022-12-16 22:00:00
## 3256 2022-12-16 22:07:29      TRUE 2022-12-16 22:00:00
## 3257 2022-12-16 22:07:29      TRUE 2022-12-16 22:00:00
## 3258 2022-12-16 22:07:24      TRUE 2022-12-16 22:00:00
## 3259 2022-12-16 22:07:22      TRUE 2022-12-16 22:00:00
## 3260 2022-12-16 22:07:19      TRUE 2022-12-16 22:00:00
## 3261 2022-12-16 22:07:17      TRUE 2022-12-16 22:00:00
## 3262 2022-12-16 22:07:16      TRUE 2022-12-16 22:00:00
## 3263 2022-12-16 22:07:13      TRUE 2022-12-16 22:00:00
## 3264 2022-12-16 22:07:11      TRUE 2022-12-16 22:00:00
## 3265 2022-12-16 22:07:03      TRUE 2022-12-16 22:00:00
## 3266 2022-12-16 22:06:57      TRUE 2022-12-16 22:00:00
## 3267 2022-12-16 22:06:57      TRUE 2022-12-16 22:00:00
## 3268 2022-12-16 22:06:55      TRUE 2022-12-16 22:00:00
## 3269 2022-12-16 22:06:50      TRUE 2022-12-16 22:00:00
## 3270 2022-12-16 22:06:45      TRUE 2022-12-16 22:00:00
## 3271 2022-12-16 22:06:41      TRUE 2022-12-16 22:00:00
## 3272 2022-12-16 22:06:39      TRUE 2022-12-16 22:00:00
## 3273 2022-12-16 22:06:32      TRUE 2022-12-16 22:00:00
## 3274 2022-12-16 22:06:32      TRUE 2022-12-16 22:00:00
## 3275 2022-12-16 22:06:28      TRUE 2022-12-16 22:00:00
## 3276 2022-12-16 22:06:20      TRUE 2022-12-16 22:00:00
## 3277 2022-12-16 22:06:09      TRUE 2022-12-16 22:00:00
## 3278 2022-12-16 22:06:05      TRUE 2022-12-16 22:00:00
## 3279 2022-12-16 22:06:04      TRUE 2022-12-16 22:00:00
## 3280 2022-12-16 22:06:03      TRUE 2022-12-16 22:00:00
## 3281 2022-12-16 22:05:58      TRUE 2022-12-16 22:00:00
## 3282 2022-12-16 22:05:58      TRUE 2022-12-16 22:00:00
## 3283 2022-12-16 22:05:51      TRUE 2022-12-16 22:00:00
## 3284 2022-12-16 22:05:48      TRUE 2022-12-16 22:00:00
## 3285 2022-12-16 22:05:47      TRUE 2022-12-16 22:00:00
## 3286 2022-12-16 22:05:44      TRUE 2022-12-16 22:00:00
## 3287 2022-12-16 22:05:43      TRUE 2022-12-16 22:00:00
## 3288 2022-12-16 22:05:38      TRUE 2022-12-16 22:00:00
## 3289 2022-12-16 22:05:38      TRUE 2022-12-16 22:00:00
## 3290 2022-12-16 22:05:37      TRUE 2022-12-16 22:00:00
## 3291 2022-12-16 22:05:37      TRUE 2022-12-16 22:00:00
## 3292 2022-12-16 22:05:34      TRUE 2022-12-16 22:00:00
## 3293 2022-12-16 22:05:23      TRUE 2022-12-16 22:00:00
## 3294 2022-12-16 22:05:19      TRUE 2022-12-16 22:00:00
## 3295 2022-12-16 22:05:18      TRUE 2022-12-16 22:00:00
## 3296 2022-12-16 22:05:17      TRUE 2022-12-16 22:00:00
## 3297 2022-12-16 22:05:15      TRUE 2022-12-16 22:00:00
## 3298 2022-12-16 22:05:14      TRUE 2022-12-16 22:00:00
## 3299 2022-12-16 22:05:10      TRUE 2022-12-16 22:00:00
## 3300 2022-12-16 22:05:10      TRUE 2022-12-16 22:00:00
## 3301 2022-12-16 22:05:06      TRUE 2022-12-16 22:00:00
## 3302 2022-12-16 22:05:04      TRUE 2022-12-16 22:00:00
## 3303 2022-12-16 22:05:04      TRUE 2022-12-16 22:00:00
## 3304 2022-12-16 22:05:03      TRUE 2022-12-16 22:00:00
## 3305 2022-12-16 22:05:02      TRUE 2022-12-16 22:00:00
## 3306 2022-12-16 22:04:58      TRUE 2022-12-16 22:00:00
## 3307 2022-12-16 22:04:51      TRUE 2022-12-16 22:00:00
## 3308 2022-12-16 22:04:48      TRUE 2022-12-16 22:00:00
## 3309 2022-12-16 22:04:43      TRUE 2022-12-16 22:00:00
## 3310 2022-12-16 22:04:42      TRUE 2022-12-16 22:00:00
## 3311 2022-12-16 22:04:42      TRUE 2022-12-16 22:00:00
## 3312 2022-12-16 22:04:40      TRUE 2022-12-16 22:00:00
## 3313 2022-12-16 22:04:40      TRUE 2022-12-16 22:00:00
## 3314 2022-12-16 22:04:39      TRUE 2022-12-16 22:00:00
## 3315 2022-12-16 22:04:37      TRUE 2022-12-16 22:00:00
## 3316 2022-12-16 22:04:36      TRUE 2022-12-16 22:00:00
## 3317 2022-12-16 22:04:35      TRUE 2022-12-16 22:00:00
## 3318 2022-12-16 22:04:35      TRUE 2022-12-16 22:00:00
## 3319 2022-12-16 22:04:34      TRUE 2022-12-16 22:00:00
## 3320 2022-12-16 22:04:32      TRUE 2022-12-16 22:00:00
## 3321 2022-12-16 22:04:31      TRUE 2022-12-16 22:00:00
## 3322 2022-12-16 22:04:30      TRUE 2022-12-16 22:00:00
## 3323 2022-12-16 22:04:30      TRUE 2022-12-16 22:00:00
## 3324 2022-12-16 22:04:28      TRUE 2022-12-16 22:00:00
## 3325 2022-12-16 22:04:27      TRUE 2022-12-16 22:00:00
## 3326 2022-12-16 22:04:24      TRUE 2022-12-16 22:00:00
## 3327 2022-12-16 22:04:19      TRUE 2022-12-16 22:00:00
## 3328 2022-12-16 22:04:17      TRUE 2022-12-16 22:00:00
## 3329 2022-12-16 22:04:16      TRUE 2022-12-16 22:00:00
## 3330 2022-12-16 22:04:03      TRUE 2022-12-16 22:00:00
## 3331 2022-12-16 22:03:53      TRUE 2022-12-16 22:00:00
## 3332 2022-12-16 22:03:52      TRUE 2022-12-16 22:00:00
## 3333 2022-12-16 22:03:47      TRUE 2022-12-16 22:00:00
## 3334 2022-12-16 22:03:46      TRUE 2022-12-16 22:00:00
## 3335 2022-12-16 22:03:46      TRUE 2022-12-16 22:00:00
## 3336 2022-12-16 22:03:41      TRUE 2022-12-16 22:00:00
## 3337 2022-12-16 22:03:38      TRUE 2022-12-16 22:00:00
## 3338 2022-12-16 22:03:37      TRUE 2022-12-16 22:00:00
## 3339 2022-12-16 22:03:36      TRUE 2022-12-16 22:00:00
## 3340 2022-12-16 22:03:35      TRUE 2022-12-16 22:00:00
## 3341 2022-12-16 22:03:33      TRUE 2022-12-16 22:00:00
## 3342 2022-12-16 22:03:29      TRUE 2022-12-16 22:00:00
## 3343 2022-12-16 22:03:28      TRUE 2022-12-16 22:00:00
## 3344 2022-12-16 22:03:18      TRUE 2022-12-16 22:00:00
## 3345 2022-12-16 22:03:16      TRUE 2022-12-16 22:00:00
## 3346 2022-12-16 22:03:11      TRUE 2022-12-16 22:00:00
## 3347 2022-12-16 22:03:10      TRUE 2022-12-16 22:00:00
## 3348 2022-12-16 22:03:02      TRUE 2022-12-16 22:00:00
## 3349 2022-12-16 22:02:59      TRUE 2022-12-16 22:00:00
## 3350 2022-12-16 22:02:56      TRUE 2022-12-16 22:00:00
## 3351 2022-12-16 22:02:50      TRUE 2022-12-16 22:00:00
## 3352 2022-12-16 22:02:37      TRUE 2022-12-16 22:00:00
## 3353 2022-12-16 22:02:37      TRUE 2022-12-16 22:00:00
## 3354 2022-12-16 22:02:34      TRUE 2022-12-16 22:00:00
## 3355 2022-12-16 22:02:32      TRUE 2022-12-16 22:00:00
## 3356 2022-12-16 22:02:32      TRUE 2022-12-16 22:00:00
## 3357 2022-12-16 22:02:30      TRUE 2022-12-16 22:00:00
## 3358 2022-12-16 22:02:30      TRUE 2022-12-16 22:00:00
## 3359 2022-12-16 22:02:29      TRUE 2022-12-16 22:00:00
## 3360 2022-12-16 22:02:26      TRUE 2022-12-16 22:00:00
## 3361 2022-12-16 22:02:25      TRUE 2022-12-16 22:00:00
## 3362 2022-12-16 22:02:23      TRUE 2022-12-16 22:00:00
## 3363 2022-12-16 22:02:23      TRUE 2022-12-16 22:00:00
## 3364 2022-12-16 22:02:23      TRUE 2022-12-16 22:00:00
## 3365 2022-12-16 22:02:22      TRUE 2022-12-16 22:00:00
## 3366 2022-12-16 22:02:20      TRUE 2022-12-16 22:00:00
## 3367 2022-12-16 22:02:18      TRUE 2022-12-16 22:00:00
## 3368 2022-12-16 22:02:18      TRUE 2022-12-16 22:00:00
## 3369 2022-12-16 22:02:15      TRUE 2022-12-16 22:00:00
## 3370 2022-12-16 22:02:13      TRUE 2022-12-16 22:00:00
## 3371 2022-12-16 22:02:12      TRUE 2022-12-16 22:00:00
## 3372 2022-12-16 22:02:12      TRUE 2022-12-16 22:00:00
## 3373 2022-12-16 22:02:10      TRUE 2022-12-16 22:00:00
## 3374 2022-12-16 22:02:09      TRUE 2022-12-16 22:00:00
## 3375 2022-12-16 22:02:07      TRUE 2022-12-16 22:00:00
## 3376 2022-12-16 22:02:06      TRUE 2022-12-16 22:00:00
## 3377 2022-12-16 22:02:04      TRUE 2022-12-16 22:00:00
## 3378 2022-12-16 22:02:03      TRUE 2022-12-16 22:00:00
## 3379 2022-12-16 22:02:00      TRUE 2022-12-16 22:00:00
## 3380 2022-12-16 22:01:57      TRUE 2022-12-16 22:00:00
## 3381 2022-12-16 22:01:57      TRUE 2022-12-16 22:00:00
## 3382 2022-12-16 22:01:57      TRUE 2022-12-16 22:00:00
## 3383 2022-12-16 22:01:52      TRUE 2022-12-16 22:00:00
## 3384 2022-12-16 22:01:50      TRUE 2022-12-16 22:00:00
## 3385 2022-12-16 22:01:49      TRUE 2022-12-16 22:00:00
## 3386 2022-12-16 22:01:48      TRUE 2022-12-16 22:00:00
## 3387 2022-12-16 22:01:47      TRUE 2022-12-16 22:00:00
## 3388 2022-12-16 22:01:44      TRUE 2022-12-16 22:00:00
## 3389 2022-12-16 22:01:40      TRUE 2022-12-16 22:00:00
## 3390 2022-12-16 22:01:40      TRUE 2022-12-16 22:00:00
## 3391 2022-12-16 22:01:37      TRUE 2022-12-16 22:00:00
## 3392 2022-12-16 22:01:33      TRUE 2022-12-16 22:00:00
## 3393 2022-12-16 22:01:31      TRUE 2022-12-16 22:00:00
## 3394 2022-12-16 22:01:28      TRUE 2022-12-16 22:00:00
## 3395 2022-12-16 22:01:23      TRUE 2022-12-16 22:00:00
## 3396 2022-12-16 22:01:21      TRUE 2022-12-16 22:00:00
## 3397 2022-12-16 22:01:19      TRUE 2022-12-16 22:00:00
## 3398 2022-12-16 22:01:17      TRUE 2022-12-16 22:00:00
## 3399 2022-12-16 22:01:16      TRUE 2022-12-16 22:00:00
## 3400 2022-12-16 22:01:10      TRUE 2022-12-16 22:00:00
## 3401 2022-12-16 22:01:09      TRUE 2022-12-16 22:00:00
## 3402 2022-12-16 22:01:04      TRUE 2022-12-16 22:00:00
## 3403 2022-12-16 22:01:04      TRUE 2022-12-16 22:00:00
## 3404 2022-12-16 22:01:03      TRUE 2022-12-16 22:00:00
## 3405 2022-12-16 22:01:03      TRUE 2022-12-16 22:00:00
## 3406 2022-12-16 22:01:00      TRUE 2022-12-16 22:00:00
## 3407 2022-12-16 22:00:53      TRUE 2022-12-16 22:00:00
## 3408 2022-12-16 22:00:47      TRUE 2022-12-16 22:00:00
## 3409 2022-12-16 22:00:44      TRUE 2022-12-16 22:00:00
## 3410 2022-12-16 22:00:42      TRUE 2022-12-16 22:00:00
## 3411 2022-12-16 22:00:42      TRUE 2022-12-16 22:00:00
## 3412 2022-12-16 22:00:41      TRUE 2022-12-16 22:00:00
## 3413 2022-12-16 22:00:40      TRUE 2022-12-16 22:00:00
## 3414 2022-12-16 22:00:35      TRUE 2022-12-16 22:00:00
## 3415 2022-12-16 22:00:32      TRUE 2022-12-16 22:00:00
## 3416 2022-12-16 22:00:25      TRUE 2022-12-16 22:00:00
## 3417 2022-12-16 22:00:23      TRUE 2022-12-16 22:00:00
## 3418 2022-12-16 22:00:23      TRUE 2022-12-16 22:00:00
## 3419 2022-12-16 22:00:21      TRUE 2022-12-16 22:00:00
## 3420 2022-12-16 22:00:20      TRUE 2022-12-16 22:00:00
## 3421 2022-12-16 22:00:18      TRUE 2022-12-16 22:00:00
## 3422 2022-12-16 22:00:10      TRUE 2022-12-16 22:00:00
## 3423 2022-12-16 22:00:09      TRUE 2022-12-16 22:00:00
## 3424 2022-12-16 22:00:09      TRUE 2022-12-16 22:00:00
## 3425 2022-12-16 22:00:08      TRUE 2022-12-16 22:00:00
## 3426 2022-12-16 22:00:04      TRUE 2022-12-16 22:00:00
## 3427 2022-12-16 22:00:04      TRUE 2022-12-16 22:00:00
## 3428 2022-12-16 21:59:56      TRUE 2022-12-16 22:00:00
## 3429 2022-12-16 21:59:56      TRUE 2022-12-16 22:00:00
## 3430 2022-12-16 21:59:49      TRUE 2022-12-16 22:00:00
## 3431 2022-12-16 21:59:45      TRUE 2022-12-16 22:00:00
## 3432 2022-12-16 21:59:42      TRUE 2022-12-16 22:00:00
## 3433 2022-12-16 21:59:41      TRUE 2022-12-16 22:00:00
## 3434 2022-12-16 21:59:38      TRUE 2022-12-16 22:00:00
## 3435 2022-12-16 21:59:37      TRUE 2022-12-16 22:00:00
## 3436 2022-12-16 21:59:28      TRUE 2022-12-16 22:00:00
## 3437 2022-12-16 21:59:25      TRUE 2022-12-16 22:00:00
## 3438 2022-12-16 21:59:25      TRUE 2022-12-16 22:00:00
## 3439 2022-12-16 21:59:19      TRUE 2022-12-16 22:00:00
## 3440 2022-12-16 21:59:12      TRUE 2022-12-16 22:00:00
## 3441 2022-12-16 21:59:12      TRUE 2022-12-16 22:00:00
## 3442 2022-12-16 21:59:00      TRUE 2022-12-16 22:00:00
## 3443 2022-12-16 21:58:55      TRUE 2022-12-16 22:00:00
## 3444 2022-12-16 21:58:54      TRUE 2022-12-16 22:00:00
## 3445 2022-12-16 21:58:51      TRUE 2022-12-16 22:00:00
## 3446 2022-12-16 21:58:48      TRUE 2022-12-16 22:00:00
## 3447 2022-12-16 21:58:45      TRUE 2022-12-16 22:00:00
## 3448 2022-12-16 21:58:43      TRUE 2022-12-16 22:00:00
## 3449 2022-12-16 21:58:42      TRUE 2022-12-16 22:00:00
## 3450 2022-12-16 21:58:41      TRUE 2022-12-16 22:00:00
## 3451 2022-12-16 21:58:40      TRUE 2022-12-16 22:00:00
## 3452 2022-12-16 21:58:35      TRUE 2022-12-16 22:00:00
## 3453 2022-12-16 21:58:35      TRUE 2022-12-16 22:00:00
## 3454 2022-12-16 21:58:32      TRUE 2022-12-16 22:00:00
## 3455 2022-12-16 21:58:32      TRUE 2022-12-16 22:00:00
## 3456 2022-12-16 21:58:32      TRUE 2022-12-16 22:00:00
## 3457 2022-12-16 21:58:27      TRUE 2022-12-16 22:00:00
## 3458 2022-12-16 21:58:23      TRUE 2022-12-16 22:00:00
## 3459 2022-12-16 21:58:22      TRUE 2022-12-16 22:00:00
## 3460 2022-12-16 21:58:21      TRUE 2022-12-16 22:00:00
## 3461 2022-12-16 21:58:18      TRUE 2022-12-16 22:00:00
## 3462 2022-12-16 21:58:15      TRUE 2022-12-16 22:00:00
## 3463 2022-12-16 21:58:15      TRUE 2022-12-16 22:00:00
## 3464 2022-12-16 21:58:14      TRUE 2022-12-16 22:00:00
## 3465 2022-12-16 21:58:14      TRUE 2022-12-16 22:00:00
## 3466 2022-12-16 21:58:12      TRUE 2022-12-16 22:00:00
## 3467 2022-12-16 21:58:11      TRUE 2022-12-16 22:00:00
## 3468 2022-12-16 21:58:10      TRUE 2022-12-16 22:00:00
## 3469 2022-12-16 21:58:06      TRUE 2022-12-16 22:00:00
## 3470 2022-12-16 21:58:04      TRUE 2022-12-16 22:00:00
## 3471 2022-12-16 21:57:55      TRUE 2022-12-16 22:00:00
## 3472 2022-12-16 21:57:49      TRUE 2022-12-16 22:00:00
## 3473 2022-12-16 21:57:48      TRUE 2022-12-16 22:00:00
## 3474 2022-12-16 21:57:47      TRUE 2022-12-16 22:00:00
## 3475 2022-12-16 21:57:26      TRUE 2022-12-16 22:00:00
## 3476 2022-12-16 21:57:25      TRUE 2022-12-16 22:00:00
## 3477 2022-12-16 21:57:23      TRUE 2022-12-16 22:00:00
## 3478 2022-12-16 21:57:21      TRUE 2022-12-16 22:00:00
## 3479 2022-12-16 21:57:21      TRUE 2022-12-16 22:00:00
## 3480 2022-12-16 21:57:16      TRUE 2022-12-16 22:00:00
## 3481 2022-12-16 21:57:16      TRUE 2022-12-16 22:00:00
## 3482 2022-12-16 21:57:12      TRUE 2022-12-16 22:00:00
## 3483 2022-12-16 21:57:11      TRUE 2022-12-16 22:00:00
## 3484 2022-12-16 21:57:10      TRUE 2022-12-16 22:00:00
## 3485 2022-12-16 21:57:05      TRUE 2022-12-16 22:00:00
## 3486 2022-12-16 21:57:04      TRUE 2022-12-16 22:00:00
## 3487 2022-12-16 21:57:04      TRUE 2022-12-16 22:00:00
## 3488 2022-12-16 21:56:56      TRUE 2022-12-16 22:00:00
## 3489 2022-12-16 21:56:52      TRUE 2022-12-16 22:00:00
## 3490 2022-12-16 21:56:49      TRUE 2022-12-16 22:00:00
## 3491 2022-12-16 21:56:48      TRUE 2022-12-16 22:00:00
## 3492 2022-12-16 21:56:45      TRUE 2022-12-16 22:00:00
## 3493 2022-12-16 21:56:44      TRUE 2022-12-16 22:00:00
## 3494 2022-12-16 21:56:40      TRUE 2022-12-16 22:00:00
## 3495 2022-12-16 21:56:40      TRUE 2022-12-16 22:00:00
## 3496 2022-12-16 21:56:40      TRUE 2022-12-16 22:00:00
## 3497 2022-12-16 21:56:35      TRUE 2022-12-16 22:00:00
## 3498 2022-12-16 21:56:31      TRUE 2022-12-16 22:00:00
## 3499 2022-12-16 21:56:29      TRUE 2022-12-16 22:00:00
## 3500 2022-12-16 21:56:28      TRUE 2022-12-16 22:00:00
## 3501 2022-12-16 21:56:26      TRUE 2022-12-16 22:00:00
## 3502 2022-12-16 21:56:19      TRUE 2022-12-16 22:00:00
## 3503 2022-12-16 21:56:17      TRUE 2022-12-16 22:00:00
## 3504 2022-12-16 21:56:13      TRUE 2022-12-16 22:00:00
## 3505 2022-12-16 21:56:10      TRUE 2022-12-16 22:00:00
## 3506 2022-12-16 21:56:09      TRUE 2022-12-16 22:00:00
## 3507 2022-12-16 21:56:07      TRUE 2022-12-16 22:00:00
## 3508 2022-12-16 21:56:01      TRUE 2022-12-16 22:00:00
## 3509 2022-12-16 21:55:57      TRUE 2022-12-16 22:00:00
## 3510 2022-12-16 21:55:55      TRUE 2022-12-16 22:00:00
## 3511 2022-12-16 21:55:53      TRUE 2022-12-16 22:00:00
## 3512 2022-12-16 21:55:47      TRUE 2022-12-16 22:00:00
## 3513 2022-12-16 21:55:38      TRUE 2022-12-16 22:00:00
## 3514 2022-12-16 21:55:33      TRUE 2022-12-16 22:00:00
## 3515 2022-12-16 21:55:24      TRUE 2022-12-16 22:00:00
## 3516 2022-12-16 21:55:22      TRUE 2022-12-16 22:00:00
## 3517 2022-12-16 21:55:16      TRUE 2022-12-16 22:00:00
## 3518 2022-12-16 21:55:09      TRUE 2022-12-16 22:00:00
## 3519 2022-12-16 21:55:08      TRUE 2022-12-16 22:00:00
## 3520 2022-12-16 21:55:08      TRUE 2022-12-16 22:00:00
## 3521 2022-12-16 21:55:06      TRUE 2022-12-16 22:00:00
## 3522 2022-12-16 21:55:02      TRUE 2022-12-16 22:00:00
## 3523 2022-12-16 21:55:00      TRUE 2022-12-16 22:00:00
## 3524 2022-12-16 21:54:57      TRUE 2022-12-16 22:00:00
## 3525 2022-12-16 21:54:57      TRUE 2022-12-16 22:00:00
## 3526 2022-12-16 21:54:57      TRUE 2022-12-16 22:00:00
## 3527 2022-12-16 21:54:46      TRUE 2022-12-16 22:00:00
## 3528 2022-12-16 21:54:44      TRUE 2022-12-16 22:00:00
## 3529 2022-12-16 21:54:40      TRUE 2022-12-16 22:00:00
## 3530 2022-12-16 21:54:38      TRUE 2022-12-16 22:00:00
## 3531 2022-12-16 21:54:34      TRUE 2022-12-16 22:00:00
## 3532 2022-12-16 21:54:29      TRUE 2022-12-16 22:00:00
## 3533 2022-12-16 21:54:29      TRUE 2022-12-16 22:00:00
## 3534 2022-12-16 21:54:28      TRUE 2022-12-16 22:00:00
## 3535 2022-12-16 21:54:27      TRUE 2022-12-16 22:00:00
## 3536 2022-12-16 21:54:22      TRUE 2022-12-16 22:00:00
## 3537 2022-12-16 21:54:22      TRUE 2022-12-16 22:00:00
## 3538 2022-12-16 21:54:18      TRUE 2022-12-16 22:00:00
## 3539 2022-12-16 21:54:17      TRUE 2022-12-16 22:00:00
## 3540 2022-12-16 21:54:12      TRUE 2022-12-16 22:00:00
## 3541 2022-12-16 21:54:10      TRUE 2022-12-16 22:00:00
## 3542 2022-12-16 21:54:10      TRUE 2022-12-16 22:00:00
## 3543 2022-12-16 21:54:03      TRUE 2022-12-16 22:00:00
## 3544 2022-12-16 21:54:03      TRUE 2022-12-16 22:00:00
## 3545 2022-12-16 21:54:01      TRUE 2022-12-16 22:00:00
## 3546 2022-12-16 21:54:01      TRUE 2022-12-16 22:00:00
## 3547 2022-12-16 21:53:56      TRUE 2022-12-16 22:00:00
## 3548 2022-12-16 21:53:54      TRUE 2022-12-16 22:00:00
## 3549 2022-12-16 21:53:54      TRUE 2022-12-16 22:00:00
## 3550 2022-12-16 21:53:52      TRUE 2022-12-16 22:00:00
## 3551 2022-12-16 21:53:52      TRUE 2022-12-16 22:00:00
## 3552 2022-12-16 21:53:51      TRUE 2022-12-16 22:00:00
## 3553 2022-12-16 21:53:51      TRUE 2022-12-16 22:00:00
## 3554 2022-12-16 21:53:50      TRUE 2022-12-16 22:00:00
## 3555 2022-12-16 21:53:43      TRUE 2022-12-16 22:00:00
## 3556 2022-12-16 21:53:42      TRUE 2022-12-16 22:00:00
## 3557 2022-12-16 21:53:38      TRUE 2022-12-16 22:00:00
## 3558 2022-12-16 21:53:36      TRUE 2022-12-16 22:00:00
## 3559 2022-12-16 21:53:34      TRUE 2022-12-16 22:00:00
## 3560 2022-12-16 21:53:32      TRUE 2022-12-16 22:00:00
## 3561 2022-12-16 21:53:30      TRUE 2022-12-16 22:00:00
## 3562 2022-12-16 21:53:29      TRUE 2022-12-16 22:00:00
## 3563 2022-12-16 21:53:27      TRUE 2022-12-16 22:00:00
## 3564 2022-12-16 21:53:27      TRUE 2022-12-16 22:00:00
## 3565 2022-12-16 21:53:26      TRUE 2022-12-16 22:00:00
## 3566 2022-12-16 21:53:25      TRUE 2022-12-16 22:00:00
## 3567 2022-12-16 21:53:24      TRUE 2022-12-16 22:00:00
## 3568 2022-12-16 21:53:24      TRUE 2022-12-16 22:00:00
## 3569 2022-12-16 21:53:21      TRUE 2022-12-16 22:00:00
## 3570 2022-12-16 21:53:10      TRUE 2022-12-16 22:00:00
## 3571 2022-12-16 21:53:09      TRUE 2022-12-16 22:00:00
## 3572 2022-12-16 21:53:09      TRUE 2022-12-16 22:00:00
## 3573 2022-12-16 21:53:08      TRUE 2022-12-16 22:00:00
## 3574 2022-12-16 21:53:07      TRUE 2022-12-16 22:00:00
## 3575 2022-12-16 21:53:06      TRUE 2022-12-16 22:00:00
## 3576 2022-12-16 21:53:05      TRUE 2022-12-16 22:00:00
## 3577 2022-12-16 21:53:04      TRUE 2022-12-16 22:00:00
## 3578 2022-12-16 21:52:58      TRUE 2022-12-16 22:00:00
## 3579 2022-12-16 21:52:57      TRUE 2022-12-16 22:00:00
## 3580 2022-12-16 21:52:54      TRUE 2022-12-16 22:00:00
## 3581 2022-12-16 21:52:49      TRUE 2022-12-16 22:00:00
## 3582 2022-12-16 21:52:45      TRUE 2022-12-16 22:00:00
## 3583 2022-12-16 21:52:42      TRUE 2022-12-16 22:00:00
## 3584 2022-12-16 21:52:41      TRUE 2022-12-16 22:00:00
## 3585 2022-12-16 21:52:30      TRUE 2022-12-16 22:00:00
## 3586 2022-12-16 21:52:29      TRUE 2022-12-16 22:00:00
## 3587 2022-12-16 21:52:28      TRUE 2022-12-16 22:00:00
## 3588 2022-12-16 21:52:22      TRUE 2022-12-16 22:00:00
## 3589 2022-12-16 21:52:20      TRUE 2022-12-16 22:00:00
## 3590 2022-12-16 21:52:19      TRUE 2022-12-16 22:00:00
## 3591 2022-12-16 21:52:08      TRUE 2022-12-16 22:00:00
## 3592 2022-12-16 21:52:05      TRUE 2022-12-16 22:00:00
## 3593 2022-12-16 21:52:04      TRUE 2022-12-16 22:00:00
## 3594 2022-12-16 21:51:59      TRUE 2022-12-16 22:00:00
## 3595 2022-12-16 21:51:54      TRUE 2022-12-16 22:00:00
## 3596 2022-12-16 21:51:53      TRUE 2022-12-16 22:00:00
## 3597 2022-12-16 21:51:41      TRUE 2022-12-16 22:00:00
## 3598 2022-12-16 21:51:37      TRUE 2022-12-16 22:00:00
## 3599 2022-12-16 21:51:27      TRUE 2022-12-16 22:00:00
## 3600 2022-12-16 21:51:20      TRUE 2022-12-16 22:00:00
## 3601 2022-12-16 21:51:19      TRUE 2022-12-16 22:00:00
## 3602 2022-12-16 21:51:18      TRUE 2022-12-16 22:00:00
## 3603 2022-12-16 21:51:17      TRUE 2022-12-16 22:00:00
## 3604 2022-12-16 21:51:17      TRUE 2022-12-16 22:00:00
## 3605 2022-12-16 21:51:16      TRUE 2022-12-16 22:00:00
## 3606 2022-12-16 21:51:15      TRUE 2022-12-16 22:00:00
## 3607 2022-12-16 21:51:14      TRUE 2022-12-16 22:00:00
## 3608 2022-12-16 21:51:10      TRUE 2022-12-16 22:00:00
## 3609 2022-12-16 21:51:07      TRUE 2022-12-16 22:00:00
## 3610 2022-12-16 21:51:03      TRUE 2022-12-16 22:00:00
## 3611 2022-12-16 21:51:01      TRUE 2022-12-16 22:00:00
## 3612 2022-12-16 21:51:01      TRUE 2022-12-16 22:00:00
## 3613 2022-12-16 21:50:59      TRUE 2022-12-16 22:00:00
## 3614 2022-12-16 21:50:55      TRUE 2022-12-16 22:00:00
## 3615 2022-12-16 21:50:50      TRUE 2022-12-16 22:00:00
## 3616 2022-12-16 21:50:42      TRUE 2022-12-16 22:00:00
## 3617 2022-12-16 21:50:42      TRUE 2022-12-16 22:00:00
## 3618 2022-12-16 21:50:38      TRUE 2022-12-16 22:00:00
## 3619 2022-12-16 21:50:36      TRUE 2022-12-16 22:00:00
## 3620 2022-12-16 21:50:33      TRUE 2022-12-16 22:00:00
## 3621 2022-12-16 21:50:29      TRUE 2022-12-16 22:00:00
## 3622 2022-12-16 21:50:18      TRUE 2022-12-16 22:00:00
## 3623 2022-12-16 21:50:14      TRUE 2022-12-16 22:00:00
## 3624 2022-12-16 21:50:12      TRUE 2022-12-16 22:00:00
## 3625 2022-12-16 21:50:02      TRUE 2022-12-16 22:00:00
## 3626 2022-12-16 21:49:57      TRUE 2022-12-16 22:00:00
## 3627 2022-12-16 21:49:54      TRUE 2022-12-16 22:00:00
## 3628 2022-12-16 21:49:51      TRUE 2022-12-16 22:00:00
## 3629 2022-12-16 21:49:51      TRUE 2022-12-16 22:00:00
## 3630 2022-12-16 21:49:49      TRUE 2022-12-16 22:00:00
## 3631 2022-12-16 21:49:47      TRUE 2022-12-16 22:00:00
## 3632 2022-12-16 21:49:45      TRUE 2022-12-16 22:00:00
## 3633 2022-12-16 21:49:43      TRUE 2022-12-16 22:00:00
## 3634 2022-12-16 21:49:39      TRUE 2022-12-16 22:00:00
## 3635 2022-12-16 21:49:39      TRUE 2022-12-16 22:00:00
## 3636 2022-12-16 21:49:38      TRUE 2022-12-16 22:00:00
## 3637 2022-12-16 21:49:36      TRUE 2022-12-16 22:00:00
## 3638 2022-12-16 21:49:33      TRUE 2022-12-16 22:00:00
## 3639 2022-12-16 21:49:29      TRUE 2022-12-16 22:00:00
## 3640 2022-12-16 21:49:26      TRUE 2022-12-16 22:00:00
## 3641 2022-12-16 21:49:22      TRUE 2022-12-16 22:00:00
## 3642 2022-12-16 21:49:16      TRUE 2022-12-16 22:00:00
## 3643 2022-12-16 21:49:16      TRUE 2022-12-16 22:00:00
## 3644 2022-12-16 21:49:14      TRUE 2022-12-16 22:00:00
## 3645 2022-12-16 21:49:02      TRUE 2022-12-16 22:00:00
## 3646 2022-12-16 21:49:01      TRUE 2022-12-16 22:00:00
## 3647 2022-12-16 21:48:56      TRUE 2022-12-16 22:00:00
## 3648 2022-12-16 21:48:55      TRUE 2022-12-16 22:00:00
## 3649 2022-12-16 21:48:55      TRUE 2022-12-16 22:00:00
## 3650 2022-12-16 21:48:54      TRUE 2022-12-16 22:00:00
## 3651 2022-12-16 21:48:53      TRUE 2022-12-16 22:00:00
## 3652 2022-12-16 21:48:53      TRUE 2022-12-16 22:00:00
## 3653 2022-12-16 21:48:51      TRUE 2022-12-16 22:00:00
## 3654 2022-12-16 21:48:51      TRUE 2022-12-16 22:00:00
## 3655 2022-12-16 21:48:44      TRUE 2022-12-16 22:00:00
## 3656 2022-12-16 21:48:40      TRUE 2022-12-16 22:00:00
## 3657 2022-12-16 21:48:38      TRUE 2022-12-16 22:00:00
## 3658 2022-12-16 21:48:35      TRUE 2022-12-16 22:00:00
## 3659 2022-12-16 21:48:29      TRUE 2022-12-16 22:00:00
## 3660 2022-12-16 21:48:25      TRUE 2022-12-16 22:00:00
## 3661 2022-12-16 21:48:23      TRUE 2022-12-16 22:00:00
## 3662 2022-12-16 21:48:21      TRUE 2022-12-16 22:00:00
## 3663 2022-12-16 21:48:19      TRUE 2022-12-16 22:00:00
## 3664 2022-12-16 21:48:19      TRUE 2022-12-16 22:00:00
## 3665 2022-12-16 21:48:18      TRUE 2022-12-16 22:00:00
## 3666 2022-12-16 21:48:13      TRUE 2022-12-16 22:00:00
## 3667 2022-12-16 21:48:08      TRUE 2022-12-16 22:00:00
## 3668 2022-12-16 21:48:04      TRUE 2022-12-16 22:00:00
## 3669 2022-12-16 21:48:03      TRUE 2022-12-16 22:00:00
## 3670 2022-12-16 21:48:03      TRUE 2022-12-16 22:00:00
## 3671 2022-12-16 21:47:59      TRUE 2022-12-16 22:00:00
## 3672 2022-12-16 21:47:52      TRUE 2022-12-16 22:00:00
## 3673 2022-12-16 21:47:51      TRUE 2022-12-16 22:00:00
## 3674 2022-12-16 21:47:47      TRUE 2022-12-16 22:00:00
## 3675 2022-12-16 21:47:40      TRUE 2022-12-16 22:00:00
## 3676 2022-12-16 21:47:40      TRUE 2022-12-16 22:00:00
## 3677 2022-12-16 21:47:39      TRUE 2022-12-16 22:00:00
## 3678 2022-12-16 21:47:37      TRUE 2022-12-16 22:00:00
## 3679 2022-12-16 21:47:29      TRUE 2022-12-16 22:00:00
## 3680 2022-12-16 21:47:27      TRUE 2022-12-16 22:00:00
## 3681 2022-12-16 21:47:27      TRUE 2022-12-16 22:00:00
## 3682 2022-12-16 21:47:25      TRUE 2022-12-16 22:00:00
## 3683 2022-12-16 21:47:21      TRUE 2022-12-16 22:00:00
## 3684 2022-12-16 21:47:17      TRUE 2022-12-16 22:00:00
## 3685 2022-12-16 21:47:13      TRUE 2022-12-16 22:00:00
## 3686 2022-12-16 21:47:12      TRUE 2022-12-16 22:00:00
## 3687 2022-12-16 21:46:59      TRUE 2022-12-16 22:00:00
## 3688 2022-12-16 21:46:57      TRUE 2022-12-16 22:00:00
## 3689 2022-12-16 21:46:56      TRUE 2022-12-16 22:00:00
## 3690 2022-12-16 21:46:53      TRUE 2022-12-16 22:00:00
## 3691 2022-12-16 21:46:51      TRUE 2022-12-16 22:00:00
## 3692 2022-12-16 21:46:50      TRUE 2022-12-16 22:00:00
## 3693 2022-12-16 21:46:49      TRUE 2022-12-16 22:00:00
## 3694 2022-12-16 21:46:44      TRUE 2022-12-16 22:00:00
## 3695 2022-12-16 21:46:43      TRUE 2022-12-16 22:00:00
## 3696 2022-12-16 21:46:39      TRUE 2022-12-16 22:00:00
## 3697 2022-12-16 21:46:36      TRUE 2022-12-16 22:00:00
## 3698 2022-12-16 21:46:31      TRUE 2022-12-16 22:00:00
## 3699 2022-12-16 21:46:24      TRUE 2022-12-16 22:00:00
## 3700 2022-12-16 21:46:15      TRUE 2022-12-16 22:00:00
## 3701 2022-12-16 21:46:15      TRUE 2022-12-16 22:00:00
## 3702 2022-12-16 21:46:13      TRUE 2022-12-16 22:00:00
## 3703 2022-12-16 21:46:09      TRUE 2022-12-16 22:00:00
## 3704 2022-12-16 21:46:07      TRUE 2022-12-16 22:00:00
## 3705 2022-12-16 21:46:05      TRUE 2022-12-16 22:00:00
## 3706 2022-12-16 21:46:03      TRUE 2022-12-16 22:00:00
## 3707 2022-12-16 21:46:02      TRUE 2022-12-16 22:00:00
## 3708 2022-12-16 21:46:01      TRUE 2022-12-16 22:00:00
## 3709 2022-12-16 21:46:01      TRUE 2022-12-16 22:00:00
## 3710 2022-12-16 21:46:00      TRUE 2022-12-16 22:00:00
## 3711 2022-12-16 21:45:56      TRUE 2022-12-16 22:00:00
## 3712 2022-12-16 21:45:54      TRUE 2022-12-16 22:00:00
## 3713 2022-12-16 21:45:48      TRUE 2022-12-16 22:00:00
## 3714 2022-12-16 21:45:48      TRUE 2022-12-16 22:00:00
## 3715 2022-12-16 21:45:47      TRUE 2022-12-16 22:00:00
## 3716 2022-12-16 21:45:47      TRUE 2022-12-16 22:00:00
## 3717 2022-12-16 21:45:44      TRUE 2022-12-16 22:00:00
## 3718 2022-12-16 21:45:41      TRUE 2022-12-16 22:00:00
## 3719 2022-12-16 21:45:33      TRUE 2022-12-16 22:00:00
## 3720 2022-12-16 21:45:26      TRUE 2022-12-16 22:00:00
## 3721 2022-12-16 21:45:25      TRUE 2022-12-16 22:00:00
## 3722 2022-12-16 21:45:25      TRUE 2022-12-16 22:00:00
## 3723 2022-12-16 21:45:21      TRUE 2022-12-16 22:00:00
## 3724 2022-12-16 21:45:18      TRUE 2022-12-16 22:00:00
## 3725 2022-12-16 21:45:17      TRUE 2022-12-16 22:00:00
## 3726 2022-12-16 21:45:16      TRUE 2022-12-16 22:00:00
## 3727 2022-12-16 21:45:12      TRUE 2022-12-16 22:00:00
## 3728 2022-12-16 21:45:11      TRUE 2022-12-16 22:00:00
## 3729 2022-12-16 21:45:11      TRUE 2022-12-16 22:00:00
## 3730 2022-12-16 21:45:09      TRUE 2022-12-16 22:00:00
## 3731 2022-12-16 21:45:03      TRUE 2022-12-16 22:00:00
## 3732 2022-12-16 21:45:02      TRUE 2022-12-16 22:00:00
## 3733 2022-12-16 21:45:02      TRUE 2022-12-16 22:00:00
## 3734 2022-12-16 21:44:58      TRUE 2022-12-16 22:00:00
## 3735 2022-12-16 21:44:57      TRUE 2022-12-16 22:00:00
## 3736 2022-12-16 21:44:56      TRUE 2022-12-16 22:00:00
## 3737 2022-12-16 21:44:52      TRUE 2022-12-16 22:00:00
## 3738 2022-12-16 21:44:51      TRUE 2022-12-16 22:00:00
## 3739 2022-12-16 21:44:50      TRUE 2022-12-16 22:00:00
## 3740 2022-12-16 21:44:43      TRUE 2022-12-16 22:00:00
## 3741 2022-12-16 21:44:35      TRUE 2022-12-16 22:00:00
## 3742 2022-12-16 21:44:27      TRUE 2022-12-16 22:00:00
## 3743 2022-12-16 21:44:26      TRUE 2022-12-16 22:00:00
## 3744 2022-12-16 21:44:25      TRUE 2022-12-16 22:00:00
## 3745 2022-12-16 21:44:24      TRUE 2022-12-16 22:00:00
## 3746 2022-12-16 21:44:22      TRUE 2022-12-16 22:00:00
## 3747 2022-12-16 21:44:21      TRUE 2022-12-16 22:00:00
## 3748 2022-12-16 21:44:16      TRUE 2022-12-16 22:00:00
## 3749 2022-12-16 21:44:15      TRUE 2022-12-16 22:00:00
## 3750 2022-12-16 21:44:15      TRUE 2022-12-16 22:00:00
## 3751 2022-12-16 21:44:14      TRUE 2022-12-16 22:00:00
## 3752 2022-12-16 21:44:12      TRUE 2022-12-16 22:00:00
## 3753 2022-12-16 21:44:09      TRUE 2022-12-16 22:00:00
## 3754 2022-12-16 21:44:08      TRUE 2022-12-16 22:00:00
## 3755 2022-12-16 21:44:07      TRUE 2022-12-16 22:00:00
## 3756 2022-12-16 21:43:59      TRUE 2022-12-16 22:00:00
## 3757 2022-12-16 21:43:58      TRUE 2022-12-16 22:00:00
## 3758 2022-12-16 21:43:57      TRUE 2022-12-16 22:00:00
## 3759 2022-12-16 21:43:56      TRUE 2022-12-16 22:00:00
## 3760 2022-12-16 21:43:52      TRUE 2022-12-16 22:00:00
## 3761 2022-12-16 21:43:50      TRUE 2022-12-16 22:00:00
## 3762 2022-12-16 21:43:46      TRUE 2022-12-16 22:00:00
## 3763 2022-12-16 21:43:42      TRUE 2022-12-16 22:00:00
## 3764 2022-12-16 21:43:41      TRUE 2022-12-16 22:00:00
## 3765 2022-12-16 21:43:32      TRUE 2022-12-16 22:00:00
## 3766 2022-12-16 21:43:31      TRUE 2022-12-16 22:00:00
## 3767 2022-12-16 21:43:26      TRUE 2022-12-16 22:00:00
## 3768 2022-12-16 21:43:25      TRUE 2022-12-16 22:00:00
## 3769 2022-12-16 21:43:21      TRUE 2022-12-16 22:00:00
## 3770 2022-12-16 21:43:17      TRUE 2022-12-16 22:00:00
## 3771 2022-12-16 21:43:14      TRUE 2022-12-16 22:00:00
## 3772 2022-12-16 21:43:14      TRUE 2022-12-16 22:00:00
## 3773 2022-12-16 21:43:11      TRUE 2022-12-16 22:00:00
## 3774 2022-12-16 21:43:10      TRUE 2022-12-16 22:00:00
## 3775 2022-12-16 21:43:05      TRUE 2022-12-16 22:00:00
## 3776 2022-12-16 21:42:59      TRUE 2022-12-16 22:00:00
## 3777 2022-12-16 21:42:57      TRUE 2022-12-16 22:00:00
## 3778 2022-12-16 21:42:53      TRUE 2022-12-16 22:00:00
## 3779 2022-12-16 21:42:52      TRUE 2022-12-16 22:00:00
## 3780 2022-12-16 21:42:52      TRUE 2022-12-16 22:00:00
## 3781 2022-12-16 21:42:44      TRUE 2022-12-16 22:00:00
## 3782 2022-12-16 21:42:42      TRUE 2022-12-16 22:00:00
## 3783 2022-12-16 21:42:41      TRUE 2022-12-16 22:00:00
## 3784 2022-12-16 21:42:36      TRUE 2022-12-16 22:00:00
## 3785 2022-12-16 21:42:34      TRUE 2022-12-16 22:00:00
## 3786 2022-12-16 21:42:34      TRUE 2022-12-16 22:00:00
## 3787 2022-12-16 21:42:30      TRUE 2022-12-16 22:00:00
## 3788 2022-12-16 21:42:24      TRUE 2022-12-16 22:00:00
## 3789 2022-12-16 21:42:16      TRUE 2022-12-16 22:00:00
## 3790 2022-12-16 21:42:15      TRUE 2022-12-16 22:00:00
## 3791 2022-12-16 21:42:15      TRUE 2022-12-16 22:00:00
## 3792 2022-12-16 21:42:09      TRUE 2022-12-16 22:00:00
## 3793 2022-12-16 21:42:02      TRUE 2022-12-16 22:00:00
## 3794 2022-12-16 21:42:01      TRUE 2022-12-16 22:00:00
## 3795 2022-12-16 21:42:01      TRUE 2022-12-16 22:00:00
## 3796 2022-12-16 21:41:58      TRUE 2022-12-16 22:00:00
## 3797 2022-12-16 21:41:55      TRUE 2022-12-16 22:00:00
## 3798 2022-12-16 21:41:52      TRUE 2022-12-16 22:00:00
## 3799 2022-12-16 21:41:43      TRUE 2022-12-16 22:00:00
## 3800 2022-12-16 21:41:41      TRUE 2022-12-16 22:00:00
## 3801 2022-12-16 21:41:36      TRUE 2022-12-16 22:00:00
## 3802 2022-12-16 21:41:33      TRUE 2022-12-16 22:00:00
## 3803 2022-12-16 21:41:30      TRUE 2022-12-16 22:00:00
## 3804 2022-12-16 21:41:24      TRUE 2022-12-16 22:00:00
## 3805 2022-12-16 21:41:23      TRUE 2022-12-16 22:00:00
## 3806 2022-12-16 21:41:23      TRUE 2022-12-16 22:00:00
## 3807 2022-12-16 21:41:19      TRUE 2022-12-16 22:00:00
## 3808 2022-12-16 21:41:18      TRUE 2022-12-16 22:00:00
## 3809 2022-12-16 21:41:11      TRUE 2022-12-16 22:00:00
## 3810 2022-12-16 21:41:04      TRUE 2022-12-16 22:00:00
## 3811 2022-12-16 21:40:55      TRUE 2022-12-16 22:00:00
## 3812 2022-12-16 21:40:55      TRUE 2022-12-16 22:00:00
## 3813 2022-12-16 21:40:51      TRUE 2022-12-16 22:00:00
## 3814 2022-12-16 21:40:51      TRUE 2022-12-16 22:00:00
## 3815 2022-12-16 21:40:39      TRUE 2022-12-16 22:00:00
## 3816 2022-12-16 21:40:36      TRUE 2022-12-16 22:00:00
## 3817 2022-12-16 21:40:36      TRUE 2022-12-16 22:00:00
## 3818 2022-12-16 21:40:35      TRUE 2022-12-16 22:00:00
## 3819 2022-12-16 21:40:35      TRUE 2022-12-16 22:00:00
## 3820 2022-12-16 21:40:34      TRUE 2022-12-16 22:00:00
## 3821 2022-12-16 21:40:34      TRUE 2022-12-16 22:00:00
## 3822 2022-12-16 21:40:30      TRUE 2022-12-16 22:00:00
## 3823 2022-12-16 21:40:30      TRUE 2022-12-16 22:00:00
## 3824 2022-12-16 21:40:24      TRUE 2022-12-16 22:00:00
## 3825 2022-12-16 21:40:16      TRUE 2022-12-16 22:00:00
## 3826 2022-12-16 21:40:15      TRUE 2022-12-16 22:00:00
## 3827 2022-12-16 21:40:14      TRUE 2022-12-16 22:00:00
## 3828 2022-12-16 21:40:14      TRUE 2022-12-16 22:00:00
## 3829 2022-12-16 21:40:11      TRUE 2022-12-16 22:00:00
## 3830 2022-12-16 21:40:11      TRUE 2022-12-16 22:00:00
## 3831 2022-12-16 21:40:08      TRUE 2022-12-16 22:00:00
## 3832 2022-12-16 21:40:08      TRUE 2022-12-16 22:00:00
## 3833 2022-12-16 21:40:06      TRUE 2022-12-16 22:00:00
## 3834 2022-12-16 21:40:06      TRUE 2022-12-16 22:00:00
## 3835 2022-12-16 21:40:04      TRUE 2022-12-16 22:00:00
## 3836 2022-12-16 21:39:59      TRUE 2022-12-16 22:00:00
## 3837 2022-12-16 21:39:56      TRUE 2022-12-16 22:00:00
## 3838 2022-12-16 21:39:53      TRUE 2022-12-16 22:00:00
## 3839 2022-12-16 21:39:50      TRUE 2022-12-16 22:00:00
## 3840 2022-12-16 21:39:49      TRUE 2022-12-16 22:00:00
## 3841 2022-12-16 21:39:47      TRUE 2022-12-16 22:00:00
## 3842 2022-12-16 21:39:43      TRUE 2022-12-16 22:00:00
## 3843 2022-12-16 21:39:41      TRUE 2022-12-16 22:00:00
## 3844 2022-12-16 21:39:33      TRUE 2022-12-16 22:00:00
## 3845 2022-12-16 21:39:33      TRUE 2022-12-16 22:00:00
## 3846 2022-12-16 21:39:31      TRUE 2022-12-16 22:00:00
## 3847 2022-12-16 21:39:29      TRUE 2022-12-16 22:00:00
## 3848 2022-12-16 21:39:27      TRUE 2022-12-16 22:00:00
## 3849 2022-12-16 21:39:25      TRUE 2022-12-16 22:00:00
## 3850 2022-12-16 21:39:19      TRUE 2022-12-16 22:00:00
## 3851 2022-12-16 21:39:18      TRUE 2022-12-16 22:00:00
## 3852 2022-12-16 21:39:16      TRUE 2022-12-16 22:00:00
## 3853 2022-12-16 21:39:14      TRUE 2022-12-16 22:00:00
## 3854 2022-12-16 21:39:13      TRUE 2022-12-16 22:00:00
## 3855 2022-12-16 21:39:07      TRUE 2022-12-16 22:00:00
## 3856 2022-12-16 21:39:04      TRUE 2022-12-16 22:00:00
## 3857 2022-12-16 21:39:03      TRUE 2022-12-16 22:00:00
## 3858 2022-12-16 21:38:53      TRUE 2022-12-16 22:00:00
## 3859 2022-12-16 21:38:44      TRUE 2022-12-16 22:00:00
## 3860 2022-12-16 21:38:44      TRUE 2022-12-16 22:00:00
## 3861 2022-12-16 21:38:44      TRUE 2022-12-16 22:00:00
## 3862 2022-12-16 21:38:40      TRUE 2022-12-16 22:00:00
## 3863 2022-12-16 21:38:37      TRUE 2022-12-16 22:00:00
## 3864 2022-12-16 21:38:36      TRUE 2022-12-16 22:00:00
## 3865 2022-12-16 21:38:30      TRUE 2022-12-16 22:00:00
## 3866 2022-12-16 21:38:26      TRUE 2022-12-16 22:00:00
## 3867 2022-12-16 21:38:14      TRUE 2022-12-16 22:00:00
## 3868 2022-12-16 21:38:13      TRUE 2022-12-16 22:00:00
## 3869 2022-12-16 21:38:12      TRUE 2022-12-16 22:00:00
## 3870 2022-12-16 21:38:09      TRUE 2022-12-16 22:00:00
## 3871 2022-12-16 21:38:07      TRUE 2022-12-16 22:00:00
## 3872 2022-12-16 21:37:51      TRUE 2022-12-16 22:00:00
## 3873 2022-12-16 21:37:49      TRUE 2022-12-16 22:00:00
## 3874 2022-12-16 21:37:47      TRUE 2022-12-16 22:00:00
## 3875 2022-12-16 21:37:46      TRUE 2022-12-16 22:00:00
## 3876 2022-12-16 21:37:43      TRUE 2022-12-16 22:00:00
## 3877 2022-12-16 21:37:42      TRUE 2022-12-16 22:00:00
## 3878 2022-12-16 21:37:38      TRUE 2022-12-16 22:00:00
## 3879 2022-12-16 21:37:37      TRUE 2022-12-16 22:00:00
## 3880 2022-12-16 21:37:37      TRUE 2022-12-16 22:00:00
## 3881 2022-12-16 21:37:29      TRUE 2022-12-16 22:00:00
## 3882 2022-12-16 21:37:27      TRUE 2022-12-16 22:00:00
## 3883 2022-12-16 21:37:20      TRUE 2022-12-16 22:00:00
## 3884 2022-12-16 21:37:16      TRUE 2022-12-16 22:00:00
## 3885 2022-12-16 21:37:16      TRUE 2022-12-16 22:00:00
## 3886 2022-12-16 21:37:15      TRUE 2022-12-16 22:00:00
## 3887 2022-12-16 21:37:15      TRUE 2022-12-16 22:00:00
## 3888 2022-12-16 21:37:14      TRUE 2022-12-16 22:00:00
## 3889 2022-12-16 21:37:12      TRUE 2022-12-16 22:00:00
## 3890 2022-12-16 21:37:09      TRUE 2022-12-16 22:00:00
## 3891 2022-12-16 21:37:08      TRUE 2022-12-16 22:00:00
## 3892 2022-12-16 21:37:08      TRUE 2022-12-16 22:00:00
## 3893 2022-12-16 21:37:06      TRUE 2022-12-16 22:00:00
## 3894 2022-12-16 21:37:05      TRUE 2022-12-16 22:00:00
## 3895 2022-12-16 21:37:02      TRUE 2022-12-16 22:00:00
## 3896 2022-12-16 21:37:01      TRUE 2022-12-16 22:00:00
## 3897 2022-12-16 21:37:01      TRUE 2022-12-16 22:00:00
## 3898 2022-12-16 21:37:00      TRUE 2022-12-16 22:00:00
## 3899 2022-12-16 21:36:59      TRUE 2022-12-16 22:00:00
## 3900 2022-12-16 21:36:59      TRUE 2022-12-16 22:00:00
## 3901 2022-12-16 21:36:57      TRUE 2022-12-16 22:00:00
## 3902 2022-12-16 21:36:48      TRUE 2022-12-16 22:00:00
## 3903 2022-12-16 21:36:45      TRUE 2022-12-16 22:00:00
## 3904 2022-12-16 21:36:40      TRUE 2022-12-16 22:00:00
## 3905 2022-12-16 21:36:39      TRUE 2022-12-16 22:00:00
## 3906 2022-12-16 21:36:38      TRUE 2022-12-16 22:00:00
## 3907 2022-12-16 21:36:33      TRUE 2022-12-16 22:00:00
## 3908 2022-12-16 21:36:29      TRUE 2022-12-16 22:00:00
## 3909 2022-12-16 21:36:28      TRUE 2022-12-16 22:00:00
## 3910 2022-12-16 21:36:27      TRUE 2022-12-16 22:00:00
## 3911 2022-12-16 21:36:26      TRUE 2022-12-16 22:00:00
## 3912 2022-12-16 21:36:24      TRUE 2022-12-16 22:00:00
## 3913 2022-12-16 21:36:24      TRUE 2022-12-16 22:00:00
## 3914 2022-12-16 21:36:23      TRUE 2022-12-16 22:00:00
## 3915 2022-12-16 21:36:23      TRUE 2022-12-16 22:00:00
## 3916 2022-12-16 21:36:21      TRUE 2022-12-16 22:00:00
## 3917 2022-12-16 21:36:20      TRUE 2022-12-16 22:00:00
## 3918 2022-12-16 21:36:05      TRUE 2022-12-16 22:00:00
## 3919 2022-12-16 21:36:01      TRUE 2022-12-16 22:00:00
## 3920 2022-12-16 21:35:53      TRUE 2022-12-16 22:00:00
## 3921 2022-12-16 21:35:48      TRUE 2022-12-16 22:00:00
## 3922 2022-12-16 21:35:44      TRUE 2022-12-16 22:00:00
## 3923 2022-12-16 21:35:41      TRUE 2022-12-16 22:00:00
## 3924 2022-12-16 21:35:39      TRUE 2022-12-16 22:00:00
## 3925 2022-12-16 21:35:30      TRUE 2022-12-16 22:00:00
## 3926 2022-12-16 21:35:28      TRUE 2022-12-16 22:00:00
## 3927 2022-12-16 21:35:27      TRUE 2022-12-16 22:00:00
## 3928 2022-12-16 21:35:26      TRUE 2022-12-16 22:00:00
## 3929 2022-12-16 21:35:24      TRUE 2022-12-16 22:00:00
## 3930 2022-12-16 21:35:23      TRUE 2022-12-16 22:00:00
## 3931 2022-12-16 21:35:19      TRUE 2022-12-16 22:00:00
## 3932 2022-12-16 21:35:14      TRUE 2022-12-16 22:00:00
## 3933 2022-12-16 21:35:09      TRUE 2022-12-16 22:00:00
## 3934 2022-12-16 21:35:07      TRUE 2022-12-16 22:00:00
## 3935 2022-12-16 21:35:07      TRUE 2022-12-16 22:00:00
## 3936 2022-12-16 21:35:04      TRUE 2022-12-16 22:00:00
## 3937 2022-12-16 21:34:59      TRUE 2022-12-16 22:00:00
## 3938 2022-12-16 21:34:59      TRUE 2022-12-16 22:00:00
## 3939 2022-12-16 21:34:57      TRUE 2022-12-16 22:00:00
## 3940 2022-12-16 21:34:54      TRUE 2022-12-16 22:00:00
## 3941 2022-12-16 21:34:51      TRUE 2022-12-16 22:00:00
## 3942 2022-12-16 21:34:50      TRUE 2022-12-16 22:00:00
## 3943 2022-12-16 21:34:45      TRUE 2022-12-16 22:00:00
## 3944 2022-12-16 21:34:45      TRUE 2022-12-16 22:00:00
## 3945 2022-12-16 21:34:41      TRUE 2022-12-16 22:00:00
## 3946 2022-12-16 21:34:41      TRUE 2022-12-16 22:00:00
## 3947 2022-12-16 21:34:38      TRUE 2022-12-16 22:00:00
## 3948 2022-12-16 21:34:34      TRUE 2022-12-16 22:00:00
## 3949 2022-12-16 21:34:30      TRUE 2022-12-16 22:00:00
## 3950 2022-12-16 21:34:27      TRUE 2022-12-16 22:00:00
## 3951 2022-12-16 21:34:26      TRUE 2022-12-16 22:00:00
## 3952 2022-12-16 21:34:26      TRUE 2022-12-16 22:00:00
## 3953 2022-12-16 21:34:23      TRUE 2022-12-16 22:00:00
## 3954 2022-12-16 21:34:23      TRUE 2022-12-16 22:00:00
## 3955 2022-12-16 21:34:18      TRUE 2022-12-16 22:00:00
## 3956 2022-12-16 21:34:12      TRUE 2022-12-16 22:00:00
## 3957 2022-12-16 21:34:11      TRUE 2022-12-16 22:00:00
## 3958 2022-12-16 21:34:00      TRUE 2022-12-16 22:00:00
## 3959 2022-12-16 21:33:58      TRUE 2022-12-16 22:00:00
## 3960 2022-12-16 21:33:57      TRUE 2022-12-16 22:00:00
## 3961 2022-12-16 21:33:54      TRUE 2022-12-16 22:00:00
## 3962 2022-12-16 21:33:45      TRUE 2022-12-16 22:00:00
## 3963 2022-12-16 21:33:43      TRUE 2022-12-16 22:00:00
## 3964 2022-12-16 21:33:42      TRUE 2022-12-16 22:00:00
## 3965 2022-12-16 21:33:38      TRUE 2022-12-16 22:00:00
## 3966 2022-12-16 21:33:38      TRUE 2022-12-16 22:00:00
## 3967 2022-12-16 21:33:37      TRUE 2022-12-16 22:00:00
## 3968 2022-12-16 21:33:34      TRUE 2022-12-16 22:00:00
## 3969 2022-12-16 21:33:32      TRUE 2022-12-16 22:00:00
## 3970 2022-12-16 21:33:31      TRUE 2022-12-16 22:00:00
## 3971 2022-12-16 21:33:22      TRUE 2022-12-16 22:00:00
## 3972 2022-12-16 21:33:18      TRUE 2022-12-16 22:00:00
## 3973 2022-12-16 21:33:17      TRUE 2022-12-16 22:00:00
## 3974 2022-12-16 21:33:14      TRUE 2022-12-16 22:00:00
## 3975 2022-12-16 21:33:09      TRUE 2022-12-16 22:00:00
## 3976 2022-12-16 21:33:07      TRUE 2022-12-16 22:00:00
## 3977 2022-12-16 21:33:02      TRUE 2022-12-16 22:00:00
## 3978 2022-12-16 21:33:00      TRUE 2022-12-16 22:00:00
## 3979 2022-12-16 21:32:59      TRUE 2022-12-16 22:00:00
## 3980 2022-12-16 21:32:54      TRUE 2022-12-16 22:00:00
## 3981 2022-12-16 21:32:54      TRUE 2022-12-16 22:00:00
## 3982 2022-12-16 21:32:47      TRUE 2022-12-16 22:00:00
## 3983 2022-12-16 21:32:46      TRUE 2022-12-16 22:00:00
## 3984 2022-12-16 21:32:35      TRUE 2022-12-16 22:00:00
## 3985 2022-12-16 21:32:33      TRUE 2022-12-16 22:00:00
## 3986 2022-12-16 21:32:31      TRUE 2022-12-16 22:00:00
## 3987 2022-12-16 21:32:29      TRUE 2022-12-16 22:00:00
## 3988 2022-12-16 21:32:29      TRUE 2022-12-16 22:00:00
## 3989 2022-12-16 21:32:29      TRUE 2022-12-16 22:00:00
## 3990 2022-12-16 21:32:26      TRUE 2022-12-16 22:00:00
## 3991 2022-12-16 21:32:26      TRUE 2022-12-16 22:00:00
## 3992 2022-12-16 21:32:26      TRUE 2022-12-16 22:00:00
## 3993 2022-12-16 21:32:23      TRUE 2022-12-16 22:00:00
## 3994 2022-12-16 21:32:21      TRUE 2022-12-16 22:00:00
## 3995 2022-12-16 21:32:21      TRUE 2022-12-16 22:00:00
## 3996 2022-12-16 21:32:19      TRUE 2022-12-16 22:00:00
## 3997 2022-12-16 21:32:16      TRUE 2022-12-16 22:00:00
## 3998 2022-12-16 21:32:04      TRUE 2022-12-16 22:00:00
## 3999 2022-12-16 21:31:49      TRUE 2022-12-16 22:00:00
## 4000 2022-12-16 21:31:45      TRUE 2022-12-16 22:00:00
## 4001 2022-12-16 21:31:42      TRUE 2022-12-16 22:00:00
## 4002 2022-12-16 21:31:40      TRUE 2022-12-16 22:00:00
## 4003 2022-12-16 21:31:32      TRUE 2022-12-16 22:00:00
## 4004 2022-12-16 21:31:30      TRUE 2022-12-16 22:00:00
## 4005 2022-12-16 21:31:20      TRUE 2022-12-16 22:00:00
## 4006 2022-12-16 21:31:20      TRUE 2022-12-16 22:00:00
## 4007 2022-12-16 21:31:18      TRUE 2022-12-16 22:00:00
## 4008 2022-12-16 21:31:16      TRUE 2022-12-16 22:00:00
## 4009 2022-12-16 21:31:16      TRUE 2022-12-16 22:00:00
## 4010 2022-12-16 21:31:09      TRUE 2022-12-16 22:00:00
## 4011 2022-12-16 21:31:07      TRUE 2022-12-16 22:00:00
## 4012 2022-12-16 21:31:06      TRUE 2022-12-16 22:00:00
## 4013 2022-12-16 21:31:06      TRUE 2022-12-16 22:00:00
## 4014 2022-12-16 21:31:02      TRUE 2022-12-16 22:00:00
## 4015 2022-12-16 21:31:02      TRUE 2022-12-16 22:00:00
## 4016 2022-12-16 21:31:00      TRUE 2022-12-16 22:00:00
## 4017 2022-12-16 21:30:58      TRUE 2022-12-16 22:00:00
## 4018 2022-12-16 21:30:56      TRUE 2022-12-16 22:00:00
## 4019 2022-12-16 21:30:56      TRUE 2022-12-16 22:00:00
## 4020 2022-12-16 21:30:52      TRUE 2022-12-16 22:00:00
## 4021 2022-12-16 21:30:51      TRUE 2022-12-16 22:00:00
## 4022 2022-12-16 21:30:49      TRUE 2022-12-16 22:00:00
## 4023 2022-12-16 21:30:48      TRUE 2022-12-16 22:00:00
## 4024 2022-12-16 21:30:47      TRUE 2022-12-16 22:00:00
## 4025 2022-12-16 21:30:47      TRUE 2022-12-16 22:00:00
## 4026 2022-12-16 21:30:47      TRUE 2022-12-16 22:00:00
## 4027 2022-12-16 21:30:45      TRUE 2022-12-16 22:00:00
## 4028 2022-12-16 21:30:44      TRUE 2022-12-16 22:00:00
## 4029 2022-12-16 21:30:43      TRUE 2022-12-16 22:00:00
## 4030 2022-12-16 21:30:40      TRUE 2022-12-16 22:00:00
## 4031 2022-12-16 21:30:39      TRUE 2022-12-16 22:00:00
## 4032 2022-12-16 21:30:37      TRUE 2022-12-16 22:00:00
## 4033 2022-12-16 21:30:36      TRUE 2022-12-16 22:00:00
## 4034 2022-12-16 21:30:36      TRUE 2022-12-16 22:00:00
## 4035 2022-12-16 21:30:33      TRUE 2022-12-16 22:00:00
## 4036 2022-12-16 21:30:31      TRUE 2022-12-16 22:00:00
## 4037 2022-12-16 21:30:30      TRUE 2022-12-16 22:00:00
## 4038 2022-12-16 21:30:26      TRUE 2022-12-16 22:00:00
## 4039 2022-12-16 21:30:25      TRUE 2022-12-16 22:00:00
## 4040 2022-12-16 21:30:20      TRUE 2022-12-16 22:00:00
## 4041 2022-12-16 21:30:18      TRUE 2022-12-16 22:00:00
## 4042 2022-12-16 21:30:15      TRUE 2022-12-16 22:00:00
## 4043 2022-12-16 21:30:15      TRUE 2022-12-16 22:00:00
## 4044 2022-12-16 21:30:13      TRUE 2022-12-16 22:00:00
## 4045 2022-12-16 21:30:12      TRUE 2022-12-16 22:00:00
## 4046 2022-12-16 21:30:12      TRUE 2022-12-16 22:00:00
## 4047 2022-12-16 21:30:10      TRUE 2022-12-16 22:00:00
## 4048 2022-12-16 21:30:07      TRUE 2022-12-16 22:00:00
## 4049 2022-12-16 21:30:05      TRUE 2022-12-16 22:00:00
## 4050 2022-12-16 21:29:59      TRUE 2022-12-16 21:00:00
## 4051 2022-12-16 21:29:54      TRUE 2022-12-16 21:00:00
## 4052 2022-12-16 21:29:49      TRUE 2022-12-16 21:00:00
## 4053 2022-12-16 21:29:42      TRUE 2022-12-16 21:00:00
## 4054 2022-12-16 21:29:42      TRUE 2022-12-16 21:00:00
## 4055 2022-12-16 21:29:39      TRUE 2022-12-16 21:00:00
## 4056 2022-12-16 21:29:38      TRUE 2022-12-16 21:00:00
## 4057 2022-12-16 21:29:33      TRUE 2022-12-16 21:00:00
## 4058 2022-12-16 21:29:29      TRUE 2022-12-16 21:00:00
## 4059 2022-12-16 21:29:29      TRUE 2022-12-16 21:00:00
## 4060 2022-12-16 21:29:19      TRUE 2022-12-16 21:00:00
## 4061 2022-12-16 21:29:11      TRUE 2022-12-16 21:00:00
## 4062 2022-12-16 21:29:09      TRUE 2022-12-16 21:00:00
## 4063 2022-12-16 21:29:07      TRUE 2022-12-16 21:00:00
## 4064 2022-12-16 21:29:06      TRUE 2022-12-16 21:00:00
## 4065 2022-12-16 21:29:04      TRUE 2022-12-16 21:00:00
## 4066 2022-12-16 21:29:02      TRUE 2022-12-16 21:00:00
## 4067 2022-12-16 21:29:02      TRUE 2022-12-16 21:00:00
## 4068 2022-12-16 21:29:01      TRUE 2022-12-16 21:00:00
## 4069 2022-12-16 21:28:52      TRUE 2022-12-16 21:00:00
## 4070 2022-12-16 21:28:45      TRUE 2022-12-16 21:00:00
## 4071 2022-12-16 21:28:41      TRUE 2022-12-16 21:00:00
## 4072 2022-12-16 21:28:36      TRUE 2022-12-16 21:00:00
## 4073 2022-12-16 21:28:30      TRUE 2022-12-16 21:00:00
## 4074 2022-12-16 21:28:29      TRUE 2022-12-16 21:00:00
## 4075 2022-12-16 21:28:25      TRUE 2022-12-16 21:00:00
## 4076 2022-12-16 21:28:18      TRUE 2022-12-16 21:00:00
## 4077 2022-12-16 21:28:13      TRUE 2022-12-16 21:00:00
## 4078 2022-12-16 21:28:12      TRUE 2022-12-16 21:00:00
## 4079 2022-12-16 21:28:06      TRUE 2022-12-16 21:00:00
## 4080 2022-12-16 21:28:02      TRUE 2022-12-16 21:00:00
## 4081 2022-12-16 21:27:58      TRUE 2022-12-16 21:00:00
## 4082 2022-12-16 21:27:56      TRUE 2022-12-16 21:00:00
## 4083 2022-12-16 21:27:55      TRUE 2022-12-16 21:00:00
## 4084 2022-12-16 21:27:54      TRUE 2022-12-16 21:00:00
## 4085 2022-12-16 21:27:48      TRUE 2022-12-16 21:00:00
## 4086 2022-12-16 21:27:47      TRUE 2022-12-16 21:00:00
## 4087 2022-12-16 21:27:41      TRUE 2022-12-16 21:00:00
## 4088 2022-12-16 21:27:36      TRUE 2022-12-16 21:00:00
## 4089 2022-12-16 21:27:33      TRUE 2022-12-16 21:00:00
## 4090 2022-12-16 21:27:24      TRUE 2022-12-16 21:00:00
## 4091 2022-12-16 21:27:23      TRUE 2022-12-16 21:00:00
## 4092 2022-12-16 21:27:20      TRUE 2022-12-16 21:00:00
## 4093 2022-12-16 21:27:19      TRUE 2022-12-16 21:00:00
## 4094 2022-12-16 21:27:16      TRUE 2022-12-16 21:00:00
## 4095 2022-12-16 21:27:14      TRUE 2022-12-16 21:00:00
## 4096 2022-12-16 21:27:09      TRUE 2022-12-16 21:00:00
## 4097 2022-12-16 21:27:09      TRUE 2022-12-16 21:00:00
## 4098 2022-12-16 21:27:07      TRUE 2022-12-16 21:00:00
## 4099 2022-12-16 21:27:07      TRUE 2022-12-16 21:00:00
## 4100 2022-12-16 21:27:06      TRUE 2022-12-16 21:00:00
## 4101 2022-12-16 21:27:02      TRUE 2022-12-16 21:00:00
## 4102 2022-12-16 21:27:01      TRUE 2022-12-16 21:00:00
## 4103 2022-12-16 21:26:57      TRUE 2022-12-16 21:00:00
## 4104 2022-12-16 21:26:56      TRUE 2022-12-16 21:00:00
## 4105 2022-12-16 21:26:54      TRUE 2022-12-16 21:00:00
## 4106 2022-12-16 21:26:50      TRUE 2022-12-16 21:00:00
## 4107 2022-12-16 21:26:49      TRUE 2022-12-16 21:00:00
## 4108 2022-12-16 21:26:40      TRUE 2022-12-16 21:00:00
## 4109 2022-12-16 21:26:40      TRUE 2022-12-16 21:00:00
## 4110 2022-12-16 21:26:36      TRUE 2022-12-16 21:00:00
## 4111 2022-12-16 21:26:35      TRUE 2022-12-16 21:00:00
## 4112 2022-12-16 21:26:34      TRUE 2022-12-16 21:00:00
## 4113 2022-12-16 21:26:34      TRUE 2022-12-16 21:00:00
## 4114 2022-12-16 21:26:33      TRUE 2022-12-16 21:00:00
## 4115 2022-12-16 21:26:33      TRUE 2022-12-16 21:00:00
## 4116 2022-12-16 21:26:32      TRUE 2022-12-16 21:00:00
## 4117 2022-12-16 21:26:31      TRUE 2022-12-16 21:00:00
## 4118 2022-12-16 21:26:29      TRUE 2022-12-16 21:00:00
## 4119 2022-12-16 21:26:27      TRUE 2022-12-16 21:00:00
## 4120 2022-12-16 21:26:17      TRUE 2022-12-16 21:00:00
## 4121 2022-12-16 21:26:00      TRUE 2022-12-16 21:00:00
## 4122 2022-12-16 21:25:58      TRUE 2022-12-16 21:00:00
## 4123 2022-12-16 21:25:56      TRUE 2022-12-16 21:00:00
## 4124 2022-12-16 21:25:50      TRUE 2022-12-16 21:00:00
## 4125 2022-12-16 21:25:48      TRUE 2022-12-16 21:00:00
## 4126 2022-12-16 21:25:47      TRUE 2022-12-16 21:00:00
## 4127 2022-12-16 21:25:46      TRUE 2022-12-16 21:00:00
## 4128 2022-12-16 21:25:45      TRUE 2022-12-16 21:00:00
## 4129 2022-12-16 21:25:43      TRUE 2022-12-16 21:00:00
## 4130 2022-12-16 21:25:36      TRUE 2022-12-16 21:00:00
## 4131 2022-12-16 21:25:35      TRUE 2022-12-16 21:00:00
## 4132 2022-12-16 21:25:33      TRUE 2022-12-16 21:00:00
## 4133 2022-12-16 21:25:20      TRUE 2022-12-16 21:00:00
## 4134 2022-12-16 21:25:12      TRUE 2022-12-16 21:00:00
## 4135 2022-12-16 21:25:10      TRUE 2022-12-16 21:00:00
## 4136 2022-12-16 21:25:10      TRUE 2022-12-16 21:00:00
## 4137 2022-12-16 21:25:09      TRUE 2022-12-16 21:00:00
## 4138 2022-12-16 21:25:06      TRUE 2022-12-16 21:00:00
## 4139 2022-12-16 21:25:04      TRUE 2022-12-16 21:00:00
## 4140 2022-12-16 21:24:57      TRUE 2022-12-16 21:00:00
## 4141 2022-12-16 21:24:51      TRUE 2022-12-16 21:00:00
## 4142 2022-12-16 21:24:47      TRUE 2022-12-16 21:00:00
## 4143 2022-12-16 21:24:42      TRUE 2022-12-16 21:00:00
## 4144 2022-12-16 21:24:35      TRUE 2022-12-16 21:00:00
## 4145 2022-12-16 21:24:35      TRUE 2022-12-16 21:00:00
## 4146 2022-12-16 21:24:33      TRUE 2022-12-16 21:00:00
## 4147 2022-12-16 21:24:32      TRUE 2022-12-16 21:00:00
## 4148 2022-12-16 21:24:31      TRUE 2022-12-16 21:00:00
## 4149 2022-12-16 21:24:27      TRUE 2022-12-16 21:00:00
## 4150 2022-12-16 21:24:24      TRUE 2022-12-16 21:00:00
## 4151 2022-12-16 21:24:21      TRUE 2022-12-16 21:00:00
## 4152 2022-12-16 21:24:20      TRUE 2022-12-16 21:00:00
## 4153 2022-12-16 21:24:16      TRUE 2022-12-16 21:00:00
## 4154 2022-12-16 21:24:14      TRUE 2022-12-16 21:00:00
## 4155 2022-12-16 21:24:04      TRUE 2022-12-16 21:00:00
## 4156 2022-12-16 21:24:00      TRUE 2022-12-16 21:00:00
## 4157 2022-12-16 21:23:56      TRUE 2022-12-16 21:00:00
## 4158 2022-12-16 21:23:51      TRUE 2022-12-16 21:00:00
## 4159 2022-12-16 21:23:51      TRUE 2022-12-16 21:00:00
## 4160 2022-12-16 21:23:51      TRUE 2022-12-16 21:00:00
## 4161 2022-12-16 21:23:49      TRUE 2022-12-16 21:00:00
## 4162 2022-12-16 21:23:49      TRUE 2022-12-16 21:00:00
## 4163 2022-12-16 21:23:47      TRUE 2022-12-16 21:00:00
## 4164 2022-12-16 21:23:45      TRUE 2022-12-16 21:00:00
## 4165 2022-12-16 21:23:44      TRUE 2022-12-16 21:00:00
## 4166 2022-12-16 21:23:40      TRUE 2022-12-16 21:00:00
## 4167 2022-12-16 21:23:34      TRUE 2022-12-16 21:00:00
## 4168 2022-12-16 21:23:27      TRUE 2022-12-16 21:00:00
## 4169 2022-12-16 21:23:26      TRUE 2022-12-16 21:00:00
## 4170 2022-12-16 21:23:25      TRUE 2022-12-16 21:00:00
## 4171 2022-12-16 21:23:22      TRUE 2022-12-16 21:00:00
## 4172 2022-12-16 21:23:19      TRUE 2022-12-16 21:00:00
## 4173 2022-12-16 21:23:16      TRUE 2022-12-16 21:00:00
## 4174 2022-12-16 21:23:16      TRUE 2022-12-16 21:00:00
## 4175 2022-12-16 21:23:06      TRUE 2022-12-16 21:00:00
## 4176 2022-12-16 21:23:04      TRUE 2022-12-16 21:00:00
## 4177 2022-12-16 21:23:04      TRUE 2022-12-16 21:00:00
## 4178 2022-12-16 21:23:04      TRUE 2022-12-16 21:00:00
## 4179 2022-12-16 21:23:01      TRUE 2022-12-16 21:00:00
## 4180 2022-12-16 21:22:59      TRUE 2022-12-16 21:00:00
## 4181 2022-12-16 21:22:58      TRUE 2022-12-16 21:00:00
## 4182 2022-12-16 21:22:57      TRUE 2022-12-16 21:00:00
## 4183 2022-12-16 21:22:57      TRUE 2022-12-16 21:00:00
## 4184 2022-12-16 21:22:55      TRUE 2022-12-16 21:00:00
## 4185 2022-12-16 21:22:46      TRUE 2022-12-16 21:00:00
## 4186 2022-12-16 21:22:44      TRUE 2022-12-16 21:00:00
## 4187 2022-12-16 21:22:43      TRUE 2022-12-16 21:00:00
## 4188 2022-12-16 21:22:37      TRUE 2022-12-16 21:00:00
## 4189 2022-12-16 21:22:37      TRUE 2022-12-16 21:00:00
## 4190 2022-12-16 21:22:33      TRUE 2022-12-16 21:00:00
## 4191 2022-12-16 21:22:32      TRUE 2022-12-16 21:00:00
## 4192 2022-12-16 21:22:30      TRUE 2022-12-16 21:00:00
## 4193 2022-12-16 21:22:29      TRUE 2022-12-16 21:00:00
## 4194 2022-12-16 21:22:24      TRUE 2022-12-16 21:00:00
## 4195 2022-12-16 21:22:23      TRUE 2022-12-16 21:00:00
## 4196 2022-12-16 21:22:19      TRUE 2022-12-16 21:00:00
## 4197 2022-12-16 21:22:17      TRUE 2022-12-16 21:00:00
## 4198 2022-12-16 21:22:07      TRUE 2022-12-16 21:00:00
## 4199 2022-12-16 21:22:05      TRUE 2022-12-16 21:00:00
## 4200 2022-12-16 21:22:01      TRUE 2022-12-16 21:00:00
## 4201 2022-12-16 21:22:01      TRUE 2022-12-16 21:00:00
## 4202 2022-12-16 21:21:58      TRUE 2022-12-16 21:00:00
## 4203 2022-12-16 21:21:58      TRUE 2022-12-16 21:00:00
## 4204 2022-12-16 21:21:57      TRUE 2022-12-16 21:00:00
## 4205 2022-12-16 21:21:52      TRUE 2022-12-16 21:00:00
## 4206 2022-12-16 21:21:49      TRUE 2022-12-16 21:00:00
## 4207 2022-12-16 21:21:47      TRUE 2022-12-16 21:00:00
## 4208 2022-12-16 21:21:43      TRUE 2022-12-16 21:00:00
## 4209 2022-12-16 21:21:39      TRUE 2022-12-16 21:00:00
## 4210 2022-12-16 21:21:38      TRUE 2022-12-16 21:00:00
## 4211 2022-12-16 21:21:37      TRUE 2022-12-16 21:00:00
## 4212 2022-12-16 21:21:34      TRUE 2022-12-16 21:00:00
## 4213 2022-12-16 21:21:31      TRUE 2022-12-16 21:00:00
## 4214 2022-12-16 21:21:30      TRUE 2022-12-16 21:00:00
## 4215 2022-12-16 21:21:29      TRUE 2022-12-16 21:00:00
## 4216 2022-12-16 21:21:17      TRUE 2022-12-16 21:00:00
## 4217 2022-12-16 21:21:14      TRUE 2022-12-16 21:00:00
## 4218 2022-12-16 21:21:13      TRUE 2022-12-16 21:00:00
## 4219 2022-12-16 21:21:10      TRUE 2022-12-16 21:00:00
## 4220 2022-12-16 21:20:53      TRUE 2022-12-16 21:00:00
## 4221 2022-12-16 21:20:50      TRUE 2022-12-16 21:00:00
## 4222 2022-12-16 21:20:43      TRUE 2022-12-16 21:00:00
## 4223 2022-12-16 21:20:41      TRUE 2022-12-16 21:00:00
## 4224 2022-12-16 21:20:40      TRUE 2022-12-16 21:00:00
## 4225 2022-12-16 21:20:40      TRUE 2022-12-16 21:00:00
## 4226 2022-12-16 21:20:39      TRUE 2022-12-16 21:00:00
## 4227 2022-12-16 21:20:38      TRUE 2022-12-16 21:00:00
## 4228 2022-12-16 21:20:36      TRUE 2022-12-16 21:00:00
## 4229 2022-12-16 21:20:35      TRUE 2022-12-16 21:00:00
## 4230 2022-12-16 21:20:33      TRUE 2022-12-16 21:00:00
## 4231 2022-12-16 21:20:33      TRUE 2022-12-16 21:00:00
## 4232 2022-12-16 21:20:31      TRUE 2022-12-16 21:00:00
## 4233 2022-12-16 21:20:31      TRUE 2022-12-16 21:00:00
## 4234 2022-12-16 21:20:31      TRUE 2022-12-16 21:00:00
## 4235 2022-12-16 21:20:30      TRUE 2022-12-16 21:00:00
## 4236 2022-12-16 21:20:26      TRUE 2022-12-16 21:00:00
## 4237 2022-12-16 21:20:23      TRUE 2022-12-16 21:00:00
## 4238 2022-12-16 21:20:18      TRUE 2022-12-16 21:00:00
## 4239 2022-12-16 21:20:15      TRUE 2022-12-16 21:00:00
## 4240 2022-12-16 21:20:13      TRUE 2022-12-16 21:00:00
## 4241 2022-12-16 21:20:10      TRUE 2022-12-16 21:00:00
## 4242 2022-12-16 21:20:09      TRUE 2022-12-16 21:00:00
## 4243 2022-12-16 21:20:08      TRUE 2022-12-16 21:00:00
## 4244 2022-12-16 21:20:03      TRUE 2022-12-16 21:00:00
## 4245 2022-12-16 21:20:02      TRUE 2022-12-16 21:00:00
## 4246 2022-12-16 21:20:01      TRUE 2022-12-16 21:00:00
## 4247 2022-12-16 21:20:00      TRUE 2022-12-16 21:00:00
## 4248 2022-12-16 21:20:00      TRUE 2022-12-16 21:00:00
## 4249 2022-12-16 21:19:54      TRUE 2022-12-16 21:00:00
## 4250 2022-12-16 21:19:50      TRUE 2022-12-16 21:00:00
## 4251 2022-12-16 21:19:49      TRUE 2022-12-16 21:00:00
## 4252 2022-12-16 21:19:49      TRUE 2022-12-16 21:00:00
## 4253 2022-12-16 21:19:41      TRUE 2022-12-16 21:00:00
## 4254 2022-12-16 21:19:39      TRUE 2022-12-16 21:00:00
## 4255 2022-12-16 21:19:39      TRUE 2022-12-16 21:00:00
## 4256 2022-12-16 21:19:38      TRUE 2022-12-16 21:00:00
## 4257 2022-12-16 21:19:36      TRUE 2022-12-16 21:00:00
## 4258 2022-12-16 21:19:34      TRUE 2022-12-16 21:00:00
## 4259 2022-12-16 21:19:29      TRUE 2022-12-16 21:00:00
## 4260 2022-12-16 21:19:27      TRUE 2022-12-16 21:00:00
## 4261 2022-12-16 21:19:26      TRUE 2022-12-16 21:00:00
## 4262 2022-12-16 21:19:23      TRUE 2022-12-16 21:00:00
## 4263 2022-12-16 21:19:18      TRUE 2022-12-16 21:00:00
## 4264 2022-12-16 21:19:18      TRUE 2022-12-16 21:00:00
## 4265 2022-12-16 21:19:13      TRUE 2022-12-16 21:00:00
## 4266 2022-12-16 21:19:13      TRUE 2022-12-16 21:00:00
## 4267 2022-12-16 21:19:06      TRUE 2022-12-16 21:00:00
## 4268 2022-12-16 21:19:05      TRUE 2022-12-16 21:00:00
## 4269 2022-12-16 21:18:59      TRUE 2022-12-16 21:00:00
## 4270 2022-12-16 21:18:55      TRUE 2022-12-16 21:00:00
## 4271 2022-12-16 21:18:48      TRUE 2022-12-16 21:00:00
## 4272 2022-12-16 21:18:43      TRUE 2022-12-16 21:00:00
## 4273 2022-12-16 21:18:43      TRUE 2022-12-16 21:00:00
## 4274 2022-12-16 21:18:40      TRUE 2022-12-16 21:00:00
## 4275 2022-12-16 21:18:38      TRUE 2022-12-16 21:00:00
## 4276 2022-12-16 21:18:35      TRUE 2022-12-16 21:00:00
## 4277 2022-12-16 21:18:32      TRUE 2022-12-16 21:00:00
## 4278 2022-12-16 21:18:30      TRUE 2022-12-16 21:00:00
## 4279 2022-12-16 21:18:26      TRUE 2022-12-16 21:00:00
## 4280 2022-12-16 21:18:21      TRUE 2022-12-16 21:00:00
## 4281 2022-12-16 21:18:17      TRUE 2022-12-16 21:00:00
## 4282 2022-12-16 21:18:16      TRUE 2022-12-16 21:00:00
## 4283 2022-12-16 21:18:16      TRUE 2022-12-16 21:00:00
## 4284 2022-12-16 21:18:13      TRUE 2022-12-16 21:00:00
## 4285 2022-12-16 21:18:10      TRUE 2022-12-16 21:00:00
## 4286 2022-12-16 21:18:06      TRUE 2022-12-16 21:00:00
## 4287 2022-12-16 21:18:06      TRUE 2022-12-16 21:00:00
## 4288 2022-12-16 21:18:05      TRUE 2022-12-16 21:00:00
## 4289 2022-12-16 21:18:04      TRUE 2022-12-16 21:00:00
## 4290 2022-12-16 21:18:02      TRUE 2022-12-16 21:00:00
## 4291 2022-12-16 21:17:53      TRUE 2022-12-16 21:00:00
## 4292 2022-12-16 21:17:43      TRUE 2022-12-16 21:00:00
## 4293 2022-12-16 21:17:42      TRUE 2022-12-16 21:00:00
## 4294 2022-12-16 21:17:38      TRUE 2022-12-16 21:00:00
## 4295 2022-12-16 21:17:32      TRUE 2022-12-16 21:00:00
## 4296 2022-12-16 21:17:27      TRUE 2022-12-16 21:00:00
## 4297 2022-12-16 21:17:23      TRUE 2022-12-16 21:00:00
## 4298 2022-12-16 21:17:16      TRUE 2022-12-16 21:00:00
## 4299 2022-12-16 21:17:09      TRUE 2022-12-16 21:00:00
## 4300 2022-12-16 21:17:01      TRUE 2022-12-16 21:00:00
## 4301 2022-12-16 21:17:00      TRUE 2022-12-16 21:00:00
## 4302 2022-12-16 21:16:57      TRUE 2022-12-16 21:00:00
## 4303 2022-12-16 21:16:54      TRUE 2022-12-16 21:00:00
## 4304 2022-12-16 21:16:42      TRUE 2022-12-16 21:00:00
## 4305 2022-12-16 21:16:39      TRUE 2022-12-16 21:00:00
## 4306 2022-12-16 21:16:30      TRUE 2022-12-16 21:00:00
## 4307 2022-12-16 21:16:23      TRUE 2022-12-16 21:00:00
## 4308 2022-12-16 21:16:22      TRUE 2022-12-16 21:00:00
## 4309 2022-12-16 21:16:20      TRUE 2022-12-16 21:00:00
## 4310 2022-12-16 21:16:19      TRUE 2022-12-16 21:00:00
## 4311 2022-12-16 21:16:17      TRUE 2022-12-16 21:00:00
## 4312 2022-12-16 21:16:15      TRUE 2022-12-16 21:00:00
## 4313 2022-12-16 21:16:13      TRUE 2022-12-16 21:00:00
## 4314 2022-12-16 21:16:11      TRUE 2022-12-16 21:00:00
## 4315 2022-12-16 21:16:09      TRUE 2022-12-16 21:00:00
## 4316 2022-12-16 21:16:09      TRUE 2022-12-16 21:00:00
## 4317 2022-12-16 21:16:08      TRUE 2022-12-16 21:00:00
## 4318 2022-12-16 21:16:03      TRUE 2022-12-16 21:00:00
## 4319 2022-12-16 21:16:03      TRUE 2022-12-16 21:00:00
## 4320 2022-12-16 21:16:03      TRUE 2022-12-16 21:00:00
## 4321 2022-12-16 21:16:03      TRUE 2022-12-16 21:00:00
## 4322 2022-12-16 21:15:58      TRUE 2022-12-16 21:00:00
## 4323 2022-12-16 21:15:58      TRUE 2022-12-16 21:00:00
## 4324 2022-12-16 21:15:56      TRUE 2022-12-16 21:00:00
## 4325 2022-12-16 21:15:52      TRUE 2022-12-16 21:00:00
## 4326 2022-12-16 21:15:50      TRUE 2022-12-16 21:00:00
## 4327 2022-12-16 21:15:49      TRUE 2022-12-16 21:00:00
## 4328 2022-12-16 21:15:48      TRUE 2022-12-16 21:00:00
## 4329 2022-12-16 21:15:46      TRUE 2022-12-16 21:00:00
## 4330 2022-12-16 21:15:44      TRUE 2022-12-16 21:00:00
## 4331 2022-12-16 21:15:39      TRUE 2022-12-16 21:00:00
## 4332 2022-12-16 21:15:35      TRUE 2022-12-16 21:00:00
## 4333 2022-12-16 21:15:25      TRUE 2022-12-16 21:00:00
## 4334 2022-12-16 21:15:25      TRUE 2022-12-16 21:00:00
## 4335 2022-12-16 21:15:24      TRUE 2022-12-16 21:00:00
## 4336 2022-12-16 21:15:21      TRUE 2022-12-16 21:00:00
## 4337 2022-12-16 21:15:21      TRUE 2022-12-16 21:00:00
## 4338 2022-12-16 21:15:18      TRUE 2022-12-16 21:00:00
## 4339 2022-12-16 21:15:06      TRUE 2022-12-16 21:00:00
## 4340 2022-12-16 21:15:06      TRUE 2022-12-16 21:00:00
## 4341 2022-12-16 21:14:54      TRUE 2022-12-16 21:00:00
## 4342 2022-12-16 21:14:51      TRUE 2022-12-16 21:00:00
## 4343 2022-12-16 21:14:48      TRUE 2022-12-16 21:00:00
## 4344 2022-12-16 21:14:42      TRUE 2022-12-16 21:00:00
## 4345 2022-12-16 21:14:35      TRUE 2022-12-16 21:00:00
## 4346 2022-12-16 21:14:35      TRUE 2022-12-16 21:00:00
## 4347 2022-12-16 21:14:30      TRUE 2022-12-16 21:00:00
## 4348 2022-12-16 21:14:29      TRUE 2022-12-16 21:00:00
## 4349 2022-12-16 21:14:29      TRUE 2022-12-16 21:00:00
## 4350 2022-12-16 21:14:28      TRUE 2022-12-16 21:00:00
## 4351 2022-12-16 21:14:28      TRUE 2022-12-16 21:00:00
## 4352 2022-12-16 21:14:23      TRUE 2022-12-16 21:00:00
## 4353 2022-12-16 21:14:22      TRUE 2022-12-16 21:00:00
## 4354 2022-12-16 21:14:18      TRUE 2022-12-16 21:00:00
## 4355 2022-12-16 21:14:17      TRUE 2022-12-16 21:00:00
## 4356 2022-12-16 21:14:16      TRUE 2022-12-16 21:00:00
## 4357 2022-12-16 21:14:11      TRUE 2022-12-16 21:00:00
## 4358 2022-12-16 21:14:08      TRUE 2022-12-16 21:00:00
## 4359 2022-12-16 21:14:04      TRUE 2022-12-16 21:00:00
## 4360 2022-12-16 21:13:58      TRUE 2022-12-16 21:00:00
## 4361 2022-12-16 21:13:57      TRUE 2022-12-16 21:00:00
## 4362 2022-12-16 21:13:55      TRUE 2022-12-16 21:00:00
## 4363 2022-12-16 21:13:55      TRUE 2022-12-16 21:00:00
## 4364 2022-12-16 21:13:53      TRUE 2022-12-16 21:00:00
## 4365 2022-12-16 21:13:50      TRUE 2022-12-16 21:00:00
## 4366 2022-12-16 21:13:46      TRUE 2022-12-16 21:00:00
## 4367 2022-12-16 21:13:46      TRUE 2022-12-16 21:00:00
## 4368 2022-12-16 21:13:45      TRUE 2022-12-16 21:00:00
## 4369 2022-12-16 21:13:41      TRUE 2022-12-16 21:00:00
## 4370 2022-12-16 21:13:37      TRUE 2022-12-16 21:00:00
## 4371 2022-12-16 21:13:36      TRUE 2022-12-16 21:00:00
## 4372 2022-12-16 21:13:35      TRUE 2022-12-16 21:00:00
## 4373 2022-12-16 21:13:35      TRUE 2022-12-16 21:00:00
## 4374 2022-12-16 21:13:34      TRUE 2022-12-16 21:00:00
## 4375 2022-12-16 21:13:31      TRUE 2022-12-16 21:00:00
## 4376 2022-12-16 21:13:31      TRUE 2022-12-16 21:00:00
## 4377 2022-12-16 21:13:28      TRUE 2022-12-16 21:00:00
## 4378 2022-12-16 21:13:22      TRUE 2022-12-16 21:00:00
## 4379 2022-12-16 21:13:21      TRUE 2022-12-16 21:00:00
## 4380 2022-12-16 21:13:20      TRUE 2022-12-16 21:00:00
## 4381 2022-12-16 21:13:20      TRUE 2022-12-16 21:00:00
## 4382 2022-12-16 21:13:19      TRUE 2022-12-16 21:00:00
## 4383 2022-12-16 21:13:13      TRUE 2022-12-16 21:00:00
## 4384 2022-12-16 21:13:13      TRUE 2022-12-16 21:00:00
## 4385 2022-12-16 21:13:11      TRUE 2022-12-16 21:00:00
## 4386 2022-12-16 21:13:10      TRUE 2022-12-16 21:00:00
## 4387 2022-12-16 21:13:03      TRUE 2022-12-16 21:00:00
## 4388 2022-12-16 21:13:02      TRUE 2022-12-16 21:00:00
## 4389 2022-12-16 21:12:56      TRUE 2022-12-16 21:00:00
## 4390 2022-12-16 21:12:54      TRUE 2022-12-16 21:00:00
## 4391 2022-12-16 21:12:52      TRUE 2022-12-16 21:00:00
## 4392 2022-12-16 21:12:49      TRUE 2022-12-16 21:00:00
## 4393 2022-12-16 21:12:47      TRUE 2022-12-16 21:00:00
## 4394 2022-12-16 21:12:45      TRUE 2022-12-16 21:00:00
## 4395 2022-12-16 21:12:43      TRUE 2022-12-16 21:00:00
## 4396 2022-12-16 21:12:43      TRUE 2022-12-16 21:00:00
## 4397 2022-12-16 21:12:42      TRUE 2022-12-16 21:00:00
## 4398 2022-12-16 21:12:42      TRUE 2022-12-16 21:00:00
## 4399 2022-12-16 21:12:40      TRUE 2022-12-16 21:00:00
## 4400 2022-12-16 21:12:40      TRUE 2022-12-16 21:00:00
## 4401 2022-12-16 21:12:39      TRUE 2022-12-16 21:00:00
## 4402 2022-12-16 21:12:34      TRUE 2022-12-16 21:00:00
## 4403 2022-12-16 21:12:28      TRUE 2022-12-16 21:00:00
## 4404 2022-12-16 21:12:27      TRUE 2022-12-16 21:00:00
## 4405 2022-12-16 21:12:19      TRUE 2022-12-16 21:00:00
## 4406 2022-12-16 21:12:19      TRUE 2022-12-16 21:00:00
## 4407 2022-12-16 21:12:18      TRUE 2022-12-16 21:00:00
## 4408 2022-12-16 21:12:15      TRUE 2022-12-16 21:00:00
## 4409 2022-12-16 21:12:14      TRUE 2022-12-16 21:00:00
## 4410 2022-12-16 21:12:13      TRUE 2022-12-16 21:00:00
## 4411 2022-12-16 21:12:11      TRUE 2022-12-16 21:00:00
## 4412 2022-12-16 21:12:11      TRUE 2022-12-16 21:00:00
## 4413 2022-12-16 21:12:07      TRUE 2022-12-16 21:00:00
## 4414 2022-12-16 21:12:02      TRUE 2022-12-16 21:00:00
## 4415 2022-12-16 21:11:57      TRUE 2022-12-16 21:00:00
## 4416 2022-12-16 21:11:50      TRUE 2022-12-16 21:00:00
## 4417 2022-12-16 21:11:50      TRUE 2022-12-16 21:00:00
## 4418 2022-12-16 21:11:49      TRUE 2022-12-16 21:00:00
## 4419 2022-12-16 21:11:48      TRUE 2022-12-16 21:00:00
## 4420 2022-12-16 21:11:48      TRUE 2022-12-16 21:00:00
## 4421 2022-12-16 21:11:45      TRUE 2022-12-16 21:00:00
## 4422 2022-12-16 21:11:44      TRUE 2022-12-16 21:00:00
## 4423 2022-12-16 21:11:40      TRUE 2022-12-16 21:00:00
## 4424 2022-12-16 21:11:31      TRUE 2022-12-16 21:00:00
## 4425 2022-12-16 21:11:27      TRUE 2022-12-16 21:00:00
## 4426 2022-12-16 21:11:27      TRUE 2022-12-16 21:00:00
## 4427 2022-12-16 21:11:22      TRUE 2022-12-16 21:00:00
## 4428 2022-12-16 21:11:21      TRUE 2022-12-16 21:00:00
## 4429 2022-12-16 21:11:18      TRUE 2022-12-16 21:00:00
## 4430 2022-12-16 21:11:15      TRUE 2022-12-16 21:00:00
## 4431 2022-12-16 21:11:11      TRUE 2022-12-16 21:00:00
## 4432 2022-12-16 21:11:11      TRUE 2022-12-16 21:00:00
## 4433 2022-12-16 21:11:09      TRUE 2022-12-16 21:00:00
## 4434 2022-12-16 21:11:06      TRUE 2022-12-16 21:00:00
## 4435 2022-12-16 21:11:03      TRUE 2022-12-16 21:00:00
## 4436 2022-12-16 21:10:57      TRUE 2022-12-16 21:00:00
## 4437 2022-12-16 21:10:56      TRUE 2022-12-16 21:00:00
## 4438 2022-12-16 21:10:53      TRUE 2022-12-16 21:00:00
## 4439 2022-12-16 21:10:53      TRUE 2022-12-16 21:00:00
## 4440 2022-12-16 21:10:50      TRUE 2022-12-16 21:00:00
## 4441 2022-12-16 21:10:48      TRUE 2022-12-16 21:00:00
## 4442 2022-12-16 21:10:48      TRUE 2022-12-16 21:00:00
## 4443 2022-12-16 21:10:45      TRUE 2022-12-16 21:00:00
## 4444 2022-12-16 21:10:40      TRUE 2022-12-16 21:00:00
## 4445 2022-12-16 21:10:40      TRUE 2022-12-16 21:00:00
## 4446 2022-12-16 21:10:35      TRUE 2022-12-16 21:00:00
## 4447 2022-12-16 21:10:34      TRUE 2022-12-16 21:00:00
## 4448 2022-12-16 21:10:33      TRUE 2022-12-16 21:00:00
## 4449 2022-12-16 21:10:32      TRUE 2022-12-16 21:00:00
## 4450 2022-12-16 21:10:31      TRUE 2022-12-16 21:00:00
## 4451 2022-12-16 21:10:28      TRUE 2022-12-16 21:00:00
## 4452 2022-12-16 21:10:22      TRUE 2022-12-16 21:00:00
## 4453 2022-12-16 21:10:11      TRUE 2022-12-16 21:00:00
## 4454 2022-12-16 21:10:08      TRUE 2022-12-16 21:00:00
## 4455 2022-12-16 21:10:04      TRUE 2022-12-16 21:00:00
## 4456 2022-12-16 21:10:03      TRUE 2022-12-16 21:00:00
## 4457 2022-12-16 21:09:54      TRUE 2022-12-16 21:00:00
## 4458 2022-12-16 21:09:54      TRUE 2022-12-16 21:00:00
## 4459 2022-12-16 21:09:48      TRUE 2022-12-16 21:00:00
## 4460 2022-12-16 21:09:46      TRUE 2022-12-16 21:00:00
## 4461 2022-12-16 21:09:46      TRUE 2022-12-16 21:00:00
## 4462 2022-12-16 21:09:45      TRUE 2022-12-16 21:00:00
## 4463 2022-12-16 21:09:35      TRUE 2022-12-16 21:00:00
## 4464 2022-12-16 21:09:32      TRUE 2022-12-16 21:00:00
## 4465 2022-12-16 21:09:29      TRUE 2022-12-16 21:00:00
## 4466 2022-12-16 21:09:28      TRUE 2022-12-16 21:00:00
## 4467 2022-12-16 21:09:10      TRUE 2022-12-16 21:00:00
## 4468 2022-12-16 21:09:09      TRUE 2022-12-16 21:00:00
## 4469 2022-12-16 21:09:02      TRUE 2022-12-16 21:00:00
## 4470 2022-12-16 21:08:56      TRUE 2022-12-16 21:00:00
## 4471 2022-12-16 21:08:50      TRUE 2022-12-16 21:00:00
## 4472 2022-12-16 21:08:48      TRUE 2022-12-16 21:00:00
## 4473 2022-12-16 21:08:45      TRUE 2022-12-16 21:00:00
## 4474 2022-12-16 21:08:44      TRUE 2022-12-16 21:00:00
## 4475 2022-12-16 21:08:41      TRUE 2022-12-16 21:00:00
## 4476 2022-12-16 21:08:39      TRUE 2022-12-16 21:00:00
## 4477 2022-12-16 21:08:38      TRUE 2022-12-16 21:00:00
## 4478 2022-12-16 21:08:36      TRUE 2022-12-16 21:00:00
## 4479 2022-12-16 21:08:35      TRUE 2022-12-16 21:00:00
## 4480 2022-12-16 21:08:31      TRUE 2022-12-16 21:00:00
## 4481 2022-12-16 21:08:31      TRUE 2022-12-16 21:00:00
## 4482 2022-12-16 21:08:30      TRUE 2022-12-16 21:00:00
## 4483 2022-12-16 21:08:24      TRUE 2022-12-16 21:00:00
## 4484 2022-12-16 21:08:15      TRUE 2022-12-16 21:00:00
## 4485 2022-12-16 21:08:13      TRUE 2022-12-16 21:00:00
## 4486 2022-12-16 21:08:10      TRUE 2022-12-16 21:00:00
## 4487 2022-12-16 21:08:09      TRUE 2022-12-16 21:00:00
## 4488 2022-12-16 21:08:08      TRUE 2022-12-16 21:00:00
## 4489 2022-12-16 21:08:08      TRUE 2022-12-16 21:00:00
## 4490 2022-12-16 21:08:07      TRUE 2022-12-16 21:00:00
## 4491 2022-12-16 21:08:06      TRUE 2022-12-16 21:00:00
## 4492 2022-12-16 21:08:02      TRUE 2022-12-16 21:00:00
## 4493 2022-12-16 21:07:56      TRUE 2022-12-16 21:00:00
## 4494 2022-12-16 21:07:52      TRUE 2022-12-16 21:00:00
## 4495 2022-12-16 21:07:52      TRUE 2022-12-16 21:00:00
## 4496 2022-12-16 21:07:48      TRUE 2022-12-16 21:00:00
## 4497 2022-12-16 21:07:46      TRUE 2022-12-16 21:00:00
## 4498 2022-12-16 21:07:43      TRUE 2022-12-16 21:00:00
## 4499 2022-12-16 21:07:38      TRUE 2022-12-16 21:00:00
## 4500 2022-12-16 21:07:34      TRUE 2022-12-16 21:00:00
## 4501 2022-12-16 21:07:33      TRUE 2022-12-16 21:00:00
## 4502 2022-12-16 21:07:31      TRUE 2022-12-16 21:00:00
## 4503 2022-12-16 21:07:30      TRUE 2022-12-16 21:00:00
## 4504 2022-12-16 21:07:27      TRUE 2022-12-16 21:00:00
## 4505 2022-12-16 21:07:27      TRUE 2022-12-16 21:00:00
## 4506 2022-12-16 21:07:25      TRUE 2022-12-16 21:00:00
## 4507 2022-12-16 21:07:25      TRUE 2022-12-16 21:00:00
## 4508 2022-12-16 21:07:19      TRUE 2022-12-16 21:00:00
## 4509 2022-12-16 21:07:17      TRUE 2022-12-16 21:00:00
## 4510 2022-12-16 21:07:14      TRUE 2022-12-16 21:00:00
## 4511 2022-12-16 21:07:00      TRUE 2022-12-16 21:00:00
## 4512 2022-12-16 21:06:59      TRUE 2022-12-16 21:00:00
## 4513 2022-12-16 21:06:56      TRUE 2022-12-16 21:00:00
## 4514 2022-12-16 21:06:52      TRUE 2022-12-16 21:00:00
## 4515 2022-12-16 21:06:47      TRUE 2022-12-16 21:00:00
## 4516 2022-12-16 21:06:44      TRUE 2022-12-16 21:00:00
## 4517 2022-12-16 21:06:43      TRUE 2022-12-16 21:00:00
## 4518 2022-12-16 21:06:42      TRUE 2022-12-16 21:00:00
## 4519 2022-12-16 21:06:42      TRUE 2022-12-16 21:00:00
## 4520 2022-12-16 21:06:39      TRUE 2022-12-16 21:00:00
## 4521 2022-12-16 21:06:37      TRUE 2022-12-16 21:00:00
## 4522 2022-12-16 21:06:36      TRUE 2022-12-16 21:00:00
## 4523 2022-12-16 21:06:35      TRUE 2022-12-16 21:00:00
## 4524 2022-12-16 21:06:34      TRUE 2022-12-16 21:00:00
## 4525 2022-12-16 21:06:30      TRUE 2022-12-16 21:00:00
## 4526 2022-12-16 21:06:28      TRUE 2022-12-16 21:00:00
## 4527 2022-12-16 21:06:24      TRUE 2022-12-16 21:00:00
## 4528 2022-12-16 21:06:21      TRUE 2022-12-16 21:00:00
## 4529 2022-12-16 21:06:19      TRUE 2022-12-16 21:00:00
## 4530 2022-12-16 21:06:14      TRUE 2022-12-16 21:00:00
## 4531 2022-12-16 21:06:14      TRUE 2022-12-16 21:00:00
## 4532 2022-12-16 21:06:11      TRUE 2022-12-16 21:00:00
## 4533 2022-12-16 21:06:08      TRUE 2022-12-16 21:00:00
## 4534 2022-12-16 21:06:02      TRUE 2022-12-16 21:00:00
## 4535 2022-12-16 21:06:00      TRUE 2022-12-16 21:00:00
## 4536 2022-12-16 21:05:58      TRUE 2022-12-16 21:00:00
## 4537 2022-12-16 21:05:56      TRUE 2022-12-16 21:00:00
## 4538 2022-12-16 21:05:56      TRUE 2022-12-16 21:00:00
## 4539 2022-12-16 21:05:54      TRUE 2022-12-16 21:00:00
## 4540 2022-12-16 21:05:53      TRUE 2022-12-16 21:00:00
## 4541 2022-12-16 21:05:51      TRUE 2022-12-16 21:00:00
## 4542 2022-12-16 21:05:49      TRUE 2022-12-16 21:00:00
## 4543 2022-12-16 21:05:49      TRUE 2022-12-16 21:00:00
## 4544 2022-12-16 21:05:48      TRUE 2022-12-16 21:00:00
## 4545 2022-12-16 21:05:45      TRUE 2022-12-16 21:00:00
## 4546 2022-12-16 21:05:45      TRUE 2022-12-16 21:00:00
## 4547 2022-12-16 21:05:42      TRUE 2022-12-16 21:00:00
## 4548 2022-12-16 21:05:41      TRUE 2022-12-16 21:00:00
## 4549 2022-12-16 21:05:38      TRUE 2022-12-16 21:00:00
## 4550 2022-12-16 21:05:36      TRUE 2022-12-16 21:00:00
## 4551 2022-12-16 21:05:36      TRUE 2022-12-16 21:00:00
## 4552 2022-12-16 21:05:36      TRUE 2022-12-16 21:00:00
## 4553 2022-12-16 21:05:35      TRUE 2022-12-16 21:00:00
## 4554 2022-12-16 21:05:30      TRUE 2022-12-16 21:00:00
## 4555 2022-12-16 21:05:29      TRUE 2022-12-16 21:00:00
## 4556 2022-12-16 21:05:28      TRUE 2022-12-16 21:00:00
## 4557 2022-12-16 21:05:28      TRUE 2022-12-16 21:00:00
## 4558 2022-12-16 21:05:25      TRUE 2022-12-16 21:00:00
## 4559 2022-12-16 21:05:23      TRUE 2022-12-16 21:00:00
## 4560 2022-12-16 21:05:20      TRUE 2022-12-16 21:00:00
## 4561 2022-12-16 21:05:20      TRUE 2022-12-16 21:00:00
## 4562 2022-12-16 21:05:18      TRUE 2022-12-16 21:00:00
## 4563 2022-12-16 21:05:16      TRUE 2022-12-16 21:00:00
## 4564 2022-12-16 21:05:15      TRUE 2022-12-16 21:00:00
## 4565 2022-12-16 21:05:13      TRUE 2022-12-16 21:00:00
## 4566 2022-12-16 21:05:13      TRUE 2022-12-16 21:00:00
## 4567 2022-12-16 21:05:04      TRUE 2022-12-16 21:00:00
## 4568 2022-12-16 21:05:04      TRUE 2022-12-16 21:00:00
## 4569 2022-12-16 21:05:04      TRUE 2022-12-16 21:00:00
## 4570 2022-12-16 21:05:02      TRUE 2022-12-16 21:00:00
## 4571 2022-12-16 21:04:59      TRUE 2022-12-16 21:00:00
## 4572 2022-12-16 21:04:58      TRUE 2022-12-16 21:00:00
## 4573 2022-12-16 21:04:54      TRUE 2022-12-16 21:00:00
## 4574 2022-12-16 21:04:42      TRUE 2022-12-16 21:00:00
## 4575 2022-12-16 21:04:41      TRUE 2022-12-16 21:00:00
## 4576 2022-12-16 21:04:39      TRUE 2022-12-16 21:00:00
## 4577 2022-12-16 21:04:38      TRUE 2022-12-16 21:00:00
## 4578 2022-12-16 21:04:33      TRUE 2022-12-16 21:00:00
## 4579 2022-12-16 21:04:33      TRUE 2022-12-16 21:00:00
## 4580 2022-12-16 21:04:32      TRUE 2022-12-16 21:00:00
## 4581 2022-12-16 21:04:31      TRUE 2022-12-16 21:00:00
## 4582 2022-12-16 21:04:24      TRUE 2022-12-16 21:00:00
## 4583 2022-12-16 21:04:23      TRUE 2022-12-16 21:00:00
## 4584 2022-12-16 21:04:18      TRUE 2022-12-16 21:00:00
## 4585 2022-12-16 21:04:15      TRUE 2022-12-16 21:00:00
## 4586 2022-12-16 21:04:15      TRUE 2022-12-16 21:00:00
## 4587 2022-12-16 21:04:09      TRUE 2022-12-16 21:00:00
## 4588 2022-12-16 21:04:08      TRUE 2022-12-16 21:00:00
## 4589 2022-12-16 21:04:06      TRUE 2022-12-16 21:00:00
## 4590 2022-12-16 21:04:06      TRUE 2022-12-16 21:00:00
## 4591 2022-12-16 21:04:03      TRUE 2022-12-16 21:00:00
## 4592 2022-12-16 21:04:01      TRUE 2022-12-16 21:00:00
## 4593 2022-12-16 21:03:58      TRUE 2022-12-16 21:00:00
## 4594 2022-12-16 21:03:57      TRUE 2022-12-16 21:00:00
## 4595 2022-12-16 21:03:53      TRUE 2022-12-16 21:00:00
## 4596 2022-12-16 21:03:51      TRUE 2022-12-16 21:00:00
## 4597 2022-12-16 21:03:50      TRUE 2022-12-16 21:00:00
## 4598 2022-12-16 21:03:46      TRUE 2022-12-16 21:00:00
## 4599 2022-12-16 21:03:45      TRUE 2022-12-16 21:00:00
## 4600 2022-12-16 21:03:39      TRUE 2022-12-16 21:00:00
## 4601 2022-12-16 21:03:36      TRUE 2022-12-16 21:00:00
## 4602 2022-12-16 21:03:30      TRUE 2022-12-16 21:00:00
## 4603 2022-12-16 21:03:29      TRUE 2022-12-16 21:00:00
## 4604 2022-12-16 21:03:21      TRUE 2022-12-16 21:00:00
## 4605 2022-12-16 21:03:13      TRUE 2022-12-16 21:00:00
## 4606 2022-12-16 21:03:06      TRUE 2022-12-16 21:00:00
## 4607 2022-12-16 21:02:58      TRUE 2022-12-16 21:00:00
## 4608 2022-12-16 21:02:55      TRUE 2022-12-16 21:00:00
## 4609 2022-12-16 21:02:54      TRUE 2022-12-16 21:00:00
## 4610 2022-12-16 21:02:53      TRUE 2022-12-16 21:00:00
## 4611 2022-12-16 21:02:53      TRUE 2022-12-16 21:00:00
## 4612 2022-12-16 21:02:53      TRUE 2022-12-16 21:00:00
## 4613 2022-12-16 21:02:48      TRUE 2022-12-16 21:00:00
## 4614 2022-12-16 21:02:44      TRUE 2022-12-16 21:00:00
## 4615 2022-12-16 21:02:44      TRUE 2022-12-16 21:00:00
## 4616 2022-12-16 21:02:42      TRUE 2022-12-16 21:00:00
## 4617 2022-12-16 21:02:33      TRUE 2022-12-16 21:00:00
## 4618 2022-12-16 21:02:29      TRUE 2022-12-16 21:00:00
## 4619 2022-12-16 21:02:28      TRUE 2022-12-16 21:00:00
## 4620 2022-12-16 21:02:26      TRUE 2022-12-16 21:00:00
## 4621 2022-12-16 21:02:21      TRUE 2022-12-16 21:00:00
## 4622 2022-12-16 21:02:19      TRUE 2022-12-16 21:00:00
## 4623 2022-12-16 21:02:13      TRUE 2022-12-16 21:00:00
## 4624 2022-12-16 21:02:11      TRUE 2022-12-16 21:00:00
## 4625 2022-12-16 21:02:11      TRUE 2022-12-16 21:00:00
## 4626 2022-12-16 21:02:10      TRUE 2022-12-16 21:00:00
## 4627 2022-12-16 21:02:09      TRUE 2022-12-16 21:00:00
## 4628 2022-12-16 21:02:09      TRUE 2022-12-16 21:00:00
## 4629 2022-12-16 21:02:07      TRUE 2022-12-16 21:00:00
## 4630 2022-12-16 21:02:02      TRUE 2022-12-16 21:00:00
## 4631 2022-12-16 21:02:01      TRUE 2022-12-16 21:00:00
## 4632 2022-12-16 21:02:00      TRUE 2022-12-16 21:00:00
## 4633 2022-12-16 21:01:56      TRUE 2022-12-16 21:00:00
## 4634 2022-12-16 21:01:52      TRUE 2022-12-16 21:00:00
## 4635 2022-12-16 21:01:43      TRUE 2022-12-16 21:00:00
## 4636 2022-12-16 21:01:42      TRUE 2022-12-16 21:00:00
## 4637 2022-12-16 21:01:41      TRUE 2022-12-16 21:00:00
## 4638 2022-12-16 21:01:40      TRUE 2022-12-16 21:00:00
## 4639 2022-12-16 21:01:39      TRUE 2022-12-16 21:00:00
## 4640 2022-12-16 21:01:21      TRUE 2022-12-16 21:00:00
## 4641 2022-12-16 21:01:10      TRUE 2022-12-16 21:00:00
## 4642 2022-12-16 21:01:00      TRUE 2022-12-16 21:00:00
## 4643 2022-12-16 21:00:55      TRUE 2022-12-16 21:00:00
## 4644 2022-12-16 21:00:52      TRUE 2022-12-16 21:00:00
## 4645 2022-12-16 21:00:43      TRUE 2022-12-16 21:00:00
## 4646 2022-12-16 21:00:41      TRUE 2022-12-16 21:00:00
## 4647 2022-12-16 21:00:37      TRUE 2022-12-16 21:00:00
## 4648 2022-12-16 21:00:35      TRUE 2022-12-16 21:00:00
## 4649 2022-12-16 21:00:33      TRUE 2022-12-16 21:00:00
## 4650 2022-12-16 21:00:26      TRUE 2022-12-16 21:00:00
## 4651 2022-12-16 21:00:26      TRUE 2022-12-16 21:00:00
## 4652 2022-12-16 21:00:24      TRUE 2022-12-16 21:00:00
## 4653 2022-12-16 21:00:23      TRUE 2022-12-16 21:00:00
## 4654 2022-12-16 21:00:11      TRUE 2022-12-16 21:00:00
## 4655 2022-12-16 21:00:04      TRUE 2022-12-16 21:00:00
## 4656 2022-12-16 20:59:58      TRUE 2022-12-16 21:00:00
## 4657 2022-12-16 20:59:58      TRUE 2022-12-16 21:00:00
## 4658 2022-12-16 20:59:56      TRUE 2022-12-16 21:00:00
## 4659 2022-12-16 20:59:49      TRUE 2022-12-16 21:00:00
## 4660 2022-12-16 20:59:45      TRUE 2022-12-16 21:00:00
## 4661 2022-12-16 20:59:38      TRUE 2022-12-16 21:00:00
## 4662 2022-12-16 20:59:37      TRUE 2022-12-16 21:00:00
## 4663 2022-12-16 20:59:33      TRUE 2022-12-16 21:00:00
## 4664 2022-12-16 20:59:33      TRUE 2022-12-16 21:00:00
## 4665 2022-12-16 20:59:29      TRUE 2022-12-16 21:00:00
## 4666 2022-12-16 20:59:27      TRUE 2022-12-16 21:00:00
## 4667 2022-12-16 20:59:26      TRUE 2022-12-16 21:00:00
## 4668 2022-12-16 20:59:22      TRUE 2022-12-16 21:00:00
## 4669 2022-12-16 20:59:22      TRUE 2022-12-16 21:00:00
## 4670 2022-12-16 20:59:19      TRUE 2022-12-16 21:00:00
## 4671 2022-12-16 20:59:15      TRUE 2022-12-16 21:00:00
## 4672 2022-12-16 20:59:13      TRUE 2022-12-16 21:00:00
## 4673 2022-12-16 20:59:06      TRUE 2022-12-16 21:00:00
## 4674 2022-12-16 20:59:04      TRUE 2022-12-16 21:00:00
## 4675 2022-12-16 20:59:02      TRUE 2022-12-16 21:00:00
## 4676 2022-12-16 20:58:57      TRUE 2022-12-16 21:00:00
## 4677 2022-12-16 20:58:55      TRUE 2022-12-16 21:00:00
## 4678 2022-12-16 20:58:52      TRUE 2022-12-16 21:00:00
## 4679 2022-12-16 20:58:52      TRUE 2022-12-16 21:00:00
## 4680 2022-12-16 20:58:43      TRUE 2022-12-16 21:00:00
## 4681 2022-12-16 20:58:26      TRUE 2022-12-16 21:00:00
## 4682 2022-12-16 20:58:21      TRUE 2022-12-16 21:00:00
## 4683 2022-12-16 20:58:20      TRUE 2022-12-16 21:00:00
## 4684 2022-12-16 20:58:13      TRUE 2022-12-16 21:00:00
## 4685 2022-12-16 20:58:01      TRUE 2022-12-16 21:00:00
## 4686 2022-12-16 20:58:00      TRUE 2022-12-16 21:00:00
## 4687 2022-12-16 20:58:00      TRUE 2022-12-16 21:00:00
## 4688 2022-12-16 20:57:58      TRUE 2022-12-16 21:00:00
## 4689 2022-12-16 20:57:53      TRUE 2022-12-16 21:00:00
## 4690 2022-12-16 20:57:52      TRUE 2022-12-16 21:00:00
## 4691 2022-12-16 20:57:50      TRUE 2022-12-16 21:00:00
## 4692 2022-12-16 20:57:48      TRUE 2022-12-16 21:00:00
## 4693 2022-12-16 20:57:44      TRUE 2022-12-16 21:00:00
## 4694 2022-12-16 20:57:35      TRUE 2022-12-16 21:00:00
## 4695 2022-12-16 20:57:32      TRUE 2022-12-16 21:00:00
## 4696 2022-12-16 20:57:29      TRUE 2022-12-16 21:00:00
## 4697 2022-12-16 20:57:25      TRUE 2022-12-16 21:00:00
## 4698 2022-12-16 20:57:22      TRUE 2022-12-16 21:00:00
## 4699 2022-12-16 20:57:17      TRUE 2022-12-16 21:00:00
## 4700 2022-12-16 20:57:16      TRUE 2022-12-16 21:00:00
## 4701 2022-12-16 20:57:04      TRUE 2022-12-16 21:00:00
## 4702 2022-12-16 20:57:01      TRUE 2022-12-16 21:00:00
## 4703 2022-12-16 20:56:56      TRUE 2022-12-16 21:00:00
## 4704 2022-12-16 20:56:56      TRUE 2022-12-16 21:00:00
## 4705 2022-12-16 20:56:41      TRUE 2022-12-16 21:00:00
## 4706 2022-12-16 20:56:33      TRUE 2022-12-16 21:00:00
## 4707 2022-12-16 20:56:29      TRUE 2022-12-16 21:00:00
## 4708 2022-12-16 20:56:25      TRUE 2022-12-16 21:00:00
## 4709 2022-12-16 20:56:23      TRUE 2022-12-16 21:00:00
## 4710 2022-12-16 20:56:23      TRUE 2022-12-16 21:00:00
## 4711 2022-12-16 20:56:22      TRUE 2022-12-16 21:00:00
## 4712 2022-12-16 20:56:20      TRUE 2022-12-16 21:00:00
## 4713 2022-12-16 20:56:18      TRUE 2022-12-16 21:00:00
## 4714 2022-12-16 20:56:14      TRUE 2022-12-16 21:00:00
## 4715 2022-12-16 20:56:12      TRUE 2022-12-16 21:00:00
## 4716 2022-12-16 20:56:08      TRUE 2022-12-16 21:00:00
## 4717 2022-12-16 20:56:07      TRUE 2022-12-16 21:00:00
## 4718 2022-12-16 20:56:03      TRUE 2022-12-16 21:00:00
## 4719 2022-12-16 20:56:02      TRUE 2022-12-16 21:00:00
## 4720 2022-12-16 20:55:56      TRUE 2022-12-16 21:00:00
## 4721 2022-12-16 20:55:46      TRUE 2022-12-16 21:00:00
## 4722 2022-12-16 20:55:43      TRUE 2022-12-16 21:00:00
## 4723 2022-12-16 20:55:43      TRUE 2022-12-16 21:00:00
## 4724 2022-12-16 20:55:40      TRUE 2022-12-16 21:00:00
## 4725 2022-12-16 20:55:37      TRUE 2022-12-16 21:00:00
## 4726 2022-12-16 20:55:33      TRUE 2022-12-16 21:00:00
## 4727 2022-12-16 20:55:32      TRUE 2022-12-16 21:00:00
## 4728 2022-12-16 20:55:32      TRUE 2022-12-16 21:00:00
## 4729 2022-12-16 20:55:25      TRUE 2022-12-16 21:00:00
## 4730 2022-12-16 20:55:21      TRUE 2022-12-16 21:00:00
## 4731 2022-12-16 20:55:20      TRUE 2022-12-16 21:00:00
## 4732 2022-12-16 20:55:19      TRUE 2022-12-16 21:00:00
## 4733 2022-12-16 20:55:18      TRUE 2022-12-16 21:00:00
## 4734 2022-12-16 20:55:16      TRUE 2022-12-16 21:00:00
## 4735 2022-12-16 20:55:08      TRUE 2022-12-16 21:00:00
## 4736 2022-12-16 20:55:02      TRUE 2022-12-16 21:00:00
## 4737 2022-12-16 20:54:57      TRUE 2022-12-16 21:00:00
## 4738 2022-12-16 20:54:51      TRUE 2022-12-16 21:00:00
## 4739 2022-12-16 20:54:49      TRUE 2022-12-16 21:00:00
## 4740 2022-12-16 20:54:45      TRUE 2022-12-16 21:00:00
## 4741 2022-12-16 20:54:45      TRUE 2022-12-16 21:00:00
## 4742 2022-12-16 20:54:44      TRUE 2022-12-16 21:00:00
## 4743 2022-12-16 20:54:39      TRUE 2022-12-16 21:00:00
## 4744 2022-12-16 20:54:38      TRUE 2022-12-16 21:00:00
## 4745 2022-12-16 20:54:38      TRUE 2022-12-16 21:00:00
## 4746 2022-12-16 20:54:37      TRUE 2022-12-16 21:00:00
## 4747 2022-12-16 20:54:33      TRUE 2022-12-16 21:00:00
## 4748 2022-12-16 20:54:32      TRUE 2022-12-16 21:00:00
## 4749 2022-12-16 20:54:31      TRUE 2022-12-16 21:00:00
## 4750 2022-12-16 20:54:22      TRUE 2022-12-16 21:00:00
## 4751 2022-12-16 20:54:19      TRUE 2022-12-16 21:00:00
## 4752 2022-12-16 20:54:13      TRUE 2022-12-16 21:00:00
## 4753 2022-12-16 20:54:09      TRUE 2022-12-16 21:00:00
## 4754 2022-12-16 20:54:09      TRUE 2022-12-16 21:00:00
## 4755 2022-12-16 20:54:08      TRUE 2022-12-16 21:00:00
## 4756 2022-12-16 20:54:01      TRUE 2022-12-16 21:00:00
## 4757 2022-12-16 20:53:59      TRUE 2022-12-16 21:00:00
## 4758 2022-12-16 20:53:53      TRUE 2022-12-16 21:00:00
## 4759 2022-12-16 20:53:52      TRUE 2022-12-16 21:00:00
## 4760 2022-12-16 20:53:46      TRUE 2022-12-16 21:00:00
## 4761 2022-12-16 20:53:29      TRUE 2022-12-16 21:00:00
## 4762 2022-12-16 20:53:22      TRUE 2022-12-16 21:00:00
## 4763 2022-12-16 20:53:18      TRUE 2022-12-16 21:00:00
## 4764 2022-12-16 20:53:13      TRUE 2022-12-16 21:00:00
## 4765 2022-12-16 20:53:12      TRUE 2022-12-16 21:00:00
## 4766 2022-12-16 20:53:06      TRUE 2022-12-16 21:00:00
## 4767 2022-12-16 20:53:03      TRUE 2022-12-16 21:00:00
## 4768 2022-12-16 20:52:57      TRUE 2022-12-16 21:00:00
## 4769 2022-12-16 20:52:48      TRUE 2022-12-16 21:00:00
## 4770 2022-12-16 20:52:44      TRUE 2022-12-16 21:00:00
## 4771 2022-12-16 20:52:43      TRUE 2022-12-16 21:00:00
## 4772 2022-12-16 20:52:38      TRUE 2022-12-16 21:00:00
## 4773 2022-12-16 20:52:35      TRUE 2022-12-16 21:00:00
## 4774 2022-12-16 20:52:33      TRUE 2022-12-16 21:00:00
## 4775 2022-12-16 20:52:30      TRUE 2022-12-16 21:00:00
## 4776 2022-12-16 20:52:29      TRUE 2022-12-16 21:00:00
## 4777 2022-12-16 20:52:20      TRUE 2022-12-16 21:00:00
## 4778 2022-12-16 20:52:18      TRUE 2022-12-16 21:00:00
## 4779 2022-12-16 20:52:15      TRUE 2022-12-16 21:00:00
## 4780 2022-12-16 20:52:07      TRUE 2022-12-16 21:00:00
## 4781 2022-12-16 20:52:04      TRUE 2022-12-16 21:00:00
## 4782 2022-12-16 20:52:01      TRUE 2022-12-16 21:00:00
## 4783 2022-12-16 20:51:58      TRUE 2022-12-16 21:00:00
## 4784 2022-12-16 20:51:54      TRUE 2022-12-16 21:00:00
## 4785 2022-12-16 20:51:48      TRUE 2022-12-16 21:00:00
## 4786 2022-12-16 20:51:46      TRUE 2022-12-16 21:00:00
## 4787 2022-12-16 20:51:42      TRUE 2022-12-16 21:00:00
## 4788 2022-12-16 20:51:38      TRUE 2022-12-16 21:00:00
## 4789 2022-12-16 20:51:34      TRUE 2022-12-16 21:00:00
## 4790 2022-12-16 20:51:34      TRUE 2022-12-16 21:00:00
## 4791 2022-12-16 20:51:33      TRUE 2022-12-16 21:00:00
## 4792 2022-12-16 20:51:30      TRUE 2022-12-16 21:00:00
## 4793 2022-12-16 20:51:25      TRUE 2022-12-16 21:00:00
## 4794 2022-12-16 20:51:22      TRUE 2022-12-16 21:00:00
## 4795 2022-12-16 20:51:12      TRUE 2022-12-16 21:00:00
## 4796 2022-12-16 20:51:03      TRUE 2022-12-16 21:00:00
## 4797 2022-12-16 20:51:03      TRUE 2022-12-16 21:00:00
## 4798 2022-12-16 20:51:01      TRUE 2022-12-16 21:00:00
## 4799 2022-12-16 20:50:57      TRUE 2022-12-16 21:00:00
## 4800 2022-12-16 20:50:50      TRUE 2022-12-16 21:00:00
## 4801 2022-12-16 20:50:47      TRUE 2022-12-16 21:00:00
## 4802 2022-12-16 20:50:46      TRUE 2022-12-16 21:00:00
## 4803 2022-12-16 20:50:36      TRUE 2022-12-16 21:00:00
## 4804 2022-12-16 20:50:35      TRUE 2022-12-16 21:00:00
## 4805 2022-12-16 20:50:22      TRUE 2022-12-16 21:00:00
## 4806 2022-12-16 20:50:19      TRUE 2022-12-16 21:00:00
## 4807 2022-12-16 20:50:04      TRUE 2022-12-16 21:00:00
## 4808 2022-12-16 20:50:02      TRUE 2022-12-16 21:00:00
## 4809 2022-12-16 20:50:01      TRUE 2022-12-16 21:00:00
## 4810 2022-12-16 20:49:47      TRUE 2022-12-16 21:00:00
## 4811 2022-12-16 20:49:44      TRUE 2022-12-16 21:00:00
## 4812 2022-12-16 20:49:36      TRUE 2022-12-16 21:00:00
## 4813 2022-12-16 20:49:19      TRUE 2022-12-16 21:00:00
## 4814 2022-12-16 20:49:18      TRUE 2022-12-16 21:00:00
## 4815 2022-12-16 20:49:17      TRUE 2022-12-16 21:00:00
## 4816 2022-12-16 20:49:13      TRUE 2022-12-16 21:00:00
## 4817 2022-12-16 20:49:09      TRUE 2022-12-16 21:00:00
## 4818 2022-12-16 20:49:09      TRUE 2022-12-16 21:00:00
## 4819 2022-12-16 20:49:01      TRUE 2022-12-16 21:00:00
## 4820 2022-12-16 20:48:53      TRUE 2022-12-16 21:00:00
## 4821 2022-12-16 20:48:41      TRUE 2022-12-16 21:00:00
## 4822 2022-12-16 20:48:37      TRUE 2022-12-16 21:00:00
## 4823 2022-12-16 20:48:34      TRUE 2022-12-16 21:00:00
## 4824 2022-12-16 20:48:33      TRUE 2022-12-16 21:00:00
## 4825 2022-12-16 20:48:29      TRUE 2022-12-16 21:00:00
## 4826 2022-12-16 20:48:28      TRUE 2022-12-16 21:00:00
## 4827 2022-12-16 20:48:18      TRUE 2022-12-16 21:00:00
## 4828 2022-12-16 20:48:12      TRUE 2022-12-16 21:00:00
## 4829 2022-12-16 20:48:09      TRUE 2022-12-16 21:00:00
## 4830 2022-12-16 20:48:06      TRUE 2022-12-16 21:00:00
## 4831 2022-12-16 20:48:06      TRUE 2022-12-16 21:00:00
## 4832 2022-12-16 20:48:01      TRUE 2022-12-16 21:00:00
## 4833 2022-12-16 20:48:01      TRUE 2022-12-16 21:00:00
## 4834 2022-12-16 20:47:56      TRUE 2022-12-16 21:00:00
## 4835 2022-12-16 20:47:48      TRUE 2022-12-16 21:00:00
## 4836 2022-12-16 20:47:46      TRUE 2022-12-16 21:00:00
## 4837 2022-12-16 20:47:45      TRUE 2022-12-16 21:00:00
## 4838 2022-12-16 20:47:36      TRUE 2022-12-16 21:00:00
## 4839 2022-12-16 20:47:35      TRUE 2022-12-16 21:00:00
## 4840 2022-12-16 20:47:30      TRUE 2022-12-16 21:00:00
## 4841 2022-12-16 20:47:29      TRUE 2022-12-16 21:00:00
## 4842 2022-12-16 20:47:23      TRUE 2022-12-16 21:00:00
## 4843 2022-12-16 20:47:23      TRUE 2022-12-16 21:00:00
## 4844 2022-12-16 20:47:19      TRUE 2022-12-16 21:00:00
## 4845 2022-12-16 20:47:15      TRUE 2022-12-16 21:00:00
## 4846 2022-12-16 20:47:11      TRUE 2022-12-16 21:00:00
## 4847 2022-12-16 20:47:09      TRUE 2022-12-16 21:00:00
## 4848 2022-12-16 20:46:59      TRUE 2022-12-16 21:00:00
## 4849 2022-12-16 20:46:56      TRUE 2022-12-16 21:00:00
## 4850 2022-12-16 20:46:55      TRUE 2022-12-16 21:00:00
## 4851 2022-12-16 20:46:51      TRUE 2022-12-16 21:00:00
## 4852 2022-12-16 20:46:51      TRUE 2022-12-16 21:00:00
## 4853 2022-12-16 20:46:46      TRUE 2022-12-16 21:00:00
## 4854 2022-12-16 20:46:46      TRUE 2022-12-16 21:00:00
## 4855 2022-12-16 20:46:41      TRUE 2022-12-16 21:00:00
## 4856 2022-12-16 20:46:35      TRUE 2022-12-16 21:00:00
## 4857 2022-12-16 20:46:32      TRUE 2022-12-16 21:00:00
## 4858 2022-12-16 20:46:30      TRUE 2022-12-16 21:00:00
## 4859 2022-12-16 20:46:26      TRUE 2022-12-16 21:00:00
## 4860 2022-12-16 20:46:22      TRUE 2022-12-16 21:00:00
## 4861 2022-12-16 20:46:20      TRUE 2022-12-16 21:00:00
## 4862 2022-12-16 20:46:15      TRUE 2022-12-16 21:00:00
## 4863 2022-12-16 20:46:07      TRUE 2022-12-16 21:00:00
## 4864 2022-12-16 20:45:44      TRUE 2022-12-16 21:00:00
## 4865 2022-12-16 20:45:41      TRUE 2022-12-16 21:00:00
## 4866 2022-12-16 20:45:40      TRUE 2022-12-16 21:00:00
## 4867 2022-12-16 20:45:35      TRUE 2022-12-16 21:00:00
## 4868 2022-12-16 20:45:33      TRUE 2022-12-16 21:00:00
## 4869 2022-12-16 20:45:32      TRUE 2022-12-16 21:00:00
## 4870 2022-12-16 20:45:31      TRUE 2022-12-16 21:00:00
## 4871 2022-12-16 20:45:26      TRUE 2022-12-16 21:00:00
## 4872 2022-12-16 20:45:16      TRUE 2022-12-16 21:00:00
## 4873 2022-12-16 20:45:10      TRUE 2022-12-16 21:00:00
## 4874 2022-12-16 20:45:07      TRUE 2022-12-16 21:00:00
## 4875 2022-12-16 20:45:07      TRUE 2022-12-16 21:00:00
## 4876 2022-12-16 20:45:03      TRUE 2022-12-16 21:00:00
## 4877 2022-12-16 20:45:03      TRUE 2022-12-16 21:00:00
## 4878 2022-12-16 20:45:00      TRUE 2022-12-16 21:00:00
## 4879 2022-12-16 20:45:00      TRUE 2022-12-16 21:00:00
## 4880 2022-12-16 20:44:54      TRUE 2022-12-16 21:00:00
## 4881 2022-12-16 20:44:53      TRUE 2022-12-16 21:00:00
## 4882 2022-12-16 20:44:51      TRUE 2022-12-16 21:00:00
## 4883 2022-12-16 20:44:50      TRUE 2022-12-16 21:00:00
## 4884 2022-12-16 20:44:50      TRUE 2022-12-16 21:00:00
## 4885 2022-12-16 20:44:48      TRUE 2022-12-16 21:00:00
## 4886 2022-12-16 20:44:47      TRUE 2022-12-16 21:00:00
## 4887 2022-12-16 20:44:45      TRUE 2022-12-16 21:00:00
## 4888 2022-12-16 20:44:44      TRUE 2022-12-16 21:00:00
## 4889 2022-12-16 20:44:44      TRUE 2022-12-16 21:00:00
## 4890 2022-12-16 20:44:41      TRUE 2022-12-16 21:00:00
## 4891 2022-12-16 20:44:41      TRUE 2022-12-16 21:00:00
## 4892 2022-12-16 20:44:27      TRUE 2022-12-16 21:00:00
## 4893 2022-12-16 20:44:26      TRUE 2022-12-16 21:00:00
## 4894 2022-12-16 20:44:22      TRUE 2022-12-16 21:00:00
## 4895 2022-12-16 20:44:21      TRUE 2022-12-16 21:00:00
## 4896 2022-12-16 20:44:16      TRUE 2022-12-16 21:00:00
## 4897 2022-12-16 20:44:13      TRUE 2022-12-16 21:00:00
## 4898 2022-12-16 20:44:01      TRUE 2022-12-16 21:00:00
## 4899 2022-12-16 20:43:53      TRUE 2022-12-16 21:00:00
## 4900 2022-12-16 20:43:52      TRUE 2022-12-16 21:00:00
## 4901 2022-12-16 20:43:44      TRUE 2022-12-16 21:00:00
## 4902 2022-12-16 20:43:43      TRUE 2022-12-16 21:00:00
## 4903 2022-12-16 20:43:36      TRUE 2022-12-16 21:00:00
## 4904 2022-12-16 20:43:34      TRUE 2022-12-16 21:00:00
## 4905 2022-12-16 20:43:34      TRUE 2022-12-16 21:00:00
## 4906 2022-12-16 20:43:29      TRUE 2022-12-16 21:00:00
## 4907 2022-12-16 20:43:27      TRUE 2022-12-16 21:00:00
## 4908 2022-12-16 20:43:26      TRUE 2022-12-16 21:00:00
## 4909 2022-12-16 20:43:25      TRUE 2022-12-16 21:00:00
## 4910 2022-12-16 20:43:25      TRUE 2022-12-16 21:00:00
## 4911 2022-12-16 20:43:24      TRUE 2022-12-16 21:00:00
## 4912 2022-12-16 20:43:22      TRUE 2022-12-16 21:00:00
## 4913 2022-12-16 20:43:22      TRUE 2022-12-16 21:00:00
## 4914 2022-12-16 20:43:21      TRUE 2022-12-16 21:00:00
## 4915 2022-12-16 20:43:19      TRUE 2022-12-16 21:00:00
## 4916 2022-12-16 20:43:14      TRUE 2022-12-16 21:00:00
## 4917 2022-12-16 20:43:14      TRUE 2022-12-16 21:00:00
## 4918 2022-12-16 20:43:11      TRUE 2022-12-16 21:00:00
## 4919 2022-12-16 20:43:04      TRUE 2022-12-16 21:00:00
## 4920 2022-12-16 20:42:59      TRUE 2022-12-16 21:00:00
## 4921 2022-12-16 20:42:56      TRUE 2022-12-16 21:00:00
## 4922 2022-12-16 20:42:54      TRUE 2022-12-16 21:00:00
## 4923 2022-12-16 20:42:52      TRUE 2022-12-16 21:00:00
## 4924 2022-12-16 20:42:49      TRUE 2022-12-16 21:00:00
## 4925 2022-12-16 20:42:48      TRUE 2022-12-16 21:00:00
## 4926 2022-12-16 20:42:48      TRUE 2022-12-16 21:00:00
## 4927 2022-12-16 20:42:48      TRUE 2022-12-16 21:00:00
## 4928 2022-12-16 20:42:47      TRUE 2022-12-16 21:00:00
## 4929 2022-12-16 20:42:44      TRUE 2022-12-16 21:00:00
## 4930 2022-12-16 20:42:42      TRUE 2022-12-16 21:00:00
## 4931 2022-12-16 20:42:41      TRUE 2022-12-16 21:00:00
## 4932 2022-12-16 20:42:40      TRUE 2022-12-16 21:00:00
## 4933 2022-12-16 20:42:39      TRUE 2022-12-16 21:00:00
## 4934 2022-12-16 20:42:36      TRUE 2022-12-16 21:00:00
## 4935 2022-12-16 20:42:34      TRUE 2022-12-16 21:00:00
## 4936 2022-12-16 20:42:32      TRUE 2022-12-16 21:00:00
## 4937 2022-12-16 20:42:28      TRUE 2022-12-16 21:00:00
## 4938 2022-12-16 20:42:28      TRUE 2022-12-16 21:00:00
## 4939 2022-12-16 20:42:28      TRUE 2022-12-16 21:00:00
## 4940 2022-12-16 20:42:25      TRUE 2022-12-16 21:00:00
## 4941 2022-12-16 20:42:20      TRUE 2022-12-16 21:00:00
## 4942 2022-12-16 20:42:19      TRUE 2022-12-16 21:00:00
## 4943 2022-12-16 20:42:16      TRUE 2022-12-16 21:00:00
## 4944 2022-12-16 20:42:13      TRUE 2022-12-16 21:00:00
## 4945 2022-12-16 20:42:12      TRUE 2022-12-16 21:00:00
## 4946 2022-12-16 20:42:02      TRUE 2022-12-16 21:00:00
## 4947 2022-12-16 20:41:43      TRUE 2022-12-16 21:00:00
## 4948 2022-12-16 20:41:42      TRUE 2022-12-16 21:00:00
## 4949 2022-12-16 20:41:38      TRUE 2022-12-16 21:00:00
## 4950 2022-12-16 20:41:34      TRUE 2022-12-16 21:00:00
## 4951 2022-12-16 20:41:34      TRUE 2022-12-16 21:00:00
## 4952 2022-12-16 20:41:34      TRUE 2022-12-16 21:00:00
## 4953 2022-12-16 20:41:30      TRUE 2022-12-16 21:00:00
## 4954 2022-12-16 20:41:30      TRUE 2022-12-16 21:00:00
## 4955 2022-12-16 20:41:29      TRUE 2022-12-16 21:00:00
## 4956 2022-12-16 20:41:25      TRUE 2022-12-16 21:00:00
## 4957 2022-12-16 20:41:23      TRUE 2022-12-16 21:00:00
## 4958 2022-12-16 20:41:23      TRUE 2022-12-16 21:00:00
## 4959 2022-12-16 20:41:21      TRUE 2022-12-16 21:00:00
## 4960 2022-12-16 20:41:12      TRUE 2022-12-16 21:00:00
## 4961 2022-12-16 20:41:08      TRUE 2022-12-16 21:00:00
## 4962 2022-12-16 20:41:08      TRUE 2022-12-16 21:00:00
## 4963 2022-12-16 20:41:05      TRUE 2022-12-16 21:00:00
## 4964 2022-12-16 20:41:05      TRUE 2022-12-16 21:00:00
## 4965 2022-12-16 20:41:04      TRUE 2022-12-16 21:00:00
## 4966 2022-12-16 20:41:04      TRUE 2022-12-16 21:00:00
## 4967 2022-12-16 20:41:03      TRUE 2022-12-16 21:00:00
## 4968 2022-12-16 20:41:01      TRUE 2022-12-16 21:00:00
## 4969 2022-12-16 20:40:55      TRUE 2022-12-16 21:00:00
## 4970 2022-12-16 20:40:50      TRUE 2022-12-16 21:00:00
## 4971 2022-12-16 20:40:47      TRUE 2022-12-16 21:00:00
## 4972 2022-12-16 20:40:46      TRUE 2022-12-16 21:00:00
## 4973 2022-12-16 20:40:43      TRUE 2022-12-16 21:00:00
## 4974 2022-12-16 20:40:42      TRUE 2022-12-16 21:00:00
## 4975 2022-12-16 20:40:41      TRUE 2022-12-16 21:00:00
## 4976 2022-12-16 20:40:37      TRUE 2022-12-16 21:00:00
## 4977 2022-12-16 20:40:29      TRUE 2022-12-16 21:00:00
## 4978 2022-12-16 20:40:27      TRUE 2022-12-16 21:00:00
## 4979 2022-12-16 20:40:24      TRUE 2022-12-16 21:00:00
## 4980 2022-12-16 20:40:21      TRUE 2022-12-16 21:00:00
## 4981 2022-12-16 20:40:16      TRUE 2022-12-16 21:00:00
## 4982 2022-12-16 20:40:15      TRUE 2022-12-16 21:00:00
## 4983 2022-12-16 20:40:12      TRUE 2022-12-16 21:00:00
## 4984 2022-12-16 20:40:12      TRUE 2022-12-16 21:00:00
## 4985 2022-12-16 20:40:06      TRUE 2022-12-16 21:00:00
## 4986 2022-12-16 20:40:01      TRUE 2022-12-16 21:00:00
## 4987 2022-12-16 20:40:01      TRUE 2022-12-16 21:00:00
## 4988 2022-12-16 20:39:59      TRUE 2022-12-16 21:00:00
## 4989 2022-12-16 20:39:59      TRUE 2022-12-16 21:00:00
## 4990 2022-12-16 20:39:56      TRUE 2022-12-16 21:00:00
## 4991 2022-12-16 20:39:55      TRUE 2022-12-16 21:00:00
## 4992 2022-12-16 20:39:51      TRUE 2022-12-16 21:00:00
## 4993 2022-12-16 20:39:47      TRUE 2022-12-16 21:00:00
## 4994 2022-12-16 20:39:43      TRUE 2022-12-16 21:00:00
## 4995 2022-12-16 20:39:43      TRUE 2022-12-16 21:00:00
## 4996 2022-12-16 20:39:35      TRUE 2022-12-16 21:00:00
## 4997 2022-12-16 20:39:34      TRUE 2022-12-16 21:00:00
## 4998 2022-12-16 20:39:31      TRUE 2022-12-16 21:00:00
## 4999 2022-12-16 20:39:31      TRUE 2022-12-16 21:00:00
## 5000 2022-12-16 20:39:28      TRUE 2022-12-16 21:00:00
## 5001 2022-12-16 20:39:24      TRUE 2022-12-16 21:00:00
## 5002 2022-12-16 20:39:22      TRUE 2022-12-16 21:00:00
## 5003 2022-12-16 20:39:18      TRUE 2022-12-16 21:00:00
## 5004 2022-12-16 20:39:16      TRUE 2022-12-16 21:00:00
## 5005 2022-12-16 20:39:12      TRUE 2022-12-16 21:00:00
## 5006 2022-12-16 20:39:11      TRUE 2022-12-16 21:00:00
## 5007 2022-12-16 20:39:11      TRUE 2022-12-16 21:00:00
## 5008 2022-12-16 20:39:09      TRUE 2022-12-16 21:00:00
## 5009 2022-12-16 20:39:06      TRUE 2022-12-16 21:00:00
## 5010 2022-12-16 20:39:04      TRUE 2022-12-16 21:00:00
## 5011 2022-12-16 20:39:02      TRUE 2022-12-16 21:00:00
## 5012 2022-12-16 20:38:58      TRUE 2022-12-16 21:00:00
## 5013 2022-12-16 20:38:56      TRUE 2022-12-16 21:00:00
## 5014 2022-12-16 20:38:44      TRUE 2022-12-16 21:00:00
## 5015 2022-12-16 20:38:43      TRUE 2022-12-16 21:00:00
## 5016 2022-12-16 20:38:38      TRUE 2022-12-16 21:00:00
## 5017 2022-12-16 20:38:37      TRUE 2022-12-16 21:00:00
## 5018 2022-12-16 20:38:35      TRUE 2022-12-16 21:00:00
## 5019 2022-12-16 20:38:28      TRUE 2022-12-16 21:00:00
## 5020 2022-12-16 20:38:25      TRUE 2022-12-16 21:00:00
## 5021 2022-12-16 20:38:23      TRUE 2022-12-16 21:00:00
## 5022 2022-12-16 20:38:21      TRUE 2022-12-16 21:00:00
## 5023 2022-12-16 20:38:19      TRUE 2022-12-16 21:00:00
## 5024 2022-12-16 20:37:53      TRUE 2022-12-16 21:00:00
## 5025 2022-12-16 20:37:52      TRUE 2022-12-16 21:00:00
## 5026 2022-12-16 20:37:49      TRUE 2022-12-16 21:00:00
## 5027 2022-12-16 20:37:46      TRUE 2022-12-16 21:00:00
## 5028 2022-12-16 20:37:46      TRUE 2022-12-16 21:00:00
## 5029 2022-12-16 20:37:42      TRUE 2022-12-16 21:00:00
## 5030 2022-12-16 20:37:41      TRUE 2022-12-16 21:00:00
## 5031 2022-12-16 20:37:38      TRUE 2022-12-16 21:00:00
## 5032 2022-12-16 20:37:37      TRUE 2022-12-16 21:00:00
## 5033 2022-12-16 20:37:37      TRUE 2022-12-16 21:00:00
## 5034 2022-12-16 20:37:34      TRUE 2022-12-16 21:00:00
## 5035 2022-12-16 20:37:28      TRUE 2022-12-16 21:00:00
## 5036 2022-12-16 20:37:28      TRUE 2022-12-16 21:00:00
## 5037 2022-12-16 20:37:27      TRUE 2022-12-16 21:00:00
## 5038 2022-12-16 20:37:26      TRUE 2022-12-16 21:00:00
## 5039 2022-12-16 20:37:21      TRUE 2022-12-16 21:00:00
## 5040 2022-12-16 20:37:18      TRUE 2022-12-16 21:00:00
## 5041 2022-12-16 20:37:14      TRUE 2022-12-16 21:00:00
## 5042 2022-12-16 20:37:12      TRUE 2022-12-16 21:00:00
## 5043 2022-12-16 20:37:05      TRUE 2022-12-16 21:00:00
## 5044 2022-12-16 20:37:03      TRUE 2022-12-16 21:00:00
## 5045 2022-12-16 20:36:56      TRUE 2022-12-16 21:00:00
## 5046 2022-12-16 20:36:55      TRUE 2022-12-16 21:00:00
## 5047 2022-12-16 20:36:51      TRUE 2022-12-16 21:00:00
## 5048 2022-12-16 20:36:49      TRUE 2022-12-16 21:00:00
## 5049 2022-12-16 20:36:47      TRUE 2022-12-16 21:00:00
## 5050 2022-12-16 20:36:46      TRUE 2022-12-16 21:00:00
## 5051 2022-12-16 20:36:40      TRUE 2022-12-16 21:00:00
## 5052 2022-12-16 20:36:32      TRUE 2022-12-16 21:00:00
## 5053 2022-12-16 20:36:30      TRUE 2022-12-16 21:00:00
## 5054 2022-12-16 20:36:29      TRUE 2022-12-16 21:00:00
## 5055 2022-12-16 20:36:23      TRUE 2022-12-16 21:00:00
## 5056 2022-12-16 20:36:17      TRUE 2022-12-16 21:00:00
## 5057 2022-12-16 20:36:09      TRUE 2022-12-16 21:00:00
## 5058 2022-12-16 20:36:07      TRUE 2022-12-16 21:00:00
## 5059 2022-12-16 20:36:02      TRUE 2022-12-16 21:00:00
## 5060 2022-12-16 20:35:58      TRUE 2022-12-16 21:00:00
## 5061 2022-12-16 20:35:56      TRUE 2022-12-16 21:00:00
## 5062 2022-12-16 20:35:54      TRUE 2022-12-16 21:00:00
## 5063 2022-12-16 20:35:44      TRUE 2022-12-16 21:00:00
## 5064 2022-12-16 20:35:44      TRUE 2022-12-16 21:00:00
## 5065 2022-12-16 20:35:40      TRUE 2022-12-16 21:00:00
## 5066 2022-12-16 20:35:36      TRUE 2022-12-16 21:00:00
## 5067 2022-12-16 20:35:22      TRUE 2022-12-16 21:00:00
## 5068 2022-12-16 20:35:20      TRUE 2022-12-16 21:00:00
## 5069 2022-12-16 20:35:20      TRUE 2022-12-16 21:00:00
## 5070 2022-12-16 20:35:19      TRUE 2022-12-16 21:00:00
## 5071 2022-12-16 20:35:17      TRUE 2022-12-16 21:00:00
## 5072 2022-12-16 20:35:12      TRUE 2022-12-16 21:00:00
## 5073 2022-12-16 20:35:09      TRUE 2022-12-16 21:00:00
## 5074 2022-12-16 20:35:07      TRUE 2022-12-16 21:00:00
## 5075 2022-12-16 20:35:07      TRUE 2022-12-16 21:00:00
## 5076 2022-12-16 20:34:58      TRUE 2022-12-16 21:00:00
## 5077 2022-12-16 20:34:50      TRUE 2022-12-16 21:00:00
## 5078 2022-12-16 20:34:27      TRUE 2022-12-16 21:00:00
## 5079 2022-12-16 20:34:20      TRUE 2022-12-16 21:00:00
## 5080 2022-12-16 20:34:17      TRUE 2022-12-16 21:00:00
## 5081 2022-12-16 20:34:10      TRUE 2022-12-16 21:00:00
## 5082 2022-12-16 20:34:07      TRUE 2022-12-16 21:00:00
## 5083 2022-12-16 20:33:54      TRUE 2022-12-16 21:00:00
## 5084 2022-12-16 20:33:51      TRUE 2022-12-16 21:00:00
## 5085 2022-12-16 20:33:47      TRUE 2022-12-16 21:00:00
## 5086 2022-12-16 20:33:42      TRUE 2022-12-16 21:00:00
## 5087 2022-12-16 20:33:39      TRUE 2022-12-16 21:00:00
## 5088 2022-12-16 20:33:38      TRUE 2022-12-16 21:00:00
## 5089 2022-12-16 20:33:36      TRUE 2022-12-16 21:00:00
## 5090 2022-12-16 20:33:32      TRUE 2022-12-16 21:00:00
## 5091 2022-12-16 20:33:28      TRUE 2022-12-16 21:00:00
## 5092 2022-12-16 20:33:22      TRUE 2022-12-16 21:00:00
## 5093 2022-12-16 20:33:18      TRUE 2022-12-16 21:00:00
## 5094 2022-12-16 20:33:14      TRUE 2022-12-16 21:00:00
## 5095 2022-12-16 20:33:08      TRUE 2022-12-16 21:00:00
## 5096 2022-12-16 20:32:52      TRUE 2022-12-16 21:00:00
## 5097 2022-12-16 20:32:49      TRUE 2022-12-16 21:00:00
## 5098 2022-12-16 20:32:47      TRUE 2022-12-16 21:00:00
## 5099 2022-12-16 20:32:46      TRUE 2022-12-16 21:00:00
## 5100 2022-12-16 20:32:46      TRUE 2022-12-16 21:00:00
## 5101 2022-12-16 20:32:42      TRUE 2022-12-16 21:00:00
## 5102 2022-12-16 20:32:40      TRUE 2022-12-16 21:00:00
## 5103 2022-12-16 20:32:40      TRUE 2022-12-16 21:00:00
## 5104 2022-12-16 20:32:27      TRUE 2022-12-16 21:00:00
## 5105 2022-12-16 20:32:27      TRUE 2022-12-16 21:00:00
## 5106 2022-12-16 20:32:25      TRUE 2022-12-16 21:00:00
## 5107 2022-12-16 20:32:19      TRUE 2022-12-16 21:00:00
## 5108 2022-12-16 20:32:18      TRUE 2022-12-16 21:00:00
## 5109 2022-12-16 20:32:17      TRUE 2022-12-16 21:00:00
## 5110 2022-12-16 20:32:12      TRUE 2022-12-16 21:00:00
## 5111 2022-12-16 20:32:08      TRUE 2022-12-16 21:00:00
## 5112 2022-12-16 20:32:06      TRUE 2022-12-16 21:00:00
## 5113 2022-12-16 20:32:03      TRUE 2022-12-16 21:00:00
## 5114 2022-12-16 20:32:00      TRUE 2022-12-16 21:00:00
## 5115 2022-12-16 20:31:59      TRUE 2022-12-16 21:00:00
## 5116 2022-12-16 20:31:57      TRUE 2022-12-16 21:00:00
## 5117 2022-12-16 20:31:56      TRUE 2022-12-16 21:00:00
## 5118 2022-12-16 20:31:55      TRUE 2022-12-16 21:00:00
## 5119 2022-12-16 20:31:52      TRUE 2022-12-16 21:00:00
## 5120 2022-12-16 20:31:49      TRUE 2022-12-16 21:00:00
## 5121 2022-12-16 20:31:49      TRUE 2022-12-16 21:00:00
## 5122 2022-12-16 20:31:44      TRUE 2022-12-16 21:00:00
## 5123 2022-12-16 20:31:35      TRUE 2022-12-16 21:00:00
## 5124 2022-12-16 20:31:30      TRUE 2022-12-16 21:00:00
## 5125 2022-12-16 20:31:27      TRUE 2022-12-16 21:00:00
## 5126 2022-12-16 20:31:13      TRUE 2022-12-16 21:00:00
## 5127 2022-12-16 20:31:11      TRUE 2022-12-16 21:00:00
## 5128 2022-12-16 20:31:10      TRUE 2022-12-16 21:00:00
## 5129 2022-12-16 20:31:10      TRUE 2022-12-16 21:00:00
## 5130 2022-12-16 20:31:08      TRUE 2022-12-16 21:00:00
## 5131 2022-12-16 20:31:07      TRUE 2022-12-16 21:00:00
## 5132 2022-12-16 20:31:05      TRUE 2022-12-16 21:00:00
## 5133 2022-12-16 20:31:05      TRUE 2022-12-16 21:00:00
## 5134 2022-12-16 20:31:04      TRUE 2022-12-16 21:00:00
## 5135 2022-12-16 20:30:58      TRUE 2022-12-16 21:00:00
## 5136 2022-12-16 20:30:54      TRUE 2022-12-16 21:00:00
## 5137 2022-12-16 20:30:52      TRUE 2022-12-16 21:00:00
## 5138 2022-12-16 20:30:47      TRUE 2022-12-16 21:00:00
## 5139 2022-12-16 20:30:44      TRUE 2022-12-16 21:00:00
## 5140 2022-12-16 20:30:44      TRUE 2022-12-16 21:00:00
## 5141 2022-12-16 20:30:39      TRUE 2022-12-16 21:00:00
## 5142 2022-12-16 20:30:36      TRUE 2022-12-16 21:00:00
## 5143 2022-12-16 20:30:32      TRUE 2022-12-16 21:00:00
## 5144 2022-12-16 20:30:32      TRUE 2022-12-16 21:00:00
## 5145 2022-12-16 20:30:32      TRUE 2022-12-16 21:00:00
## 5146 2022-12-16 20:30:30      TRUE 2022-12-16 21:00:00
## 5147 2022-12-16 20:30:29      TRUE 2022-12-16 21:00:00
## 5148 2022-12-16 20:30:24      TRUE 2022-12-16 21:00:00
## 5149 2022-12-16 20:30:23      TRUE 2022-12-16 21:00:00
## 5150 2022-12-16 20:30:17      TRUE 2022-12-16 21:00:00
## 5151 2022-12-16 20:30:16      TRUE 2022-12-16 21:00:00
## 5152 2022-12-16 20:30:14      TRUE 2022-12-16 21:00:00
## 5153 2022-12-16 20:29:53      TRUE 2022-12-16 20:00:00
## 5154 2022-12-16 20:29:45      TRUE 2022-12-16 20:00:00
## 5155 2022-12-16 20:29:40      TRUE 2022-12-16 20:00:00
## 5156 2022-12-16 20:29:32      TRUE 2022-12-16 20:00:00
## 5157 2022-12-16 20:29:25      TRUE 2022-12-16 20:00:00
## 5158 2022-12-16 20:29:25      TRUE 2022-12-16 20:00:00
## 5159 2022-12-16 20:29:16      TRUE 2022-12-16 20:00:00
## 5160 2022-12-16 20:29:08      TRUE 2022-12-16 20:00:00
## 5161 2022-12-16 20:29:03      TRUE 2022-12-16 20:00:00
## 5162 2022-12-16 20:29:03      TRUE 2022-12-16 20:00:00
## 5163 2022-12-16 20:29:00      TRUE 2022-12-16 20:00:00
## 5164 2022-12-16 20:29:00      TRUE 2022-12-16 20:00:00
## 5165 2022-12-16 20:28:55      TRUE 2022-12-16 20:00:00
## 5166 2022-12-16 20:28:52      TRUE 2022-12-16 20:00:00
## 5167 2022-12-16 20:28:49      TRUE 2022-12-16 20:00:00
## 5168 2022-12-16 20:28:47      TRUE 2022-12-16 20:00:00
## 5169 2022-12-16 20:28:46      TRUE 2022-12-16 20:00:00
## 5170 2022-12-16 20:28:46      TRUE 2022-12-16 20:00:00
## 5171 2022-12-16 20:28:40      TRUE 2022-12-16 20:00:00
## 5172 2022-12-16 20:28:38      TRUE 2022-12-16 20:00:00
## 5173 2022-12-16 20:28:22      TRUE 2022-12-16 20:00:00
## 5174 2022-12-16 20:28:17      TRUE 2022-12-16 20:00:00
## 5175 2022-12-16 20:28:16      TRUE 2022-12-16 20:00:00
## 5176 2022-12-16 20:28:15      TRUE 2022-12-16 20:00:00
## 5177 2022-12-16 20:28:12      TRUE 2022-12-16 20:00:00
## 5178 2022-12-16 20:28:07      TRUE 2022-12-16 20:00:00
## 5179 2022-12-16 20:28:03      TRUE 2022-12-16 20:00:00
## 5180 2022-12-16 20:27:58      TRUE 2022-12-16 20:00:00
## 5181 2022-12-16 20:27:55      TRUE 2022-12-16 20:00:00
## 5182 2022-12-16 20:27:45      TRUE 2022-12-16 20:00:00
## 5183 2022-12-16 20:27:40      TRUE 2022-12-16 20:00:00
## 5184 2022-12-16 20:27:36      TRUE 2022-12-16 20:00:00
## 5185 2022-12-16 20:27:35      TRUE 2022-12-16 20:00:00
## 5186 2022-12-16 20:27:29      TRUE 2022-12-16 20:00:00
## 5187 2022-12-16 20:27:28      TRUE 2022-12-16 20:00:00
## 5188 2022-12-16 20:27:24      TRUE 2022-12-16 20:00:00
## 5189 2022-12-16 20:27:24      TRUE 2022-12-16 20:00:00
## 5190 2022-12-16 20:27:23      TRUE 2022-12-16 20:00:00
## 5191 2022-12-16 20:27:22      TRUE 2022-12-16 20:00:00
## 5192 2022-12-16 20:27:14      TRUE 2022-12-16 20:00:00
## 5193 2022-12-16 20:27:13      TRUE 2022-12-16 20:00:00
## 5194 2022-12-16 20:27:10      TRUE 2022-12-16 20:00:00
## 5195 2022-12-16 20:27:03      TRUE 2022-12-16 20:00:00
## 5196 2022-12-16 20:27:03      TRUE 2022-12-16 20:00:00
## 5197 2022-12-16 20:27:01      TRUE 2022-12-16 20:00:00
## 5198 2022-12-16 20:26:39      TRUE 2022-12-16 20:00:00
## 5199 2022-12-16 20:26:36      TRUE 2022-12-16 20:00:00
## 5200 2022-12-16 20:26:25      TRUE 2022-12-16 20:00:00
## 5201 2022-12-16 20:26:24      TRUE 2022-12-16 20:00:00
## 5202 2022-12-16 20:26:21      TRUE 2022-12-16 20:00:00
## 5203 2022-12-16 20:26:14      TRUE 2022-12-16 20:00:00
## 5204 2022-12-16 20:26:12      TRUE 2022-12-16 20:00:00
## 5205 2022-12-16 20:26:12      TRUE 2022-12-16 20:00:00
## 5206 2022-12-16 20:26:11      TRUE 2022-12-16 20:00:00
## 5207 2022-12-16 20:26:09      TRUE 2022-12-16 20:00:00
## 5208 2022-12-16 20:26:07      TRUE 2022-12-16 20:00:00
## 5209 2022-12-16 20:25:51      TRUE 2022-12-16 20:00:00
## 5210 2022-12-16 20:25:45      TRUE 2022-12-16 20:00:00
## 5211 2022-12-16 20:25:45      TRUE 2022-12-16 20:00:00
## 5212 2022-12-16 20:25:45      TRUE 2022-12-16 20:00:00
## 5213 2022-12-16 20:25:41      TRUE 2022-12-16 20:00:00
## 5214 2022-12-16 20:25:40      TRUE 2022-12-16 20:00:00
## 5215 2022-12-16 20:25:39      TRUE 2022-12-16 20:00:00
## 5216 2022-12-16 20:25:38      TRUE 2022-12-16 20:00:00
## 5217 2022-12-16 20:25:33      TRUE 2022-12-16 20:00:00
## 5218 2022-12-16 20:25:27      TRUE 2022-12-16 20:00:00
## 5219 2022-12-16 20:25:18      TRUE 2022-12-16 20:00:00
## 5220 2022-12-16 20:25:14      TRUE 2022-12-16 20:00:00
## 5221 2022-12-16 20:25:13      TRUE 2022-12-16 20:00:00
## 5222 2022-12-16 20:25:10      TRUE 2022-12-16 20:00:00
## 5223 2022-12-16 20:24:58      TRUE 2022-12-16 20:00:00
## 5224 2022-12-16 20:24:57      TRUE 2022-12-16 20:00:00
## 5225 2022-12-16 20:24:56      TRUE 2022-12-16 20:00:00
## 5226 2022-12-16 20:24:40      TRUE 2022-12-16 20:00:00
## 5227 2022-12-16 20:24:38      TRUE 2022-12-16 20:00:00
## 5228 2022-12-16 20:24:37      TRUE 2022-12-16 20:00:00
## 5229 2022-12-16 20:24:33      TRUE 2022-12-16 20:00:00
## 5230 2022-12-16 20:24:32      TRUE 2022-12-16 20:00:00
## 5231 2022-12-16 20:24:28      TRUE 2022-12-16 20:00:00
## 5232 2022-12-16 20:24:27      TRUE 2022-12-16 20:00:00
## 5233 2022-12-16 20:24:22      TRUE 2022-12-16 20:00:00
## 5234 2022-12-16 20:24:10      TRUE 2022-12-16 20:00:00
## 5235 2022-12-16 20:24:09      TRUE 2022-12-16 20:00:00
## 5236 2022-12-16 20:23:45      TRUE 2022-12-16 20:00:00
## 5237 2022-12-16 20:23:44      TRUE 2022-12-16 20:00:00
## 5238 2022-12-16 20:23:37      TRUE 2022-12-16 20:00:00
## 5239 2022-12-16 20:23:18      TRUE 2022-12-16 20:00:00
## 5240 2022-12-16 20:23:13      TRUE 2022-12-16 20:00:00
## 5241 2022-12-16 20:23:10      TRUE 2022-12-16 20:00:00
## 5242 2022-12-16 20:23:10      TRUE 2022-12-16 20:00:00
## 5243 2022-12-16 20:23:07      TRUE 2022-12-16 20:00:00
## 5244 2022-12-16 20:23:02      TRUE 2022-12-16 20:00:00
## 5245 2022-12-16 20:23:00      TRUE 2022-12-16 20:00:00
## 5246 2022-12-16 20:22:59      TRUE 2022-12-16 20:00:00
## 5247 2022-12-16 20:22:58      TRUE 2022-12-16 20:00:00
## 5248 2022-12-16 20:22:57      TRUE 2022-12-16 20:00:00
## 5249 2022-12-16 20:22:57      TRUE 2022-12-16 20:00:00
## 5250 2022-12-16 20:22:57      TRUE 2022-12-16 20:00:00
## 5251 2022-12-16 20:22:56      TRUE 2022-12-16 20:00:00
## 5252 2022-12-16 20:22:53      TRUE 2022-12-16 20:00:00
## 5253 2022-12-16 20:22:50      TRUE 2022-12-16 20:00:00
## 5254 2022-12-16 20:22:42      TRUE 2022-12-16 20:00:00
## 5255 2022-12-16 20:22:40      TRUE 2022-12-16 20:00:00
## 5256 2022-12-16 20:22:35      TRUE 2022-12-16 20:00:00
## 5257 2022-12-16 20:22:34      TRUE 2022-12-16 20:00:00
## 5258 2022-12-16 20:22:31      TRUE 2022-12-16 20:00:00
## 5259 2022-12-16 20:22:19      TRUE 2022-12-16 20:00:00
## 5260 2022-12-16 20:22:09      TRUE 2022-12-16 20:00:00
## 5261 2022-12-16 20:22:09      TRUE 2022-12-16 20:00:00
## 5262 2022-12-16 20:22:08      TRUE 2022-12-16 20:00:00
## 5263 2022-12-16 20:22:04      TRUE 2022-12-16 20:00:00
## 5264 2022-12-16 20:22:03      TRUE 2022-12-16 20:00:00
## 5265 2022-12-16 20:22:03      TRUE 2022-12-16 20:00:00
## 5266 2022-12-16 20:22:03      TRUE 2022-12-16 20:00:00
## 5267 2022-12-16 20:22:01      TRUE 2022-12-16 20:00:00
## 5268 2022-12-16 20:22:01      TRUE 2022-12-16 20:00:00
## 5269 2022-12-16 20:21:59      TRUE 2022-12-16 20:00:00
## 5270 2022-12-16 20:21:58      TRUE 2022-12-16 20:00:00
## 5271 2022-12-16 20:21:49      TRUE 2022-12-16 20:00:00
## 5272 2022-12-16 20:21:48      TRUE 2022-12-16 20:00:00
## 5273 2022-12-16 20:21:43      TRUE 2022-12-16 20:00:00
## 5274 2022-12-16 20:21:43      TRUE 2022-12-16 20:00:00
## 5275 2022-12-16 20:21:35      TRUE 2022-12-16 20:00:00
## 5276 2022-12-16 20:21:34      TRUE 2022-12-16 20:00:00
## 5277 2022-12-16 20:21:32      TRUE 2022-12-16 20:00:00
## 5278 2022-12-16 20:21:31      TRUE 2022-12-16 20:00:00
## 5279 2022-12-16 20:21:24      TRUE 2022-12-16 20:00:00
## 5280 2022-12-16 20:21:19      TRUE 2022-12-16 20:00:00
## 5281 2022-12-16 20:21:17      TRUE 2022-12-16 20:00:00
## 5282 2022-12-16 20:21:15      TRUE 2022-12-16 20:00:00
## 5283 2022-12-16 20:21:14      TRUE 2022-12-16 20:00:00
## 5284 2022-12-16 20:21:12      TRUE 2022-12-16 20:00:00
## 5285 2022-12-16 20:21:11      TRUE 2022-12-16 20:00:00
## 5286 2022-12-16 20:21:11      TRUE 2022-12-16 20:00:00
## 5287 2022-12-16 20:21:10      TRUE 2022-12-16 20:00:00
## 5288 2022-12-16 20:21:07      TRUE 2022-12-16 20:00:00
## 5289 2022-12-16 20:21:06      TRUE 2022-12-16 20:00:00
## 5290 2022-12-16 20:21:02      TRUE 2022-12-16 20:00:00
## 5291 2022-12-16 20:21:01      TRUE 2022-12-16 20:00:00
## 5292 2022-12-16 20:20:59      TRUE 2022-12-16 20:00:00
## 5293 2022-12-16 20:20:57      TRUE 2022-12-16 20:00:00
## 5294 2022-12-16 20:20:35      TRUE 2022-12-16 20:00:00
## 5295 2022-12-16 20:20:34      TRUE 2022-12-16 20:00:00
## 5296 2022-12-16 20:20:33      TRUE 2022-12-16 20:00:00
## 5297 2022-12-16 20:20:30      TRUE 2022-12-16 20:00:00
## 5298 2022-12-16 20:20:23      TRUE 2022-12-16 20:00:00
## 5299 2022-12-16 20:20:23      TRUE 2022-12-16 20:00:00
## 5300 2022-12-16 20:20:22      TRUE 2022-12-16 20:00:00
## 5301 2022-12-16 20:20:20      TRUE 2022-12-16 20:00:00
## 5302 2022-12-16 20:20:10      TRUE 2022-12-16 20:00:00
## 5303 2022-12-16 20:20:06      TRUE 2022-12-16 20:00:00
## 5304 2022-12-16 20:20:01      TRUE 2022-12-16 20:00:00
## 5305 2022-12-16 20:19:59      TRUE 2022-12-16 20:00:00
## 5306 2022-12-16 20:19:59      TRUE 2022-12-16 20:00:00
## 5307 2022-12-16 20:19:57      TRUE 2022-12-16 20:00:00
## 5308 2022-12-16 20:19:55      TRUE 2022-12-16 20:00:00
## 5309 2022-12-16 20:19:53      TRUE 2022-12-16 20:00:00
## 5310 2022-12-16 20:19:52      TRUE 2022-12-16 20:00:00
## 5311 2022-12-16 20:19:51      TRUE 2022-12-16 20:00:00
## 5312 2022-12-16 20:19:51      TRUE 2022-12-16 20:00:00
## 5313 2022-12-16 20:19:44      TRUE 2022-12-16 20:00:00
## 5314 2022-12-16 20:19:41      TRUE 2022-12-16 20:00:00
## 5315 2022-12-16 20:19:29      TRUE 2022-12-16 20:00:00
## 5316 2022-12-16 20:19:27      TRUE 2022-12-16 20:00:00
## 5317 2022-12-16 20:19:26      TRUE 2022-12-16 20:00:00
## 5318 2022-12-16 20:19:18      TRUE 2022-12-16 20:00:00
## 5319 2022-12-16 20:19:17      TRUE 2022-12-16 20:00:00
## 5320 2022-12-16 20:19:12      TRUE 2022-12-16 20:00:00
## 5321 2022-12-16 20:19:07      TRUE 2022-12-16 20:00:00
## 5322 2022-12-16 20:19:06      TRUE 2022-12-16 20:00:00
## 5323 2022-12-16 20:19:05      TRUE 2022-12-16 20:00:00
## 5324 2022-12-16 20:19:03      TRUE 2022-12-16 20:00:00
## 5325 2022-12-16 20:18:55      TRUE 2022-12-16 20:00:00
## 5326 2022-12-16 20:18:54      TRUE 2022-12-16 20:00:00
## 5327 2022-12-16 20:18:53      TRUE 2022-12-16 20:00:00
## 5328 2022-12-16 20:18:51      TRUE 2022-12-16 20:00:00
## 5329 2022-12-16 20:18:45      TRUE 2022-12-16 20:00:00
## 5330 2022-12-16 20:18:42      TRUE 2022-12-16 20:00:00
## 5331 2022-12-16 20:18:41      TRUE 2022-12-16 20:00:00
## 5332 2022-12-16 20:18:32      TRUE 2022-12-16 20:00:00
## 5333 2022-12-16 20:18:26      TRUE 2022-12-16 20:00:00
## 5334 2022-12-16 20:18:17      TRUE 2022-12-16 20:00:00
## 5335 2022-12-16 20:18:15      TRUE 2022-12-16 20:00:00
## 5336 2022-12-16 20:18:10      TRUE 2022-12-16 20:00:00
## 5337 2022-12-16 20:18:09      TRUE 2022-12-16 20:00:00
## 5338 2022-12-16 20:18:07      TRUE 2022-12-16 20:00:00
## 5339 2022-12-16 20:18:04      TRUE 2022-12-16 20:00:00
## 5340 2022-12-16 20:17:56      TRUE 2022-12-16 20:00:00
## 5341 2022-12-16 20:17:54      TRUE 2022-12-16 20:00:00
## 5342 2022-12-16 20:17:53      TRUE 2022-12-16 20:00:00
## 5343 2022-12-16 20:17:52      TRUE 2022-12-16 20:00:00
## 5344 2022-12-16 20:17:52      TRUE 2022-12-16 20:00:00
## 5345 2022-12-16 20:17:50      TRUE 2022-12-16 20:00:00
## 5346 2022-12-16 20:17:49      TRUE 2022-12-16 20:00:00
## 5347 2022-12-16 20:17:44      TRUE 2022-12-16 20:00:00
## 5348 2022-12-16 20:17:42      TRUE 2022-12-16 20:00:00
## 5349 2022-12-16 20:17:40      TRUE 2022-12-16 20:00:00
## 5350 2022-12-16 20:17:38      TRUE 2022-12-16 20:00:00
## 5351 2022-12-16 20:17:35      TRUE 2022-12-16 20:00:00
## 5352 2022-12-16 20:17:31      TRUE 2022-12-16 20:00:00
## 5353 2022-12-16 20:17:17      TRUE 2022-12-16 20:00:00
## 5354 2022-12-16 20:17:12      TRUE 2022-12-16 20:00:00
## 5355 2022-12-16 20:17:11      TRUE 2022-12-16 20:00:00
## 5356 2022-12-16 20:17:11      TRUE 2022-12-16 20:00:00
## 5357 2022-12-16 20:17:09      TRUE 2022-12-16 20:00:00
## 5358 2022-12-16 20:17:08      TRUE 2022-12-16 20:00:00
## 5359 2022-12-16 20:17:06      TRUE 2022-12-16 20:00:00
## 5360 2022-12-16 20:16:57      TRUE 2022-12-16 20:00:00
## 5361 2022-12-16 20:16:55      TRUE 2022-12-16 20:00:00
## 5362 2022-12-16 20:16:54      TRUE 2022-12-16 20:00:00
## 5363 2022-12-16 20:16:53      TRUE 2022-12-16 20:00:00
## 5364 2022-12-16 20:16:53      TRUE 2022-12-16 20:00:00
## 5365 2022-12-16 20:16:49      TRUE 2022-12-16 20:00:00
## 5366 2022-12-16 20:16:48      TRUE 2022-12-16 20:00:00
## 5367 2022-12-16 20:16:47      TRUE 2022-12-16 20:00:00
## 5368 2022-12-16 20:16:46      TRUE 2022-12-16 20:00:00
## 5369 2022-12-16 20:16:36      TRUE 2022-12-16 20:00:00
## 5370 2022-12-16 20:16:34      TRUE 2022-12-16 20:00:00
## 5371 2022-12-16 20:16:33      TRUE 2022-12-16 20:00:00
## 5372 2022-12-16 20:16:32      TRUE 2022-12-16 20:00:00
## 5373 2022-12-16 20:16:31      TRUE 2022-12-16 20:00:00
## 5374 2022-12-16 20:16:30      TRUE 2022-12-16 20:00:00
## 5375 2022-12-16 20:16:20      TRUE 2022-12-16 20:00:00
## 5376 2022-12-16 20:16:18      TRUE 2022-12-16 20:00:00
## 5377 2022-12-16 20:16:14      TRUE 2022-12-16 20:00:00
## 5378 2022-12-16 20:16:11      TRUE 2022-12-16 20:00:00
## 5379 2022-12-16 20:16:10      TRUE 2022-12-16 20:00:00
## 5380 2022-12-16 20:16:09      TRUE 2022-12-16 20:00:00
## 5381 2022-12-16 20:16:07      TRUE 2022-12-16 20:00:00
## 5382 2022-12-16 20:15:52      TRUE 2022-12-16 20:00:00
## 5383 2022-12-16 20:15:49      TRUE 2022-12-16 20:00:00
## 5384 2022-12-16 20:15:46      TRUE 2022-12-16 20:00:00
## 5385 2022-12-16 20:15:41      TRUE 2022-12-16 20:00:00
## 5386 2022-12-16 20:15:39      TRUE 2022-12-16 20:00:00
## 5387 2022-12-16 20:15:39      TRUE 2022-12-16 20:00:00
## 5388 2022-12-16 20:15:39      TRUE 2022-12-16 20:00:00
## 5389 2022-12-16 20:15:39      TRUE 2022-12-16 20:00:00
## 5390 2022-12-16 20:15:35      TRUE 2022-12-16 20:00:00
## 5391 2022-12-16 20:15:31      TRUE 2022-12-16 20:00:00
## 5392 2022-12-16 20:15:28      TRUE 2022-12-16 20:00:00
## 5393 2022-12-16 20:15:27      TRUE 2022-12-16 20:00:00
## 5394 2022-12-16 20:15:25      TRUE 2022-12-16 20:00:00
## 5395 2022-12-16 20:15:22      TRUE 2022-12-16 20:00:00
## 5396 2022-12-16 20:15:21      TRUE 2022-12-16 20:00:00
## 5397 2022-12-16 20:15:21      TRUE 2022-12-16 20:00:00
## 5398 2022-12-16 20:15:16      TRUE 2022-12-16 20:00:00
## 5399 2022-12-16 20:15:16      TRUE 2022-12-16 20:00:00
## 5400 2022-12-16 20:15:15      TRUE 2022-12-16 20:00:00
## 5401 2022-12-16 20:15:13      TRUE 2022-12-16 20:00:00
## 5402 2022-12-16 20:15:09      TRUE 2022-12-16 20:00:00
## 5403 2022-12-16 20:14:57      TRUE 2022-12-16 20:00:00
## 5404 2022-12-16 20:14:55      TRUE 2022-12-16 20:00:00
## 5405 2022-12-16 20:14:44      TRUE 2022-12-16 20:00:00
## 5406 2022-12-16 20:14:40      TRUE 2022-12-16 20:00:00
## 5407 2022-12-16 20:14:39      TRUE 2022-12-16 20:00:00
## 5408 2022-12-16 20:14:36      TRUE 2022-12-16 20:00:00
## 5409 2022-12-16 20:14:34      TRUE 2022-12-16 20:00:00
## 5410 2022-12-16 20:14:32      TRUE 2022-12-16 20:00:00
## 5411 2022-12-16 20:14:31      TRUE 2022-12-16 20:00:00
## 5412 2022-12-16 20:14:27      TRUE 2022-12-16 20:00:00
## 5413 2022-12-16 20:14:25      TRUE 2022-12-16 20:00:00
## 5414 2022-12-16 20:14:19      TRUE 2022-12-16 20:00:00
## 5415 2022-12-16 20:14:14      TRUE 2022-12-16 20:00:00
## 5416 2022-12-16 20:14:13      TRUE 2022-12-16 20:00:00
## 5417 2022-12-16 20:14:11      TRUE 2022-12-16 20:00:00
## 5418 2022-12-16 20:14:08      TRUE 2022-12-16 20:00:00
## 5419 2022-12-16 20:14:04      TRUE 2022-12-16 20:00:00
## 5420 2022-12-16 20:14:02      TRUE 2022-12-16 20:00:00
## 5421 2022-12-16 20:13:57      TRUE 2022-12-16 20:00:00
## 5422 2022-12-16 20:13:55      TRUE 2022-12-16 20:00:00
## 5423 2022-12-16 20:13:51      TRUE 2022-12-16 20:00:00
## 5424 2022-12-16 20:13:48      TRUE 2022-12-16 20:00:00
## 5425 2022-12-16 20:13:48      TRUE 2022-12-16 20:00:00
## 5426 2022-12-16 20:13:45      TRUE 2022-12-16 20:00:00
## 5427 2022-12-16 20:13:41      TRUE 2022-12-16 20:00:00
## 5428 2022-12-16 20:13:34      TRUE 2022-12-16 20:00:00
## 5429 2022-12-16 20:13:24      TRUE 2022-12-16 20:00:00
## 5430 2022-12-16 20:13:22      TRUE 2022-12-16 20:00:00
## 5431 2022-12-16 20:13:15      TRUE 2022-12-16 20:00:00
## 5432 2022-12-16 20:13:12      TRUE 2022-12-16 20:00:00
## 5433 2022-12-16 20:13:05      TRUE 2022-12-16 20:00:00
## 5434 2022-12-16 20:13:04      TRUE 2022-12-16 20:00:00
## 5435 2022-12-16 20:13:04      TRUE 2022-12-16 20:00:00
## 5436 2022-12-16 20:13:03      TRUE 2022-12-16 20:00:00
## 5437 2022-12-16 20:13:01      TRUE 2022-12-16 20:00:00
## 5438 2022-12-16 20:12:54      TRUE 2022-12-16 20:00:00
## 5439 2022-12-16 20:12:54      TRUE 2022-12-16 20:00:00
## 5440 2022-12-16 20:12:49      TRUE 2022-12-16 20:00:00
## 5441 2022-12-16 20:12:44      TRUE 2022-12-16 20:00:00
## 5442 2022-12-16 20:12:38      TRUE 2022-12-16 20:00:00
## 5443 2022-12-16 20:12:37      TRUE 2022-12-16 20:00:00
## 5444 2022-12-16 20:12:35      TRUE 2022-12-16 20:00:00
## 5445 2022-12-16 20:12:25      TRUE 2022-12-16 20:00:00
## 5446 2022-12-16 20:12:21      TRUE 2022-12-16 20:00:00
## 5447 2022-12-16 20:12:20      TRUE 2022-12-16 20:00:00
## 5448 2022-12-16 20:12:09      TRUE 2022-12-16 20:00:00
## 5449 2022-12-16 20:12:07      TRUE 2022-12-16 20:00:00
## 5450 2022-12-16 20:12:03      TRUE 2022-12-16 20:00:00
## 5451 2022-12-16 20:11:50      TRUE 2022-12-16 20:00:00
## 5452 2022-12-16 20:11:49      TRUE 2022-12-16 20:00:00
## 5453 2022-12-16 20:11:48      TRUE 2022-12-16 20:00:00
## 5454 2022-12-16 20:11:46      TRUE 2022-12-16 20:00:00
## 5455 2022-12-16 20:11:41      TRUE 2022-12-16 20:00:00
## 5456 2022-12-16 20:11:37      TRUE 2022-12-16 20:00:00
## 5457 2022-12-16 20:11:35      TRUE 2022-12-16 20:00:00
## 5458 2022-12-16 20:11:22      TRUE 2022-12-16 20:00:00
## 5459 2022-12-16 20:11:22      TRUE 2022-12-16 20:00:00
## 5460 2022-12-16 20:11:18      TRUE 2022-12-16 20:00:00
## 5461 2022-12-16 20:11:14      TRUE 2022-12-16 20:00:00
## 5462 2022-12-16 20:11:09      TRUE 2022-12-16 20:00:00
## 5463 2022-12-16 20:11:08      TRUE 2022-12-16 20:00:00
## 5464 2022-12-16 20:11:06      TRUE 2022-12-16 20:00:00
## 5465 2022-12-16 20:11:00      TRUE 2022-12-16 20:00:00
## 5466 2022-12-16 20:10:58      TRUE 2022-12-16 20:00:00
## 5467 2022-12-16 20:10:57      TRUE 2022-12-16 20:00:00
## 5468 2022-12-16 20:10:37      TRUE 2022-12-16 20:00:00
## 5469 2022-12-16 20:10:35      TRUE 2022-12-16 20:00:00
## 5470 2022-12-16 20:10:32      TRUE 2022-12-16 20:00:00
## 5471 2022-12-16 20:10:28      TRUE 2022-12-16 20:00:00
## 5472 2022-12-16 20:10:26      TRUE 2022-12-16 20:00:00
## 5473 2022-12-16 20:10:24      TRUE 2022-12-16 20:00:00
## 5474 2022-12-16 20:10:17      TRUE 2022-12-16 20:00:00
## 5475 2022-12-16 20:10:14      TRUE 2022-12-16 20:00:00
## 5476 2022-12-16 20:10:10      TRUE 2022-12-16 20:00:00
## 5477 2022-12-16 20:10:07      TRUE 2022-12-16 20:00:00
## 5478 2022-12-16 20:10:00      TRUE 2022-12-16 20:00:00
## 5479 2022-12-16 20:09:59      TRUE 2022-12-16 20:00:00
## 5480 2022-12-16 20:09:52      TRUE 2022-12-16 20:00:00
## 5481 2022-12-16 20:09:46      TRUE 2022-12-16 20:00:00
## 5482 2022-12-16 20:09:45      TRUE 2022-12-16 20:00:00
## 5483 2022-12-16 20:09:44      TRUE 2022-12-16 20:00:00
## 5484 2022-12-16 20:09:38      TRUE 2022-12-16 20:00:00
## 5485 2022-12-16 20:09:35      TRUE 2022-12-16 20:00:00
## 5486 2022-12-16 20:09:35      TRUE 2022-12-16 20:00:00
## 5487 2022-12-16 20:09:27      TRUE 2022-12-16 20:00:00
## 5488 2022-12-16 20:09:20      TRUE 2022-12-16 20:00:00
## 5489 2022-12-16 20:09:20      TRUE 2022-12-16 20:00:00
## 5490 2022-12-16 20:09:17      TRUE 2022-12-16 20:00:00
## 5491 2022-12-16 20:09:01      TRUE 2022-12-16 20:00:00
## 5492 2022-12-16 20:08:56      TRUE 2022-12-16 20:00:00
## 5493 2022-12-16 20:08:54      TRUE 2022-12-16 20:00:00
## 5494 2022-12-16 20:08:47      TRUE 2022-12-16 20:00:00
## 5495 2022-12-16 20:08:43      TRUE 2022-12-16 20:00:00
## 5496 2022-12-16 20:08:32      TRUE 2022-12-16 20:00:00
## 5497 2022-12-16 20:08:28      TRUE 2022-12-16 20:00:00
## 5498 2022-12-16 20:08:28      TRUE 2022-12-16 20:00:00
## 5499 2022-12-16 20:08:28      TRUE 2022-12-16 20:00:00
## 5500 2022-12-16 20:08:23      TRUE 2022-12-16 20:00:00
## 5501 2022-12-16 20:08:14      TRUE 2022-12-16 20:00:00
## 5502 2022-12-16 20:08:09      TRUE 2022-12-16 20:00:00
## 5503 2022-12-16 20:08:06      TRUE 2022-12-16 20:00:00
## 5504 2022-12-16 20:08:05      TRUE 2022-12-16 20:00:00
## 5505 2022-12-16 20:08:02      TRUE 2022-12-16 20:00:00
## 5506 2022-12-16 20:07:58      TRUE 2022-12-16 20:00:00
## 5507 2022-12-16 20:07:57      TRUE 2022-12-16 20:00:00
## 5508 2022-12-16 20:07:56      TRUE 2022-12-16 20:00:00
## 5509 2022-12-16 20:07:55      TRUE 2022-12-16 20:00:00
## 5510 2022-12-16 20:07:46      TRUE 2022-12-16 20:00:00
## 5511 2022-12-16 20:07:40      TRUE 2022-12-16 20:00:00
## 5512 2022-12-16 20:07:33      TRUE 2022-12-16 20:00:00
## 5513 2022-12-16 20:07:33      TRUE 2022-12-16 20:00:00
## 5514 2022-12-16 20:07:29      TRUE 2022-12-16 20:00:00
## 5515 2022-12-16 20:07:21      TRUE 2022-12-16 20:00:00
## 5516 2022-12-16 20:07:18      TRUE 2022-12-16 20:00:00
## 5517 2022-12-16 20:07:15      TRUE 2022-12-16 20:00:00
## 5518 2022-12-16 20:07:08      TRUE 2022-12-16 20:00:00
## 5519 2022-12-16 20:07:07      TRUE 2022-12-16 20:00:00
## 5520 2022-12-16 20:07:07      TRUE 2022-12-16 20:00:00
## 5521 2022-12-16 20:07:05      TRUE 2022-12-16 20:00:00
## 5522 2022-12-16 20:07:03      TRUE 2022-12-16 20:00:00
## 5523 2022-12-16 20:07:03      TRUE 2022-12-16 20:00:00
## 5524 2022-12-16 20:07:02      TRUE 2022-12-16 20:00:00
## 5525 2022-12-16 20:07:02      TRUE 2022-12-16 20:00:00
## 5526 2022-12-16 20:06:59      TRUE 2022-12-16 20:00:00
## 5527 2022-12-16 20:06:54      TRUE 2022-12-16 20:00:00
## 5528 2022-12-16 20:06:50      TRUE 2022-12-16 20:00:00
## 5529 2022-12-16 20:06:46      TRUE 2022-12-16 20:00:00
## 5530 2022-12-16 20:06:45      TRUE 2022-12-16 20:00:00
## 5531 2022-12-16 20:06:37      TRUE 2022-12-16 20:00:00
## 5532 2022-12-16 20:06:32      TRUE 2022-12-16 20:00:00
## 5533 2022-12-16 20:06:28      TRUE 2022-12-16 20:00:00
## 5534 2022-12-16 20:06:26      TRUE 2022-12-16 20:00:00
## 5535 2022-12-16 20:06:26      TRUE 2022-12-16 20:00:00
## 5536 2022-12-16 20:06:25      TRUE 2022-12-16 20:00:00
## 5537 2022-12-16 20:06:23      TRUE 2022-12-16 20:00:00
## 5538 2022-12-16 20:06:21      TRUE 2022-12-16 20:00:00
## 5539 2022-12-16 20:06:04      TRUE 2022-12-16 20:00:00
## 5540 2022-12-16 20:06:01      TRUE 2022-12-16 20:00:00
## 5541 2022-12-16 20:05:49      TRUE 2022-12-16 20:00:00
## 5542 2022-12-16 20:05:45      TRUE 2022-12-16 20:00:00
## 5543 2022-12-16 20:05:39      TRUE 2022-12-16 20:00:00
## 5544 2022-12-16 20:05:31      TRUE 2022-12-16 20:00:00
## 5545 2022-12-16 20:05:23      TRUE 2022-12-16 20:00:00
## 5546 2022-12-16 20:05:21      TRUE 2022-12-16 20:00:00
## 5547 2022-12-16 20:05:19      TRUE 2022-12-16 20:00:00
## 5548 2022-12-16 20:05:19      TRUE 2022-12-16 20:00:00
## 5549 2022-12-16 20:05:15      TRUE 2022-12-16 20:00:00
## 5550 2022-12-16 20:05:11      TRUE 2022-12-16 20:00:00
## 5551 2022-12-16 20:05:09      TRUE 2022-12-16 20:00:00
## 5552 2022-12-16 20:05:06      TRUE 2022-12-16 20:00:00
## 5553 2022-12-16 20:05:03      TRUE 2022-12-16 20:00:00
## 5554 2022-12-16 20:05:02      TRUE 2022-12-16 20:00:00
## 5555 2022-12-16 20:04:58      TRUE 2022-12-16 20:00:00
## 5556 2022-12-16 20:04:56      TRUE 2022-12-16 20:00:00
## 5557 2022-12-16 20:04:55      TRUE 2022-12-16 20:00:00
## 5558 2022-12-16 20:04:48      TRUE 2022-12-16 20:00:00
## 5559 2022-12-16 20:04:48      TRUE 2022-12-16 20:00:00
## 5560 2022-12-16 20:04:44      TRUE 2022-12-16 20:00:00
## 5561 2022-12-16 20:04:42      TRUE 2022-12-16 20:00:00
## 5562 2022-12-16 20:04:39      TRUE 2022-12-16 20:00:00
## 5563 2022-12-16 20:04:35      TRUE 2022-12-16 20:00:00
## 5564 2022-12-16 20:04:34      TRUE 2022-12-16 20:00:00
## 5565 2022-12-16 20:04:29      TRUE 2022-12-16 20:00:00
## 5566 2022-12-16 20:04:24      TRUE 2022-12-16 20:00:00
## 5567 2022-12-16 20:04:23      TRUE 2022-12-16 20:00:00
## 5568 2022-12-16 20:04:20      TRUE 2022-12-16 20:00:00
## 5569 2022-12-16 20:04:16      TRUE 2022-12-16 20:00:00
## 5570 2022-12-16 20:04:11      TRUE 2022-12-16 20:00:00
## 5571 2022-12-16 20:04:10      TRUE 2022-12-16 20:00:00
## 5572 2022-12-16 20:04:09      TRUE 2022-12-16 20:00:00
## 5573 2022-12-16 20:04:08      TRUE 2022-12-16 20:00:00
## 5574 2022-12-16 20:03:56      TRUE 2022-12-16 20:00:00
## 5575 2022-12-16 20:03:55      TRUE 2022-12-16 20:00:00
## 5576 2022-12-16 20:03:52      TRUE 2022-12-16 20:00:00
## 5577 2022-12-16 20:03:42      TRUE 2022-12-16 20:00:00
## 5578 2022-12-16 20:03:40      TRUE 2022-12-16 20:00:00
## 5579 2022-12-16 20:03:39      TRUE 2022-12-16 20:00:00
## 5580 2022-12-16 20:03:38      TRUE 2022-12-16 20:00:00
## 5581 2022-12-16 20:03:34      TRUE 2022-12-16 20:00:00
## 5582 2022-12-16 20:03:23      TRUE 2022-12-16 20:00:00
## 5583 2022-12-16 20:03:13      TRUE 2022-12-16 20:00:00
## 5584 2022-12-16 20:03:13      TRUE 2022-12-16 20:00:00
## 5585 2022-12-16 20:03:01      TRUE 2022-12-16 20:00:00
## 5586 2022-12-16 20:02:58      TRUE 2022-12-16 20:00:00
## 5587 2022-12-16 20:02:56      TRUE 2022-12-16 20:00:00
## 5588 2022-12-16 20:02:54      TRUE 2022-12-16 20:00:00
## 5589 2022-12-16 20:02:53      TRUE 2022-12-16 20:00:00
## 5590 2022-12-16 20:02:49      TRUE 2022-12-16 20:00:00
## 5591 2022-12-16 20:02:47      TRUE 2022-12-16 20:00:00
## 5592 2022-12-16 20:02:41      TRUE 2022-12-16 20:00:00
## 5593 2022-12-16 20:02:40      TRUE 2022-12-16 20:00:00
## 5594 2022-12-16 20:02:40      TRUE 2022-12-16 20:00:00
## 5595 2022-12-16 20:02:36      TRUE 2022-12-16 20:00:00
## 5596 2022-12-16 20:02:33      TRUE 2022-12-16 20:00:00
## 5597 2022-12-16 20:02:32      TRUE 2022-12-16 20:00:00
## 5598 2022-12-16 20:02:31      TRUE 2022-12-16 20:00:00
## 5599 2022-12-16 20:02:22      TRUE 2022-12-16 20:00:00
## 5600 2022-12-16 20:02:15      TRUE 2022-12-16 20:00:00
## 5601 2022-12-16 20:02:12      TRUE 2022-12-16 20:00:00
## 5602 2022-12-16 20:02:10      TRUE 2022-12-16 20:00:00
## 5603 2022-12-16 20:02:06      TRUE 2022-12-16 20:00:00
## 5604 2022-12-16 20:02:05      TRUE 2022-12-16 20:00:00
## 5605 2022-12-16 20:01:49      TRUE 2022-12-16 20:00:00
## 5606 2022-12-16 20:01:39      TRUE 2022-12-16 20:00:00
## 5607 2022-12-16 20:01:34      TRUE 2022-12-16 20:00:00
## 5608 2022-12-16 20:01:27      TRUE 2022-12-16 20:00:00
## 5609 2022-12-16 20:01:25      TRUE 2022-12-16 20:00:00
## 5610 2022-12-16 20:01:23      TRUE 2022-12-16 20:00:00
## 5611 2022-12-16 20:01:22      TRUE 2022-12-16 20:00:00
## 5612 2022-12-16 20:01:08      TRUE 2022-12-16 20:00:00
## 5613 2022-12-16 20:01:05      TRUE 2022-12-16 20:00:00
## 5614 2022-12-16 20:01:03      TRUE 2022-12-16 20:00:00
## 5615 2022-12-16 20:01:02      TRUE 2022-12-16 20:00:00
## 5616 2022-12-16 20:00:59      TRUE 2022-12-16 20:00:00
## 5617 2022-12-16 20:00:59      TRUE 2022-12-16 20:00:00
## 5618 2022-12-16 20:00:58      TRUE 2022-12-16 20:00:00
## 5619 2022-12-16 20:00:58      TRUE 2022-12-16 20:00:00
## 5620 2022-12-16 20:00:55      TRUE 2022-12-16 20:00:00
## 5621 2022-12-16 20:00:54      TRUE 2022-12-16 20:00:00
## 5622 2022-12-16 20:00:52      TRUE 2022-12-16 20:00:00
## 5623 2022-12-16 20:00:38      TRUE 2022-12-16 20:00:00
## 5624 2022-12-16 20:00:34      TRUE 2022-12-16 20:00:00
## 5625 2022-12-16 20:00:33      TRUE 2022-12-16 20:00:00
## 5626 2022-12-16 20:00:33      TRUE 2022-12-16 20:00:00
## 5627 2022-12-16 20:00:26      TRUE 2022-12-16 20:00:00
## 5628 2022-12-16 20:00:23      TRUE 2022-12-16 20:00:00
## 5629 2022-12-16 20:00:23      TRUE 2022-12-16 20:00:00
## 5630 2022-12-16 20:00:18      TRUE 2022-12-16 20:00:00
## 5631 2022-12-16 20:00:15      TRUE 2022-12-16 20:00:00
## 5632 2022-12-16 20:00:12      TRUE 2022-12-16 20:00:00
## 5633 2022-12-16 20:00:11      TRUE 2022-12-16 20:00:00
## 5634 2022-12-16 20:00:02      TRUE 2022-12-16 20:00:00
## 5635 2022-12-16 20:00:01      TRUE 2022-12-16 20:00:00
## 5636 2022-12-16 19:59:56      TRUE 2022-12-16 20:00:00
## 5637 2022-12-16 19:59:52      TRUE 2022-12-16 20:00:00
## 5638 2022-12-16 19:59:50      TRUE 2022-12-16 20:00:00
## 5639 2022-12-16 19:59:48      TRUE 2022-12-16 20:00:00
## 5640 2022-12-16 19:59:39      TRUE 2022-12-16 20:00:00
## 5641 2022-12-16 19:59:34      TRUE 2022-12-16 20:00:00
## 5642 2022-12-16 19:59:28      TRUE 2022-12-16 20:00:00
## 5643 2022-12-16 19:59:22      TRUE 2022-12-16 20:00:00
## 5644 2022-12-16 19:59:15      TRUE 2022-12-16 20:00:00
## 5645 2022-12-16 19:58:58      TRUE 2022-12-16 20:00:00
## 5646 2022-12-16 19:58:57      TRUE 2022-12-16 20:00:00
## 5647 2022-12-16 19:58:55      TRUE 2022-12-16 20:00:00
## 5648 2022-12-16 19:58:45      TRUE 2022-12-16 20:00:00
## 5649 2022-12-16 19:58:44      TRUE 2022-12-16 20:00:00
## 5650 2022-12-16 19:58:42      TRUE 2022-12-16 20:00:00
## 5651 2022-12-16 19:58:37      TRUE 2022-12-16 20:00:00
## 5652 2022-12-16 19:58:34      TRUE 2022-12-16 20:00:00
## 5653 2022-12-16 19:58:32      TRUE 2022-12-16 20:00:00
## 5654 2022-12-16 19:58:31      TRUE 2022-12-16 20:00:00
## 5655 2022-12-16 19:58:24      TRUE 2022-12-16 20:00:00
## 5656 2022-12-16 19:58:24      TRUE 2022-12-16 20:00:00
## 5657 2022-12-16 19:58:22      TRUE 2022-12-16 20:00:00
## 5658 2022-12-16 19:58:22      TRUE 2022-12-16 20:00:00
## 5659 2022-12-16 19:58:21      TRUE 2022-12-16 20:00:00
## 5660 2022-12-16 19:58:17      TRUE 2022-12-16 20:00:00
## 5661 2022-12-16 19:58:17      TRUE 2022-12-16 20:00:00
## 5662 2022-12-16 19:58:12      TRUE 2022-12-16 20:00:00
## 5663 2022-12-16 19:58:12      TRUE 2022-12-16 20:00:00
## 5664 2022-12-16 19:58:08      TRUE 2022-12-16 20:00:00
## 5665 2022-12-16 19:57:58      TRUE 2022-12-16 20:00:00
## 5666 2022-12-16 19:57:53      TRUE 2022-12-16 20:00:00
## 5667 2022-12-16 19:57:52      TRUE 2022-12-16 20:00:00
## 5668 2022-12-16 19:57:51      TRUE 2022-12-16 20:00:00
## 5669 2022-12-16 19:57:50      TRUE 2022-12-16 20:00:00
## 5670 2022-12-16 19:57:47      TRUE 2022-12-16 20:00:00
## 5671 2022-12-16 19:57:45      TRUE 2022-12-16 20:00:00
## 5672 2022-12-16 19:57:45      TRUE 2022-12-16 20:00:00
## 5673 2022-12-16 19:57:44      TRUE 2022-12-16 20:00:00
## 5674 2022-12-16 19:57:43      TRUE 2022-12-16 20:00:00
## 5675 2022-12-16 19:57:40      TRUE 2022-12-16 20:00:00
## 5676 2022-12-16 19:57:35      TRUE 2022-12-16 20:00:00
## 5677 2022-12-16 19:57:29      TRUE 2022-12-16 20:00:00
## 5678 2022-12-16 19:57:28      TRUE 2022-12-16 20:00:00
## 5679 2022-12-16 19:57:25      TRUE 2022-12-16 20:00:00
## 5680 2022-12-16 19:57:16      TRUE 2022-12-16 20:00:00
## 5681 2022-12-16 19:57:11      TRUE 2022-12-16 20:00:00
## 5682 2022-12-16 19:56:59      TRUE 2022-12-16 20:00:00
## 5683 2022-12-16 19:56:50      TRUE 2022-12-16 20:00:00
## 5684 2022-12-16 19:56:49      TRUE 2022-12-16 20:00:00
## 5685 2022-12-16 19:56:47      TRUE 2022-12-16 20:00:00
## 5686 2022-12-16 19:56:39      TRUE 2022-12-16 20:00:00
## 5687 2022-12-16 19:56:39      TRUE 2022-12-16 20:00:00
## 5688 2022-12-16 19:56:32      TRUE 2022-12-16 20:00:00
## 5689 2022-12-16 19:56:30      TRUE 2022-12-16 20:00:00
## 5690 2022-12-16 19:56:25      TRUE 2022-12-16 20:00:00
## 5691 2022-12-16 19:56:18      TRUE 2022-12-16 20:00:00
## 5692 2022-12-16 19:56:14      TRUE 2022-12-16 20:00:00
## 5693 2022-12-16 19:56:12      TRUE 2022-12-16 20:00:00
## 5694 2022-12-16 19:55:59      TRUE 2022-12-16 20:00:00
## 5695 2022-12-16 19:55:59      TRUE 2022-12-16 20:00:00
## 5696 2022-12-16 19:55:51      TRUE 2022-12-16 20:00:00
## 5697 2022-12-16 19:55:49      TRUE 2022-12-16 20:00:00
## 5698 2022-12-16 19:55:28      TRUE 2022-12-16 20:00:00
## 5699 2022-12-16 19:55:28      TRUE 2022-12-16 20:00:00
## 5700 2022-12-16 19:55:25      TRUE 2022-12-16 20:00:00
## 5701 2022-12-16 19:55:23      TRUE 2022-12-16 20:00:00
## 5702 2022-12-16 19:55:20      TRUE 2022-12-16 20:00:00
## 5703 2022-12-16 19:55:19      TRUE 2022-12-16 20:00:00
## 5704 2022-12-16 19:55:18      TRUE 2022-12-16 20:00:00
## 5705 2022-12-16 19:55:12      TRUE 2022-12-16 20:00:00
## 5706 2022-12-16 19:55:12      TRUE 2022-12-16 20:00:00
## 5707 2022-12-16 19:55:10      TRUE 2022-12-16 20:00:00
## 5708 2022-12-16 19:54:57      TRUE 2022-12-16 20:00:00
## 5709 2022-12-16 19:54:54      TRUE 2022-12-16 20:00:00
## 5710 2022-12-16 19:54:50      TRUE 2022-12-16 20:00:00
## 5711 2022-12-16 19:54:44      TRUE 2022-12-16 20:00:00
## 5712 2022-12-16 19:54:40      TRUE 2022-12-16 20:00:00
## 5713 2022-12-16 19:54:38      TRUE 2022-12-16 20:00:00
## 5714 2022-12-16 19:54:34      TRUE 2022-12-16 20:00:00
## 5715 2022-12-16 19:54:34      TRUE 2022-12-16 20:00:00
## 5716 2022-12-16 19:54:33      TRUE 2022-12-16 20:00:00
## 5717 2022-12-16 19:54:33      TRUE 2022-12-16 20:00:00
## 5718 2022-12-16 19:54:32      TRUE 2022-12-16 20:00:00
## 5719 2022-12-16 19:54:31      TRUE 2022-12-16 20:00:00
## 5720 2022-12-16 19:54:21      TRUE 2022-12-16 20:00:00
## 5721 2022-12-16 19:53:56      TRUE 2022-12-16 20:00:00
## 5722 2022-12-16 19:53:55      TRUE 2022-12-16 20:00:00
## 5723 2022-12-16 19:53:52      TRUE 2022-12-16 20:00:00
## 5724 2022-12-16 19:53:52      TRUE 2022-12-16 20:00:00
## 5725 2022-12-16 19:53:37      TRUE 2022-12-16 20:00:00
## 5726 2022-12-16 19:53:34      TRUE 2022-12-16 20:00:00
## 5727 2022-12-16 19:53:33      TRUE 2022-12-16 20:00:00
## 5728 2022-12-16 19:53:31      TRUE 2022-12-16 20:00:00
## 5729 2022-12-16 19:53:29      TRUE 2022-12-16 20:00:00
## 5730 2022-12-16 19:53:26      TRUE 2022-12-16 20:00:00
## 5731 2022-12-16 19:53:22      TRUE 2022-12-16 20:00:00
## 5732 2022-12-16 19:53:18      TRUE 2022-12-16 20:00:00
## 5733 2022-12-16 19:53:14      TRUE 2022-12-16 20:00:00
## 5734 2022-12-16 19:53:14      TRUE 2022-12-16 20:00:00
## 5735 2022-12-16 19:53:10      TRUE 2022-12-16 20:00:00
## 5736 2022-12-16 19:53:08      TRUE 2022-12-16 20:00:00
## 5737 2022-12-16 19:53:07      TRUE 2022-12-16 20:00:00
## 5738 2022-12-16 19:52:59      TRUE 2022-12-16 20:00:00
## 5739 2022-12-16 19:52:57      TRUE 2022-12-16 20:00:00
## 5740 2022-12-16 19:52:56      TRUE 2022-12-16 20:00:00
## 5741 2022-12-16 19:52:38      TRUE 2022-12-16 20:00:00
## 5742 2022-12-16 19:52:32      TRUE 2022-12-16 20:00:00
## 5743 2022-12-16 19:52:30      TRUE 2022-12-16 20:00:00
## 5744 2022-12-16 19:52:29      TRUE 2022-12-16 20:00:00
## 5745 2022-12-16 19:52:29      TRUE 2022-12-16 20:00:00
## 5746 2022-12-16 19:52:26      TRUE 2022-12-16 20:00:00
## 5747 2022-12-16 19:52:24      TRUE 2022-12-16 20:00:00
## 5748 2022-12-16 19:52:20      TRUE 2022-12-16 20:00:00
## 5749 2022-12-16 19:52:20      TRUE 2022-12-16 20:00:00
## 5750 2022-12-16 19:52:18      TRUE 2022-12-16 20:00:00
## 5751 2022-12-16 19:52:18      TRUE 2022-12-16 20:00:00
## 5752 2022-12-16 19:52:14      TRUE 2022-12-16 20:00:00
## 5753 2022-12-16 19:52:09      TRUE 2022-12-16 20:00:00
## 5754 2022-12-16 19:52:08      TRUE 2022-12-16 20:00:00
## 5755 2022-12-16 19:52:05      TRUE 2022-12-16 20:00:00
## 5756 2022-12-16 19:52:05      TRUE 2022-12-16 20:00:00
## 5757 2022-12-16 19:52:04      TRUE 2022-12-16 20:00:00
## 5758 2022-12-16 19:51:59      TRUE 2022-12-16 20:00:00
## 5759 2022-12-16 19:51:58      TRUE 2022-12-16 20:00:00
## 5760 2022-12-16 19:51:57      TRUE 2022-12-16 20:00:00
## 5761 2022-12-16 19:51:57      TRUE 2022-12-16 20:00:00
## 5762 2022-12-16 19:51:54      TRUE 2022-12-16 20:00:00
## 5763 2022-12-16 19:51:51      TRUE 2022-12-16 20:00:00
## 5764 2022-12-16 19:51:51      TRUE 2022-12-16 20:00:00
## 5765 2022-12-16 19:51:50      TRUE 2022-12-16 20:00:00
## 5766 2022-12-16 19:51:48      TRUE 2022-12-16 20:00:00
## 5767 2022-12-16 19:51:44      TRUE 2022-12-16 20:00:00
## 5768 2022-12-16 19:51:35      TRUE 2022-12-16 20:00:00
## 5769 2022-12-16 19:51:32      TRUE 2022-12-16 20:00:00
## 5770 2022-12-16 19:51:31      TRUE 2022-12-16 20:00:00
## 5771 2022-12-16 19:51:30      TRUE 2022-12-16 20:00:00
## 5772 2022-12-16 19:51:21      TRUE 2022-12-16 20:00:00
## 5773 2022-12-16 19:51:18      TRUE 2022-12-16 20:00:00
## 5774 2022-12-16 19:51:11      TRUE 2022-12-16 20:00:00
## 5775 2022-12-16 19:51:06      TRUE 2022-12-16 20:00:00
## 5776 2022-12-16 19:50:51      TRUE 2022-12-16 20:00:00
## 5777 2022-12-16 19:50:50      TRUE 2022-12-16 20:00:00
## 5778 2022-12-16 19:50:47      TRUE 2022-12-16 20:00:00
## 5779 2022-12-16 19:50:40      TRUE 2022-12-16 20:00:00
## 5780 2022-12-16 19:50:40      TRUE 2022-12-16 20:00:00
## 5781 2022-12-16 19:50:34      TRUE 2022-12-16 20:00:00
## 5782 2022-12-16 19:50:30      TRUE 2022-12-16 20:00:00
## 5783 2022-12-16 19:50:27      TRUE 2022-12-16 20:00:00
## 5784 2022-12-16 19:50:25      TRUE 2022-12-16 20:00:00
## 5785 2022-12-16 19:50:04      TRUE 2022-12-16 20:00:00
## 5786 2022-12-16 19:49:54      TRUE 2022-12-16 20:00:00
## 5787 2022-12-16 19:49:37      TRUE 2022-12-16 20:00:00
## 5788 2022-12-16 19:49:28      TRUE 2022-12-16 20:00:00
## 5789 2022-12-16 19:49:26      TRUE 2022-12-16 20:00:00
## 5790 2022-12-16 19:49:24      TRUE 2022-12-16 20:00:00
## 5791 2022-12-16 19:49:18      TRUE 2022-12-16 20:00:00
## 5792 2022-12-16 19:48:58      TRUE 2022-12-16 20:00:00
## 5793 2022-12-16 19:48:55      TRUE 2022-12-16 20:00:00
## 5794 2022-12-16 19:48:51      TRUE 2022-12-16 20:00:00
## 5795 2022-12-16 19:48:48      TRUE 2022-12-16 20:00:00
## 5796 2022-12-16 19:48:44      TRUE 2022-12-16 20:00:00
## 5797 2022-12-16 19:48:35      TRUE 2022-12-16 20:00:00
## 5798 2022-12-16 19:48:17      TRUE 2022-12-16 20:00:00
## 5799 2022-12-16 19:48:15      TRUE 2022-12-16 20:00:00
## 5800 2022-12-16 19:48:13      TRUE 2022-12-16 20:00:00
## 5801 2022-12-16 19:48:13      TRUE 2022-12-16 20:00:00
## 5802 2022-12-16 19:48:09      TRUE 2022-12-16 20:00:00
## 5803 2022-12-16 19:48:06      TRUE 2022-12-16 20:00:00
## 5804 2022-12-16 19:48:06      TRUE 2022-12-16 20:00:00
## 5805 2022-12-16 19:48:03      TRUE 2022-12-16 20:00:00
## 5806 2022-12-16 19:48:01      TRUE 2022-12-16 20:00:00
## 5807 2022-12-16 19:47:58      TRUE 2022-12-16 20:00:00
## 5808 2022-12-16 19:47:51      TRUE 2022-12-16 20:00:00
## 5809 2022-12-16 19:47:49      TRUE 2022-12-16 20:00:00
## 5810 2022-12-16 19:47:46      TRUE 2022-12-16 20:00:00
## 5811 2022-12-16 19:47:40      TRUE 2022-12-16 20:00:00
## 5812 2022-12-16 19:47:39      TRUE 2022-12-16 20:00:00
## 5813 2022-12-16 19:47:36      TRUE 2022-12-16 20:00:00
## 5814 2022-12-16 19:47:27      TRUE 2022-12-16 20:00:00
## 5815 2022-12-16 19:47:18      TRUE 2022-12-16 20:00:00
## 5816 2022-12-16 19:47:16      TRUE 2022-12-16 20:00:00
## 5817 2022-12-16 19:47:16      TRUE 2022-12-16 20:00:00
## 5818 2022-12-16 19:47:16      TRUE 2022-12-16 20:00:00
## 5819 2022-12-16 19:47:12      TRUE 2022-12-16 20:00:00
## 5820 2022-12-16 19:47:04      TRUE 2022-12-16 20:00:00
## 5821 2022-12-16 19:47:02      TRUE 2022-12-16 20:00:00
## 5822 2022-12-16 19:47:01      TRUE 2022-12-16 20:00:00
## 5823 2022-12-16 19:46:58      TRUE 2022-12-16 20:00:00
## 5824 2022-12-16 19:46:42      TRUE 2022-12-16 20:00:00
## 5825 2022-12-16 19:46:41      TRUE 2022-12-16 20:00:00
## 5826 2022-12-16 19:46:32      TRUE 2022-12-16 20:00:00
## 5827 2022-12-16 19:46:21      TRUE 2022-12-16 20:00:00
## 5828 2022-12-16 19:46:17      TRUE 2022-12-16 20:00:00
## 5829 2022-12-16 19:46:12      TRUE 2022-12-16 20:00:00
## 5830 2022-12-16 19:46:02      TRUE 2022-12-16 20:00:00
## 5831 2022-12-16 19:45:46      TRUE 2022-12-16 20:00:00
## 5832 2022-12-16 19:45:39      TRUE 2022-12-16 20:00:00
## 5833 2022-12-16 19:45:37      TRUE 2022-12-16 20:00:00
## 5834 2022-12-16 19:45:34      TRUE 2022-12-16 20:00:00
## 5835 2022-12-16 19:45:31      TRUE 2022-12-16 20:00:00
## 5836 2022-12-16 19:45:27      TRUE 2022-12-16 20:00:00
## 5837 2022-12-16 19:45:25      TRUE 2022-12-16 20:00:00
## 5838 2022-12-16 19:45:22      TRUE 2022-12-16 20:00:00
## 5839 2022-12-16 19:45:19      TRUE 2022-12-16 20:00:00
## 5840 2022-12-16 19:45:13      TRUE 2022-12-16 20:00:00
## 5841 2022-12-16 19:45:04      TRUE 2022-12-16 20:00:00
## 5842 2022-12-16 19:45:03      TRUE 2022-12-16 20:00:00
## 5843 2022-12-16 19:44:59      TRUE 2022-12-16 20:00:00
## 5844 2022-12-16 19:44:57      TRUE 2022-12-16 20:00:00
## 5845 2022-12-16 19:44:56      TRUE 2022-12-16 20:00:00
## 5846 2022-12-16 19:44:51      TRUE 2022-12-16 20:00:00
## 5847 2022-12-16 19:44:45      TRUE 2022-12-16 20:00:00
## 5848 2022-12-16 19:44:42      TRUE 2022-12-16 20:00:00
## 5849 2022-12-16 19:44:36      TRUE 2022-12-16 20:00:00
## 5850 2022-12-16 19:44:33      TRUE 2022-12-16 20:00:00
## 5851 2022-12-16 19:44:29      TRUE 2022-12-16 20:00:00
## 5852 2022-12-16 19:44:25      TRUE 2022-12-16 20:00:00
## 5853 2022-12-16 19:44:24      TRUE 2022-12-16 20:00:00
## 5854 2022-12-16 19:44:21      TRUE 2022-12-16 20:00:00
## 5855 2022-12-16 19:44:15      TRUE 2022-12-16 20:00:00
## 5856 2022-12-16 19:44:14      TRUE 2022-12-16 20:00:00
## 5857 2022-12-16 19:44:13      TRUE 2022-12-16 20:00:00
## 5858 2022-12-16 19:44:03      TRUE 2022-12-16 20:00:00
## 5859 2022-12-16 19:44:03      TRUE 2022-12-16 20:00:00
## 5860 2022-12-16 19:44:02      TRUE 2022-12-16 20:00:00
## 5861 2022-12-16 19:43:56      TRUE 2022-12-16 20:00:00
## 5862 2022-12-16 19:43:52      TRUE 2022-12-16 20:00:00
## 5863 2022-12-16 19:43:51      TRUE 2022-12-16 20:00:00
## 5864 2022-12-16 19:43:45      TRUE 2022-12-16 20:00:00
## 5865 2022-12-16 19:43:44      TRUE 2022-12-16 20:00:00
## 5866 2022-12-16 19:43:42      TRUE 2022-12-16 20:00:00
## 5867 2022-12-16 19:43:41      TRUE 2022-12-16 20:00:00
## 5868 2022-12-16 19:43:37      TRUE 2022-12-16 20:00:00
## 5869 2022-12-16 19:43:29      TRUE 2022-12-16 20:00:00
## 5870 2022-12-16 19:43:20      TRUE 2022-12-16 20:00:00
## 5871 2022-12-16 19:43:14      TRUE 2022-12-16 20:00:00
## 5872 2022-12-16 19:43:12      TRUE 2022-12-16 20:00:00
## 5873 2022-12-16 19:43:09      TRUE 2022-12-16 20:00:00
## 5874 2022-12-16 19:43:03      TRUE 2022-12-16 20:00:00
## 5875 2022-12-16 19:43:00      TRUE 2022-12-16 20:00:00
## 5876 2022-12-16 19:42:56      TRUE 2022-12-16 20:00:00
## 5877 2022-12-16 19:42:55      TRUE 2022-12-16 20:00:00
## 5878 2022-12-16 19:42:49      TRUE 2022-12-16 20:00:00
## 5879 2022-12-16 19:42:49      TRUE 2022-12-16 20:00:00
## 5880 2022-12-16 19:42:32      TRUE 2022-12-16 20:00:00
## 5881 2022-12-16 19:42:31      TRUE 2022-12-16 20:00:00
## 5882 2022-12-16 19:42:25      TRUE 2022-12-16 20:00:00
## 5883 2022-12-16 19:42:21      TRUE 2022-12-16 20:00:00
## 5884 2022-12-16 19:42:19      TRUE 2022-12-16 20:00:00
## 5885 2022-12-16 19:42:12      TRUE 2022-12-16 20:00:00
## 5886 2022-12-16 19:41:59      TRUE 2022-12-16 20:00:00
## 5887 2022-12-16 19:41:58      TRUE 2022-12-16 20:00:00
## 5888 2022-12-16 19:41:54      TRUE 2022-12-16 20:00:00
## 5889 2022-12-16 19:41:54      TRUE 2022-12-16 20:00:00
## 5890 2022-12-16 19:41:51      TRUE 2022-12-16 20:00:00
## 5891 2022-12-16 19:41:47      TRUE 2022-12-16 20:00:00
## 5892 2022-12-16 19:41:44      TRUE 2022-12-16 20:00:00
## 5893 2022-12-16 19:41:41      TRUE 2022-12-16 20:00:00
## 5894 2022-12-16 19:41:38      TRUE 2022-12-16 20:00:00
## 5895 2022-12-16 19:41:24      TRUE 2022-12-16 20:00:00
## 5896 2022-12-16 19:41:21      TRUE 2022-12-16 20:00:00
## 5897 2022-12-16 19:41:17      TRUE 2022-12-16 20:00:00
## 5898 2022-12-16 19:41:14      TRUE 2022-12-16 20:00:00
## 5899 2022-12-16 19:41:10      TRUE 2022-12-16 20:00:00
## 5900 2022-12-16 19:41:09      TRUE 2022-12-16 20:00:00
## 5901 2022-12-16 19:41:09      TRUE 2022-12-16 20:00:00
## 5902 2022-12-16 19:41:05      TRUE 2022-12-16 20:00:00
## 5903 2022-12-16 19:41:03      TRUE 2022-12-16 20:00:00
## 5904 2022-12-16 19:40:44      TRUE 2022-12-16 20:00:00
## 5905 2022-12-16 19:40:36      TRUE 2022-12-16 20:00:00
## 5906 2022-12-16 19:40:32      TRUE 2022-12-16 20:00:00
## 5907 2022-12-16 19:40:16      TRUE 2022-12-16 20:00:00
## 5908 2022-12-16 19:40:09      TRUE 2022-12-16 20:00:00
## 5909 2022-12-16 19:40:09      TRUE 2022-12-16 20:00:00
## 5910 2022-12-16 19:40:08      TRUE 2022-12-16 20:00:00
## 5911 2022-12-16 19:40:06      TRUE 2022-12-16 20:00:00
## 5912 2022-12-16 19:40:05      TRUE 2022-12-16 20:00:00
## 5913 2022-12-16 19:40:03      TRUE 2022-12-16 20:00:00
## 5914 2022-12-16 19:40:03      TRUE 2022-12-16 20:00:00
## 5915 2022-12-16 19:40:02      TRUE 2022-12-16 20:00:00
## 5916 2022-12-16 19:40:01      TRUE 2022-12-16 20:00:00
## 5917 2022-12-16 19:39:55      TRUE 2022-12-16 20:00:00
## 5918 2022-12-16 19:39:52      TRUE 2022-12-16 20:00:00
## 5919 2022-12-16 19:39:47      TRUE 2022-12-16 20:00:00
## 5920 2022-12-16 19:39:46      TRUE 2022-12-16 20:00:00
## 5921 2022-12-16 19:39:46      TRUE 2022-12-16 20:00:00
## 5922 2022-12-16 19:39:45      TRUE 2022-12-16 20:00:00
## 5923 2022-12-16 19:39:43      TRUE 2022-12-16 20:00:00
## 5924 2022-12-16 19:39:39      TRUE 2022-12-16 20:00:00
## 5925 2022-12-16 19:39:36      TRUE 2022-12-16 20:00:00
## 5926 2022-12-16 19:39:36      TRUE 2022-12-16 20:00:00
## 5927 2022-12-16 19:39:36      TRUE 2022-12-16 20:00:00
## 5928 2022-12-16 19:39:30      TRUE 2022-12-16 20:00:00
## 5929 2022-12-16 19:39:28      TRUE 2022-12-16 20:00:00
## 5930 2022-12-16 19:39:21      TRUE 2022-12-16 20:00:00
## 5931 2022-12-16 19:39:16      TRUE 2022-12-16 20:00:00
## 5932 2022-12-16 19:39:14      TRUE 2022-12-16 20:00:00
## 5933 2022-12-16 19:39:14      TRUE 2022-12-16 20:00:00
## 5934 2022-12-16 19:39:11      TRUE 2022-12-16 20:00:00
## 5935 2022-12-16 19:39:00      TRUE 2022-12-16 20:00:00
## 5936 2022-12-16 19:38:57      TRUE 2022-12-16 20:00:00
## 5937 2022-12-16 19:38:53      TRUE 2022-12-16 20:00:00
## 5938 2022-12-16 19:38:50      TRUE 2022-12-16 20:00:00
## 5939 2022-12-16 19:38:49      TRUE 2022-12-16 20:00:00
## 5940 2022-12-16 19:38:48      TRUE 2022-12-16 20:00:00
## 5941 2022-12-16 19:38:45      TRUE 2022-12-16 20:00:00
## 5942 2022-12-16 19:38:42      TRUE 2022-12-16 20:00:00
## 5943 2022-12-16 19:38:39      TRUE 2022-12-16 20:00:00
## 5944 2022-12-16 19:38:34      TRUE 2022-12-16 20:00:00
## 5945 2022-12-16 19:38:33      TRUE 2022-12-16 20:00:00
## 5946 2022-12-16 19:38:31      TRUE 2022-12-16 20:00:00
## 5947 2022-12-16 19:38:29      TRUE 2022-12-16 20:00:00
## 5948 2022-12-16 19:38:29      TRUE 2022-12-16 20:00:00
## 5949 2022-12-16 19:38:29      TRUE 2022-12-16 20:00:00
## 5950 2022-12-16 19:38:09      TRUE 2022-12-16 20:00:00
## 5951 2022-12-16 19:38:08      TRUE 2022-12-16 20:00:00
## 5952 2022-12-16 19:38:06      TRUE 2022-12-16 20:00:00
## 5953 2022-12-16 19:37:57      TRUE 2022-12-16 20:00:00
## 5954 2022-12-16 19:37:55      TRUE 2022-12-16 20:00:00
## 5955 2022-12-16 19:37:54      TRUE 2022-12-16 20:00:00
## 5956 2022-12-16 19:37:47      TRUE 2022-12-16 20:00:00
## 5957 2022-12-16 19:37:43      TRUE 2022-12-16 20:00:00
## 5958 2022-12-16 19:37:43      TRUE 2022-12-16 20:00:00
## 5959 2022-12-16 19:37:36      TRUE 2022-12-16 20:00:00
## 5960 2022-12-16 19:37:32      TRUE 2022-12-16 20:00:00
## 5961 2022-12-16 19:37:29      TRUE 2022-12-16 20:00:00
## 5962 2022-12-16 19:37:29      TRUE 2022-12-16 20:00:00
## 5963 2022-12-16 19:37:19      TRUE 2022-12-16 20:00:00
## 5964 2022-12-16 19:37:10      TRUE 2022-12-16 20:00:00
## 5965 2022-12-16 19:37:08      TRUE 2022-12-16 20:00:00
## 5966 2022-12-16 19:37:01      TRUE 2022-12-16 20:00:00
## 5967 2022-12-16 19:36:58      TRUE 2022-12-16 20:00:00
## 5968 2022-12-16 19:36:58      TRUE 2022-12-16 20:00:00
## 5969 2022-12-16 19:36:58      TRUE 2022-12-16 20:00:00
## 5970 2022-12-16 19:36:50      TRUE 2022-12-16 20:00:00
## 5971 2022-12-16 19:36:50      TRUE 2022-12-16 20:00:00
## 5972 2022-12-16 19:36:48      TRUE 2022-12-16 20:00:00
## 5973 2022-12-16 19:36:46      TRUE 2022-12-16 20:00:00
## 5974 2022-12-16 19:36:45      TRUE 2022-12-16 20:00:00
## 5975 2022-12-16 19:36:45      TRUE 2022-12-16 20:00:00
## 5976 2022-12-16 19:36:37      TRUE 2022-12-16 20:00:00
## 5977 2022-12-16 19:36:36      TRUE 2022-12-16 20:00:00
## 5978 2022-12-16 19:36:24      TRUE 2022-12-16 20:00:00
## 5979 2022-12-16 19:36:23      TRUE 2022-12-16 20:00:00
## 5980 2022-12-16 19:36:14      TRUE 2022-12-16 20:00:00
## 5981 2022-12-16 19:36:13      TRUE 2022-12-16 20:00:00
## 5982 2022-12-16 19:36:01      TRUE 2022-12-16 20:00:00
## 5983 2022-12-16 19:35:58      TRUE 2022-12-16 20:00:00
## 5984 2022-12-16 19:35:52      TRUE 2022-12-16 20:00:00
## 5985 2022-12-16 19:35:51      TRUE 2022-12-16 20:00:00
## 5986 2022-12-16 19:35:49      TRUE 2022-12-16 20:00:00
## 5987 2022-12-16 19:35:45      TRUE 2022-12-16 20:00:00
## 5988 2022-12-16 19:35:45      TRUE 2022-12-16 20:00:00
## 5989 2022-12-16 19:35:39      TRUE 2022-12-16 20:00:00
## 5990 2022-12-16 19:35:31      TRUE 2022-12-16 20:00:00
## 5991 2022-12-16 19:35:30      TRUE 2022-12-16 20:00:00
## 5992 2022-12-16 19:35:27      TRUE 2022-12-16 20:00:00
## 5993 2022-12-16 19:35:16      TRUE 2022-12-16 20:00:00
## 5994 2022-12-16 19:35:12      TRUE 2022-12-16 20:00:00
## 5995 2022-12-16 19:35:07      TRUE 2022-12-16 20:00:00
## 5996 2022-12-16 19:35:05      TRUE 2022-12-16 20:00:00
## 5997 2022-12-16 19:35:01      TRUE 2022-12-16 20:00:00
## 5998 2022-12-16 19:34:58      TRUE 2022-12-16 20:00:00
## 5999 2022-12-16 19:34:54      TRUE 2022-12-16 20:00:00
## 6000 2022-12-16 19:34:49      TRUE 2022-12-16 20:00:00
## 6001 2022-12-16 19:34:47      TRUE 2022-12-16 20:00:00
## 6002 2022-12-16 19:34:44      TRUE 2022-12-16 20:00:00
## 6003 2022-12-16 19:34:36      TRUE 2022-12-16 20:00:00
## 6004 2022-12-16 19:34:32      TRUE 2022-12-16 20:00:00
## 6005 2022-12-16 19:34:32      TRUE 2022-12-16 20:00:00
## 6006 2022-12-16 19:34:29      TRUE 2022-12-16 20:00:00
## 6007 2022-12-16 19:34:28      TRUE 2022-12-16 20:00:00
## 6008 2022-12-16 19:34:28      TRUE 2022-12-16 20:00:00
## 6009 2022-12-16 19:34:23      TRUE 2022-12-16 20:00:00
## 6010 2022-12-16 19:34:21      TRUE 2022-12-16 20:00:00
## 6011 2022-12-16 19:34:20      TRUE 2022-12-16 20:00:00
## 6012 2022-12-16 19:34:18      TRUE 2022-12-16 20:00:00
## 6013 2022-12-16 19:34:16      TRUE 2022-12-16 20:00:00
## 6014 2022-12-16 19:34:15      TRUE 2022-12-16 20:00:00
## 6015 2022-12-16 19:34:12      TRUE 2022-12-16 20:00:00
## 6016 2022-12-16 19:34:08      TRUE 2022-12-16 20:00:00
## 6017 2022-12-16 19:34:05      TRUE 2022-12-16 20:00:00
## 6018 2022-12-16 19:34:04      TRUE 2022-12-16 20:00:00
## 6019 2022-12-16 19:33:57      TRUE 2022-12-16 20:00:00
## 6020 2022-12-16 19:33:53      TRUE 2022-12-16 20:00:00
## 6021 2022-12-16 19:33:53      TRUE 2022-12-16 20:00:00
## 6022 2022-12-16 19:33:51      TRUE 2022-12-16 20:00:00
## 6023 2022-12-16 19:33:49      TRUE 2022-12-16 20:00:00
## 6024 2022-12-16 19:33:43      TRUE 2022-12-16 20:00:00
## 6025 2022-12-16 19:33:42      TRUE 2022-12-16 20:00:00
## 6026 2022-12-16 19:33:37      TRUE 2022-12-16 20:00:00
## 6027 2022-12-16 19:33:35      TRUE 2022-12-16 20:00:00
## 6028 2022-12-16 19:33:32      TRUE 2022-12-16 20:00:00
## 6029 2022-12-16 19:33:31      TRUE 2022-12-16 20:00:00
## 6030 2022-12-16 19:33:23      TRUE 2022-12-16 20:00:00
## 6031 2022-12-16 19:33:21      TRUE 2022-12-16 20:00:00
## 6032 2022-12-16 19:33:19      TRUE 2022-12-16 20:00:00
## 6033 2022-12-16 19:33:14      TRUE 2022-12-16 20:00:00
## 6034 2022-12-16 19:33:14      TRUE 2022-12-16 20:00:00
## 6035 2022-12-16 19:33:12      TRUE 2022-12-16 20:00:00
## 6036 2022-12-16 19:33:10      TRUE 2022-12-16 20:00:00
## 6037 2022-12-16 19:33:05      TRUE 2022-12-16 20:00:00
## 6038 2022-12-16 19:33:05      TRUE 2022-12-16 20:00:00
## 6039 2022-12-16 19:33:03      TRUE 2022-12-16 20:00:00
## 6040 2022-12-16 19:32:57      TRUE 2022-12-16 20:00:00
## 6041 2022-12-16 19:32:56      TRUE 2022-12-16 20:00:00
## 6042 2022-12-16 19:32:55      TRUE 2022-12-16 20:00:00
## 6043 2022-12-16 19:32:54      TRUE 2022-12-16 20:00:00
## 6044 2022-12-16 19:32:49      TRUE 2022-12-16 20:00:00
## 6045 2022-12-16 19:32:48      TRUE 2022-12-16 20:00:00
## 6046 2022-12-16 19:32:47      TRUE 2022-12-16 20:00:00
## 6047 2022-12-16 19:32:41      TRUE 2022-12-16 20:00:00
## 6048 2022-12-16 19:32:35      TRUE 2022-12-16 20:00:00
## 6049 2022-12-16 19:32:28      TRUE 2022-12-16 20:00:00
## 6050 2022-12-16 19:32:21      TRUE 2022-12-16 20:00:00
## 6051 2022-12-16 19:32:20      TRUE 2022-12-16 20:00:00
## 6052 2022-12-16 19:32:04      TRUE 2022-12-16 20:00:00
## 6053 2022-12-16 19:32:03      TRUE 2022-12-16 20:00:00
## 6054 2022-12-16 19:31:59      TRUE 2022-12-16 20:00:00
## 6055 2022-12-16 19:31:50      TRUE 2022-12-16 20:00:00
## 6056 2022-12-16 19:31:36      TRUE 2022-12-16 20:00:00
## 6057 2022-12-16 19:31:31      TRUE 2022-12-16 20:00:00
## 6058 2022-12-16 19:31:23      TRUE 2022-12-16 20:00:00
## 6059 2022-12-16 19:31:18      TRUE 2022-12-16 20:00:00
## 6060 2022-12-16 19:31:11      TRUE 2022-12-16 20:00:00
## 6061 2022-12-16 19:31:09      TRUE 2022-12-16 20:00:00
## 6062 2022-12-16 19:31:01      TRUE 2022-12-16 20:00:00
## 6063 2022-12-16 19:31:01      TRUE 2022-12-16 20:00:00
## 6064 2022-12-16 19:30:51      TRUE 2022-12-16 20:00:00
## 6065 2022-12-16 19:30:46      TRUE 2022-12-16 20:00:00
## 6066 2022-12-16 19:30:42      TRUE 2022-12-16 20:00:00
## 6067 2022-12-16 19:30:41      TRUE 2022-12-16 20:00:00
## 6068 2022-12-16 19:30:36      TRUE 2022-12-16 20:00:00
## 6069 2022-12-16 19:30:32      TRUE 2022-12-16 20:00:00
## 6070 2022-12-16 19:30:19      TRUE 2022-12-16 20:00:00
## 6071 2022-12-16 19:30:18      TRUE 2022-12-16 20:00:00
## 6072 2022-12-16 19:30:10      TRUE 2022-12-16 20:00:00
## 6073 2022-12-16 19:30:08      TRUE 2022-12-16 20:00:00
## 6074 2022-12-16 19:30:05      TRUE 2022-12-16 20:00:00
## 6075 2022-12-16 19:30:04      TRUE 2022-12-16 20:00:00
## 6076 2022-12-16 19:30:00      TRUE 2022-12-16 20:00:00
## 6077 2022-12-16 19:29:47      TRUE 2022-12-16 19:00:00
## 6078 2022-12-16 19:29:47      TRUE 2022-12-16 19:00:00
## 6079 2022-12-16 19:29:45      TRUE 2022-12-16 19:00:00
## 6080 2022-12-16 19:29:44      TRUE 2022-12-16 19:00:00
## 6081 2022-12-16 19:29:43      TRUE 2022-12-16 19:00:00
## 6082 2022-12-16 19:29:43      TRUE 2022-12-16 19:00:00
## 6083 2022-12-16 19:29:37      TRUE 2022-12-16 19:00:00
## 6084 2022-12-16 19:29:27      TRUE 2022-12-16 19:00:00
## 6085 2022-12-16 19:29:23      TRUE 2022-12-16 19:00:00
## 6086 2022-12-16 19:29:15      TRUE 2022-12-16 19:00:00
## 6087 2022-12-16 19:29:13      TRUE 2022-12-16 19:00:00
## 6088 2022-12-16 19:29:13      TRUE 2022-12-16 19:00:00
## 6089 2022-12-16 19:29:12      TRUE 2022-12-16 19:00:00
## 6090 2022-12-16 19:29:05      TRUE 2022-12-16 19:00:00
## 6091 2022-12-16 19:28:53      TRUE 2022-12-16 19:00:00
## 6092 2022-12-16 19:28:53      TRUE 2022-12-16 19:00:00
## 6093 2022-12-16 19:28:52      TRUE 2022-12-16 19:00:00
## 6094 2022-12-16 19:28:51      TRUE 2022-12-16 19:00:00
## 6095 2022-12-16 19:28:49      TRUE 2022-12-16 19:00:00
## 6096 2022-12-16 19:28:41      TRUE 2022-12-16 19:00:00
## 6097 2022-12-16 19:28:39      TRUE 2022-12-16 19:00:00
## 6098 2022-12-16 19:28:31      TRUE 2022-12-16 19:00:00
## 6099 2022-12-16 19:28:27      TRUE 2022-12-16 19:00:00
## 6100 2022-12-16 19:28:21      TRUE 2022-12-16 19:00:00
## 6101 2022-12-16 19:28:17      TRUE 2022-12-16 19:00:00
## 6102 2022-12-16 19:28:14      TRUE 2022-12-16 19:00:00
## 6103 2022-12-16 19:28:11      TRUE 2022-12-16 19:00:00
## 6104 2022-12-16 19:28:10      TRUE 2022-12-16 19:00:00
## 6105 2022-12-16 19:28:03      TRUE 2022-12-16 19:00:00
## 6106 2022-12-16 19:28:00      TRUE 2022-12-16 19:00:00
## 6107 2022-12-16 19:28:00      TRUE 2022-12-16 19:00:00
## 6108 2022-12-16 19:27:53      TRUE 2022-12-16 19:00:00
## 6109 2022-12-16 19:27:50      TRUE 2022-12-16 19:00:00
## 6110 2022-12-16 19:27:48      TRUE 2022-12-16 19:00:00
## 6111 2022-12-16 19:27:45      TRUE 2022-12-16 19:00:00
## 6112 2022-12-16 19:27:41      TRUE 2022-12-16 19:00:00
## 6113 2022-12-16 19:27:38      TRUE 2022-12-16 19:00:00
## 6114 2022-12-16 19:27:35      TRUE 2022-12-16 19:00:00
## 6115 2022-12-16 19:27:33      TRUE 2022-12-16 19:00:00
## 6116 2022-12-16 19:27:31      TRUE 2022-12-16 19:00:00
## 6117 2022-12-16 19:27:30      TRUE 2022-12-16 19:00:00
## 6118 2022-12-16 19:27:28      TRUE 2022-12-16 19:00:00
## 6119 2022-12-16 19:27:20      TRUE 2022-12-16 19:00:00
## 6120 2022-12-16 19:27:19      TRUE 2022-12-16 19:00:00
## 6121 2022-12-16 19:27:16      TRUE 2022-12-16 19:00:00
## 6122 2022-12-16 19:27:14      TRUE 2022-12-16 19:00:00
## 6123 2022-12-16 19:27:12      TRUE 2022-12-16 19:00:00
## 6124 2022-12-16 19:27:09      TRUE 2022-12-16 19:00:00
## 6125 2022-12-16 19:27:08      TRUE 2022-12-16 19:00:00
## 6126 2022-12-16 19:27:04      TRUE 2022-12-16 19:00:00
## 6127 2022-12-16 19:27:02      TRUE 2022-12-16 19:00:00
## 6128 2022-12-16 19:27:02      TRUE 2022-12-16 19:00:00
## 6129 2022-12-16 19:27:00      TRUE 2022-12-16 19:00:00
## 6130 2022-12-16 19:26:58      TRUE 2022-12-16 19:00:00
## 6131 2022-12-16 19:26:57      TRUE 2022-12-16 19:00:00
## 6132 2022-12-16 19:26:56      TRUE 2022-12-16 19:00:00
## 6133 2022-12-16 19:26:50      TRUE 2022-12-16 19:00:00
## 6134 2022-12-16 19:26:46      TRUE 2022-12-16 19:00:00
## 6135 2022-12-16 19:26:46      TRUE 2022-12-16 19:00:00
## 6136 2022-12-16 19:26:42      TRUE 2022-12-16 19:00:00
## 6137 2022-12-16 19:26:41      TRUE 2022-12-16 19:00:00
## 6138 2022-12-16 19:26:41      TRUE 2022-12-16 19:00:00
## 6139 2022-12-16 19:26:37      TRUE 2022-12-16 19:00:00
## 6140 2022-12-16 19:26:36      TRUE 2022-12-16 19:00:00
## 6141 2022-12-16 19:26:35      TRUE 2022-12-16 19:00:00
## 6142 2022-12-16 19:26:32      TRUE 2022-12-16 19:00:00
## 6143 2022-12-16 19:26:30      TRUE 2022-12-16 19:00:00
## 6144 2022-12-16 19:26:27      TRUE 2022-12-16 19:00:00
## 6145 2022-12-16 19:26:27      TRUE 2022-12-16 19:00:00
## 6146 2022-12-16 19:26:24      TRUE 2022-12-16 19:00:00
## 6147 2022-12-16 19:26:24      TRUE 2022-12-16 19:00:00
## 6148 2022-12-16 19:26:23      TRUE 2022-12-16 19:00:00
## 6149 2022-12-16 19:26:22      TRUE 2022-12-16 19:00:00
## 6150 2022-12-16 19:26:21      TRUE 2022-12-16 19:00:00
## 6151 2022-12-16 19:26:21      TRUE 2022-12-16 19:00:00
## 6152 2022-12-16 19:26:14      TRUE 2022-12-16 19:00:00
## 6153 2022-12-16 19:26:10      TRUE 2022-12-16 19:00:00
## 6154 2022-12-16 19:26:07      TRUE 2022-12-16 19:00:00
## 6155 2022-12-16 19:26:06      TRUE 2022-12-16 19:00:00
## 6156 2022-12-16 19:26:02      TRUE 2022-12-16 19:00:00
## 6157 2022-12-16 19:25:51      TRUE 2022-12-16 19:00:00
## 6158 2022-12-16 19:25:50      TRUE 2022-12-16 19:00:00
## 6159 2022-12-16 19:25:48      TRUE 2022-12-16 19:00:00
## 6160 2022-12-16 19:25:45      TRUE 2022-12-16 19:00:00
## 6161 2022-12-16 19:25:34      TRUE 2022-12-16 19:00:00
## 6162 2022-12-16 19:25:33      TRUE 2022-12-16 19:00:00
## 6163 2022-12-16 19:25:31      TRUE 2022-12-16 19:00:00
## 6164 2022-12-16 19:25:31      TRUE 2022-12-16 19:00:00
## 6165 2022-12-16 19:25:31      TRUE 2022-12-16 19:00:00
## 6166 2022-12-16 19:25:22      TRUE 2022-12-16 19:00:00
## 6167 2022-12-16 19:25:21      TRUE 2022-12-16 19:00:00
## 6168 2022-12-16 19:25:15      TRUE 2022-12-16 19:00:00
## 6169 2022-12-16 19:25:14      TRUE 2022-12-16 19:00:00
## 6170 2022-12-16 19:25:13      TRUE 2022-12-16 19:00:00
## 6171 2022-12-16 19:25:04      TRUE 2022-12-16 19:00:00
## 6172 2022-12-16 19:25:01      TRUE 2022-12-16 19:00:00
## 6173 2022-12-16 19:24:57      TRUE 2022-12-16 19:00:00
## 6174 2022-12-16 19:24:55      TRUE 2022-12-16 19:00:00
## 6175 2022-12-16 19:24:52      TRUE 2022-12-16 19:00:00
## 6176 2022-12-16 19:24:50      TRUE 2022-12-16 19:00:00
## 6177 2022-12-16 19:24:50      TRUE 2022-12-16 19:00:00
## 6178 2022-12-16 19:24:41      TRUE 2022-12-16 19:00:00
## 6179 2022-12-16 19:24:39      TRUE 2022-12-16 19:00:00
## 6180 2022-12-16 19:24:39      TRUE 2022-12-16 19:00:00
## 6181 2022-12-16 19:24:36      TRUE 2022-12-16 19:00:00
## 6182 2022-12-16 19:24:34      TRUE 2022-12-16 19:00:00
## 6183 2022-12-16 19:24:32      TRUE 2022-12-16 19:00:00
## 6184 2022-12-16 19:24:32      TRUE 2022-12-16 19:00:00
## 6185 2022-12-16 19:24:32      TRUE 2022-12-16 19:00:00
## 6186 2022-12-16 19:24:30      TRUE 2022-12-16 19:00:00
## 6187 2022-12-16 19:24:16      TRUE 2022-12-16 19:00:00
## 6188 2022-12-16 19:24:11      TRUE 2022-12-16 19:00:00
## 6189 2022-12-16 19:24:11      TRUE 2022-12-16 19:00:00
## 6190 2022-12-16 19:24:06      TRUE 2022-12-16 19:00:00
## 6191 2022-12-16 19:24:05      TRUE 2022-12-16 19:00:00
## 6192 2022-12-16 19:24:02      TRUE 2022-12-16 19:00:00
## 6193 2022-12-16 19:23:56      TRUE 2022-12-16 19:00:00
## 6194 2022-12-16 19:23:56      TRUE 2022-12-16 19:00:00
## 6195 2022-12-16 19:23:51      TRUE 2022-12-16 19:00:00
## 6196 2022-12-16 19:23:49      TRUE 2022-12-16 19:00:00
## 6197 2022-12-16 19:23:27      TRUE 2022-12-16 19:00:00
## 6198 2022-12-16 19:23:27      TRUE 2022-12-16 19:00:00
## 6199 2022-12-16 19:23:22      TRUE 2022-12-16 19:00:00
## 6200 2022-12-16 19:23:21      TRUE 2022-12-16 19:00:00
## 6201 2022-12-16 19:23:21      TRUE 2022-12-16 19:00:00
## 6202 2022-12-16 19:23:16      TRUE 2022-12-16 19:00:00
## 6203 2022-12-16 19:23:14      TRUE 2022-12-16 19:00:00
## 6204 2022-12-16 19:23:04      TRUE 2022-12-16 19:00:00
## 6205 2022-12-16 19:22:59      TRUE 2022-12-16 19:00:00
## 6206 2022-12-16 19:22:58      TRUE 2022-12-16 19:00:00
## 6207 2022-12-16 19:22:51      TRUE 2022-12-16 19:00:00
## 6208 2022-12-16 19:22:47      TRUE 2022-12-16 19:00:00
## 6209 2022-12-16 19:22:44      TRUE 2022-12-16 19:00:00
## 6210 2022-12-16 19:22:42      TRUE 2022-12-16 19:00:00
## 6211 2022-12-16 19:22:41      TRUE 2022-12-16 19:00:00
## 6212 2022-12-16 19:22:41      TRUE 2022-12-16 19:00:00
## 6213 2022-12-16 19:22:39      TRUE 2022-12-16 19:00:00
## 6214 2022-12-16 19:22:33      TRUE 2022-12-16 19:00:00
## 6215 2022-12-16 19:22:29      TRUE 2022-12-16 19:00:00
## 6216 2022-12-16 19:22:20      TRUE 2022-12-16 19:00:00
## 6217 2022-12-16 19:22:15      TRUE 2022-12-16 19:00:00
## 6218 2022-12-16 19:22:09      TRUE 2022-12-16 19:00:00
## 6219 2022-12-16 19:22:09      TRUE 2022-12-16 19:00:00
## 6220 2022-12-16 19:22:04      TRUE 2022-12-16 19:00:00
## 6221 2022-12-16 19:22:00      TRUE 2022-12-16 19:00:00
## 6222 2022-12-16 19:21:51      TRUE 2022-12-16 19:00:00
## 6223 2022-12-16 19:21:51      TRUE 2022-12-16 19:00:00
## 6224 2022-12-16 19:21:49      TRUE 2022-12-16 19:00:00
## 6225 2022-12-16 19:21:45      TRUE 2022-12-16 19:00:00
## 6226 2022-12-16 19:21:40      TRUE 2022-12-16 19:00:00
## 6227 2022-12-16 19:21:38      TRUE 2022-12-16 19:00:00
## 6228 2022-12-16 19:21:29      TRUE 2022-12-16 19:00:00
## 6229 2022-12-16 19:21:28      TRUE 2022-12-16 19:00:00
## 6230 2022-12-16 19:21:19      TRUE 2022-12-16 19:00:00
## 6231 2022-12-16 19:21:19      TRUE 2022-12-16 19:00:00
## 6232 2022-12-16 19:21:17      TRUE 2022-12-16 19:00:00
## 6233 2022-12-16 19:21:15      TRUE 2022-12-16 19:00:00
## 6234 2022-12-16 19:21:14      TRUE 2022-12-16 19:00:00
## 6235 2022-12-16 19:21:12      TRUE 2022-12-16 19:00:00
## 6236 2022-12-16 19:21:08      TRUE 2022-12-16 19:00:00
## 6237 2022-12-16 19:21:07      TRUE 2022-12-16 19:00:00
## 6238 2022-12-16 19:21:06      TRUE 2022-12-16 19:00:00
## 6239 2022-12-16 19:21:00      TRUE 2022-12-16 19:00:00
## 6240 2022-12-16 19:21:00      TRUE 2022-12-16 19:00:00
## 6241 2022-12-16 19:20:57      TRUE 2022-12-16 19:00:00
## 6242 2022-12-16 19:20:56      TRUE 2022-12-16 19:00:00
## 6243 2022-12-16 19:20:48      TRUE 2022-12-16 19:00:00
## 6244 2022-12-16 19:20:45      TRUE 2022-12-16 19:00:00
## 6245 2022-12-16 19:20:44      TRUE 2022-12-16 19:00:00
## 6246 2022-12-16 19:20:43      TRUE 2022-12-16 19:00:00
## 6247 2022-12-16 19:20:42      TRUE 2022-12-16 19:00:00
## 6248 2022-12-16 19:20:41      TRUE 2022-12-16 19:00:00
## 6249 2022-12-16 19:20:39      TRUE 2022-12-16 19:00:00
## 6250 2022-12-16 19:20:38      TRUE 2022-12-16 19:00:00
## 6251 2022-12-16 19:20:37      TRUE 2022-12-16 19:00:00
## 6252 2022-12-16 19:20:35      TRUE 2022-12-16 19:00:00
## 6253 2022-12-16 19:20:33      TRUE 2022-12-16 19:00:00
## 6254 2022-12-16 19:20:31      TRUE 2022-12-16 19:00:00
## 6255 2022-12-16 19:20:27      TRUE 2022-12-16 19:00:00
## 6256 2022-12-16 19:20:14      TRUE 2022-12-16 19:00:00
## 6257 2022-12-16 19:20:13      TRUE 2022-12-16 19:00:00
## 6258 2022-12-16 19:20:12      TRUE 2022-12-16 19:00:00
## 6259 2022-12-16 19:20:10      TRUE 2022-12-16 19:00:00
## 6260 2022-12-16 19:20:10      TRUE 2022-12-16 19:00:00
## 6261 2022-12-16 19:20:08      TRUE 2022-12-16 19:00:00
## 6262 2022-12-16 19:20:08      TRUE 2022-12-16 19:00:00
## 6263 2022-12-16 19:20:00      TRUE 2022-12-16 19:00:00
## 6264 2022-12-16 19:20:00      TRUE 2022-12-16 19:00:00
## 6265 2022-12-16 19:19:58      TRUE 2022-12-16 19:00:00
## 6266 2022-12-16 19:19:47      TRUE 2022-12-16 19:00:00
## 6267 2022-12-16 19:19:43      TRUE 2022-12-16 19:00:00
## 6268 2022-12-16 19:19:42      TRUE 2022-12-16 19:00:00
## 6269 2022-12-16 19:19:36      TRUE 2022-12-16 19:00:00
## 6270 2022-12-16 19:19:36      TRUE 2022-12-16 19:00:00
## 6271 2022-12-16 19:19:35      TRUE 2022-12-16 19:00:00
## 6272 2022-12-16 19:19:34      TRUE 2022-12-16 19:00:00
## 6273 2022-12-16 19:19:34      TRUE 2022-12-16 19:00:00
## 6274 2022-12-16 19:19:32      TRUE 2022-12-16 19:00:00
## 6275 2022-12-16 19:19:32      TRUE 2022-12-16 19:00:00
## 6276 2022-12-16 19:19:30      TRUE 2022-12-16 19:00:00
## 6277 2022-12-16 19:19:29      TRUE 2022-12-16 19:00:00
## 6278 2022-12-16 19:19:20      TRUE 2022-12-16 19:00:00
## 6279 2022-12-16 19:19:19      TRUE 2022-12-16 19:00:00
## 6280 2022-12-16 19:19:19      TRUE 2022-12-16 19:00:00
## 6281 2022-12-16 19:19:18      TRUE 2022-12-16 19:00:00
## 6282 2022-12-16 19:19:09      TRUE 2022-12-16 19:00:00
## 6283 2022-12-16 19:19:06      TRUE 2022-12-16 19:00:00
## 6284 2022-12-16 19:19:05      TRUE 2022-12-16 19:00:00
## 6285 2022-12-16 19:19:04      TRUE 2022-12-16 19:00:00
## 6286 2022-12-16 19:18:59      TRUE 2022-12-16 19:00:00
## 6287 2022-12-16 19:18:57      TRUE 2022-12-16 19:00:00
## 6288 2022-12-16 19:18:56      TRUE 2022-12-16 19:00:00
## 6289 2022-12-16 19:18:55      TRUE 2022-12-16 19:00:00
## 6290 2022-12-16 19:18:54      TRUE 2022-12-16 19:00:00
## 6291 2022-12-16 19:18:53      TRUE 2022-12-16 19:00:00
## 6292 2022-12-16 19:18:51      TRUE 2022-12-16 19:00:00
## 6293 2022-12-16 19:18:49      TRUE 2022-12-16 19:00:00
## 6294 2022-12-16 19:18:47      TRUE 2022-12-16 19:00:00
## 6295 2022-12-16 19:18:45      TRUE 2022-12-16 19:00:00
## 6296 2022-12-16 19:18:39      TRUE 2022-12-16 19:00:00
## 6297 2022-12-16 19:18:34      TRUE 2022-12-16 19:00:00
## 6298 2022-12-16 19:18:32      TRUE 2022-12-16 19:00:00
## 6299 2022-12-16 19:18:30      TRUE 2022-12-16 19:00:00
## 6300 2022-12-16 19:18:27      TRUE 2022-12-16 19:00:00
## 6301 2022-12-16 19:18:23      TRUE 2022-12-16 19:00:00
## 6302 2022-12-16 19:18:23      TRUE 2022-12-16 19:00:00
## 6303 2022-12-16 19:18:22      TRUE 2022-12-16 19:00:00
## 6304 2022-12-16 19:18:22      TRUE 2022-12-16 19:00:00
## 6305 2022-12-16 19:18:22      TRUE 2022-12-16 19:00:00
## 6306 2022-12-16 19:18:17      TRUE 2022-12-16 19:00:00
## 6307 2022-12-16 19:18:14      TRUE 2022-12-16 19:00:00
## 6308 2022-12-16 19:18:09      TRUE 2022-12-16 19:00:00
## 6309 2022-12-16 19:18:05      TRUE 2022-12-16 19:00:00
## 6310 2022-12-16 19:17:56      TRUE 2022-12-16 19:00:00
## 6311 2022-12-16 19:17:55      TRUE 2022-12-16 19:00:00
## 6312 2022-12-16 19:17:51      TRUE 2022-12-16 19:00:00
## 6313 2022-12-16 19:17:51      TRUE 2022-12-16 19:00:00
## 6314 2022-12-16 19:17:47      TRUE 2022-12-16 19:00:00
## 6315 2022-12-16 19:17:47      TRUE 2022-12-16 19:00:00
## 6316 2022-12-16 19:17:46      TRUE 2022-12-16 19:00:00
## 6317 2022-12-16 19:17:45      TRUE 2022-12-16 19:00:00
## 6318 2022-12-16 19:17:44      TRUE 2022-12-16 19:00:00
## 6319 2022-12-16 19:17:41      TRUE 2022-12-16 19:00:00
## 6320 2022-12-16 19:17:41      TRUE 2022-12-16 19:00:00
## 6321 2022-12-16 19:17:36      TRUE 2022-12-16 19:00:00
## 6322 2022-12-16 19:17:32      TRUE 2022-12-16 19:00:00
## 6323 2022-12-16 19:17:31      TRUE 2022-12-16 19:00:00
## 6324 2022-12-16 19:17:31      TRUE 2022-12-16 19:00:00
## 6325 2022-12-16 19:17:27      TRUE 2022-12-16 19:00:00
## 6326 2022-12-16 19:17:27      TRUE 2022-12-16 19:00:00
## 6327 2022-12-16 19:17:15      TRUE 2022-12-16 19:00:00
## 6328 2022-12-16 19:17:07      TRUE 2022-12-16 19:00:00
## 6329 2022-12-16 19:17:06      TRUE 2022-12-16 19:00:00
## 6330 2022-12-16 19:17:04      TRUE 2022-12-16 19:00:00
## 6331 2022-12-16 19:17:02      TRUE 2022-12-16 19:00:00
## 6332 2022-12-16 19:16:55      TRUE 2022-12-16 19:00:00
## 6333 2022-12-16 19:16:52      TRUE 2022-12-16 19:00:00
## 6334 2022-12-16 19:16:51      TRUE 2022-12-16 19:00:00
## 6335 2022-12-16 19:16:47      TRUE 2022-12-16 19:00:00
## 6336 2022-12-16 19:16:46      TRUE 2022-12-16 19:00:00
## 6337 2022-12-16 19:16:44      TRUE 2022-12-16 19:00:00
## 6338 2022-12-16 19:16:42      TRUE 2022-12-16 19:00:00
## 6339 2022-12-16 19:16:42      TRUE 2022-12-16 19:00:00
## 6340 2022-12-16 19:16:35      TRUE 2022-12-16 19:00:00
## 6341 2022-12-16 19:16:34      TRUE 2022-12-16 19:00:00
## 6342 2022-12-16 19:16:31      TRUE 2022-12-16 19:00:00
## 6343 2022-12-16 19:16:30      TRUE 2022-12-16 19:00:00
## 6344 2022-12-16 19:16:30      TRUE 2022-12-16 19:00:00
## 6345 2022-12-16 19:16:27      TRUE 2022-12-16 19:00:00
## 6346 2022-12-16 19:16:26      TRUE 2022-12-16 19:00:00
## 6347 2022-12-16 19:16:09      TRUE 2022-12-16 19:00:00
## 6348 2022-12-16 19:16:00      TRUE 2022-12-16 19:00:00
## 6349 2022-12-16 19:15:54      TRUE 2022-12-16 19:00:00
## 6350 2022-12-16 19:15:54      TRUE 2022-12-16 19:00:00
## 6351 2022-12-16 19:15:49      TRUE 2022-12-16 19:00:00
## 6352 2022-12-16 19:15:49      TRUE 2022-12-16 19:00:00
## 6353 2022-12-16 19:15:46      TRUE 2022-12-16 19:00:00
## 6354 2022-12-16 19:15:45      TRUE 2022-12-16 19:00:00
## 6355 2022-12-16 19:15:41      TRUE 2022-12-16 19:00:00
## 6356 2022-12-16 19:15:40      TRUE 2022-12-16 19:00:00
## 6357 2022-12-16 19:15:34      TRUE 2022-12-16 19:00:00
## 6358 2022-12-16 19:15:30      TRUE 2022-12-16 19:00:00
## 6359 2022-12-16 19:15:29      TRUE 2022-12-16 19:00:00
## 6360 2022-12-16 19:15:26      TRUE 2022-12-16 19:00:00
## 6361 2022-12-16 19:15:26      TRUE 2022-12-16 19:00:00
## 6362 2022-12-16 19:15:23      TRUE 2022-12-16 19:00:00
## 6363 2022-12-16 19:15:21      TRUE 2022-12-16 19:00:00
## 6364 2022-12-16 19:15:20      TRUE 2022-12-16 19:00:00
## 6365 2022-12-16 19:15:19      TRUE 2022-12-16 19:00:00
## 6366 2022-12-16 19:15:16      TRUE 2022-12-16 19:00:00
## 6367 2022-12-16 19:15:14      TRUE 2022-12-16 19:00:00
## 6368 2022-12-16 19:15:10      TRUE 2022-12-16 19:00:00
## 6369 2022-12-16 19:15:07      TRUE 2022-12-16 19:00:00
## 6370 2022-12-16 19:15:00      TRUE 2022-12-16 19:00:00
## 6371 2022-12-16 19:15:00      TRUE 2022-12-16 19:00:00
## 6372 2022-12-16 19:14:59      TRUE 2022-12-16 19:00:00
## 6373 2022-12-16 19:14:57      TRUE 2022-12-16 19:00:00
## 6374 2022-12-16 19:14:56      TRUE 2022-12-16 19:00:00
## 6375 2022-12-16 19:14:54      TRUE 2022-12-16 19:00:00
## 6376 2022-12-16 19:14:51      TRUE 2022-12-16 19:00:00
## 6377 2022-12-16 19:14:49      TRUE 2022-12-16 19:00:00
## 6378 2022-12-16 19:14:48      TRUE 2022-12-16 19:00:00
## 6379 2022-12-16 19:14:46      TRUE 2022-12-16 19:00:00
## 6380 2022-12-16 19:14:42      TRUE 2022-12-16 19:00:00
## 6381 2022-12-16 19:14:42      TRUE 2022-12-16 19:00:00
## 6382 2022-12-16 19:14:37      TRUE 2022-12-16 19:00:00
## 6383 2022-12-16 19:14:35      TRUE 2022-12-16 19:00:00
## 6384 2022-12-16 19:14:33      TRUE 2022-12-16 19:00:00
## 6385 2022-12-16 19:14:29      TRUE 2022-12-16 19:00:00
## 6386 2022-12-16 19:14:27      TRUE 2022-12-16 19:00:00
## 6387 2022-12-16 19:14:23      TRUE 2022-12-16 19:00:00
## 6388 2022-12-16 19:14:21      TRUE 2022-12-16 19:00:00
## 6389 2022-12-16 19:14:19      TRUE 2022-12-16 19:00:00
## 6390 2022-12-16 19:14:10      TRUE 2022-12-16 19:00:00
## 6391 2022-12-16 19:14:02      TRUE 2022-12-16 19:00:00
## 6392 2022-12-16 19:13:59      TRUE 2022-12-16 19:00:00
## 6393 2022-12-16 19:13:58      TRUE 2022-12-16 19:00:00
## 6394 2022-12-16 19:13:56      TRUE 2022-12-16 19:00:00
## 6395 2022-12-16 19:13:56      TRUE 2022-12-16 19:00:00
## 6396 2022-12-16 19:13:55      TRUE 2022-12-16 19:00:00
## 6397 2022-12-16 19:13:51      TRUE 2022-12-16 19:00:00
## 6398 2022-12-16 19:13:47      TRUE 2022-12-16 19:00:00
## 6399 2022-12-16 19:13:44      TRUE 2022-12-16 19:00:00
## 6400 2022-12-16 19:13:43      TRUE 2022-12-16 19:00:00
## 6401 2022-12-16 19:13:41      TRUE 2022-12-16 19:00:00
## 6402 2022-12-16 19:13:38      TRUE 2022-12-16 19:00:00
## 6403 2022-12-16 19:13:35      TRUE 2022-12-16 19:00:00
## 6404 2022-12-16 19:13:34      TRUE 2022-12-16 19:00:00
## 6405 2022-12-16 19:13:28      TRUE 2022-12-16 19:00:00
## 6406 2022-12-16 19:13:24      TRUE 2022-12-16 19:00:00
## 6407 2022-12-16 19:13:24      TRUE 2022-12-16 19:00:00
## 6408 2022-12-16 19:13:23      TRUE 2022-12-16 19:00:00
## 6409 2022-12-16 19:13:23      TRUE 2022-12-16 19:00:00
## 6410 2022-12-16 19:13:18      TRUE 2022-12-16 19:00:00
## 6411 2022-12-16 19:13:17      TRUE 2022-12-16 19:00:00
## 6412 2022-12-16 19:13:16      TRUE 2022-12-16 19:00:00
## 6413 2022-12-16 19:13:15      TRUE 2022-12-16 19:00:00
## 6414 2022-12-16 19:13:10      TRUE 2022-12-16 19:00:00
## 6415 2022-12-16 19:13:09      TRUE 2022-12-16 19:00:00
## 6416 2022-12-16 19:13:08      TRUE 2022-12-16 19:00:00
## 6417 2022-12-16 19:13:06      TRUE 2022-12-16 19:00:00
## 6418 2022-12-16 19:13:04      TRUE 2022-12-16 19:00:00
## 6419 2022-12-16 19:12:59      TRUE 2022-12-16 19:00:00
## 6420 2022-12-16 19:12:59      TRUE 2022-12-16 19:00:00
## 6421 2022-12-16 19:12:57      TRUE 2022-12-16 19:00:00
## 6422 2022-12-16 19:12:46      TRUE 2022-12-16 19:00:00
## 6423 2022-12-16 19:12:43      TRUE 2022-12-16 19:00:00
## 6424 2022-12-16 19:12:40      TRUE 2022-12-16 19:00:00
## 6425 2022-12-16 19:12:34      TRUE 2022-12-16 19:00:00
## 6426 2022-12-16 19:12:28      TRUE 2022-12-16 19:00:00
## 6427 2022-12-16 19:12:26      TRUE 2022-12-16 19:00:00
## 6428 2022-12-16 19:12:21      TRUE 2022-12-16 19:00:00
## 6429 2022-12-16 19:12:20      TRUE 2022-12-16 19:00:00
## 6430 2022-12-16 19:12:17      TRUE 2022-12-16 19:00:00
## 6431 2022-12-16 19:12:15      TRUE 2022-12-16 19:00:00
## 6432 2022-12-16 19:12:15      TRUE 2022-12-16 19:00:00
## 6433 2022-12-16 19:12:10      TRUE 2022-12-16 19:00:00
## 6434 2022-12-16 19:12:09      TRUE 2022-12-16 19:00:00
## 6435 2022-12-16 19:11:59      TRUE 2022-12-16 19:00:00
## 6436 2022-12-16 19:11:58      TRUE 2022-12-16 19:00:00
## 6437 2022-12-16 19:11:57      TRUE 2022-12-16 19:00:00
## 6438 2022-12-16 19:11:54      TRUE 2022-12-16 19:00:00
## 6439 2022-12-16 19:11:52      TRUE 2022-12-16 19:00:00
## 6440 2022-12-16 19:11:46      TRUE 2022-12-16 19:00:00
## 6441 2022-12-16 19:11:41      TRUE 2022-12-16 19:00:00
## 6442 2022-12-16 19:11:33      TRUE 2022-12-16 19:00:00
## 6443 2022-12-16 19:11:32      TRUE 2022-12-16 19:00:00
## 6444 2022-12-16 19:11:31      TRUE 2022-12-16 19:00:00
## 6445 2022-12-16 19:11:23      TRUE 2022-12-16 19:00:00
## 6446 2022-12-16 19:11:18      TRUE 2022-12-16 19:00:00
## 6447 2022-12-16 19:11:17      TRUE 2022-12-16 19:00:00
## 6448 2022-12-16 19:11:16      TRUE 2022-12-16 19:00:00
## 6449 2022-12-16 19:11:11      TRUE 2022-12-16 19:00:00
## 6450 2022-12-16 19:11:10      TRUE 2022-12-16 19:00:00
## 6451 2022-12-16 19:11:08      TRUE 2022-12-16 19:00:00
## 6452 2022-12-16 19:11:04      TRUE 2022-12-16 19:00:00
## 6453 2022-12-16 19:11:03      TRUE 2022-12-16 19:00:00
## 6454 2022-12-16 19:11:03      TRUE 2022-12-16 19:00:00
## 6455 2022-12-16 19:11:03      TRUE 2022-12-16 19:00:00
## 6456 2022-12-16 19:10:58      TRUE 2022-12-16 19:00:00
## 6457 2022-12-16 19:10:57      TRUE 2022-12-16 19:00:00
## 6458 2022-12-16 19:10:52      TRUE 2022-12-16 19:00:00
## 6459 2022-12-16 19:10:51      TRUE 2022-12-16 19:00:00
## 6460 2022-12-16 19:10:51      TRUE 2022-12-16 19:00:00
## 6461 2022-12-16 19:10:44      TRUE 2022-12-16 19:00:00
## 6462 2022-12-16 19:10:42      TRUE 2022-12-16 19:00:00
## 6463 2022-12-16 19:10:41      TRUE 2022-12-16 19:00:00
## 6464 2022-12-16 19:10:40      TRUE 2022-12-16 19:00:00
## 6465 2022-12-16 19:10:36      TRUE 2022-12-16 19:00:00
## 6466 2022-12-16 19:10:35      TRUE 2022-12-16 19:00:00
## 6467 2022-12-16 19:10:33      TRUE 2022-12-16 19:00:00
## 6468 2022-12-16 19:10:28      TRUE 2022-12-16 19:00:00
## 6469 2022-12-16 19:10:23      TRUE 2022-12-16 19:00:00
## 6470 2022-12-16 19:10:16      TRUE 2022-12-16 19:00:00
## 6471 2022-12-16 19:10:14      TRUE 2022-12-16 19:00:00
## 6472 2022-12-16 19:10:13      TRUE 2022-12-16 19:00:00
## 6473 2022-12-16 19:10:11      TRUE 2022-12-16 19:00:00
## 6474 2022-12-16 19:09:57      TRUE 2022-12-16 19:00:00
## 6475 2022-12-16 19:09:57      TRUE 2022-12-16 19:00:00
## 6476 2022-12-16 19:09:54      TRUE 2022-12-16 19:00:00
## 6477 2022-12-16 19:09:51      TRUE 2022-12-16 19:00:00
## 6478 2022-12-16 19:09:51      TRUE 2022-12-16 19:00:00
## 6479 2022-12-16 19:09:49      TRUE 2022-12-16 19:00:00
## 6480 2022-12-16 19:09:47      TRUE 2022-12-16 19:00:00
## 6481 2022-12-16 19:09:45      TRUE 2022-12-16 19:00:00
## 6482 2022-12-16 19:09:45      TRUE 2022-12-16 19:00:00
## 6483 2022-12-16 19:09:44      TRUE 2022-12-16 19:00:00
## 6484 2022-12-16 19:09:43      TRUE 2022-12-16 19:00:00
## 6485 2022-12-16 19:09:43      TRUE 2022-12-16 19:00:00
## 6486 2022-12-16 19:09:38      TRUE 2022-12-16 19:00:00
## 6487 2022-12-16 19:09:38      TRUE 2022-12-16 19:00:00
## 6488 2022-12-16 19:09:38      TRUE 2022-12-16 19:00:00
## 6489 2022-12-16 19:09:29      TRUE 2022-12-16 19:00:00
## 6490 2022-12-16 19:09:29      TRUE 2022-12-16 19:00:00
## 6491 2022-12-16 19:09:26      TRUE 2022-12-16 19:00:00
## 6492 2022-12-16 19:09:20      TRUE 2022-12-16 19:00:00
## 6493 2022-12-16 19:09:16      TRUE 2022-12-16 19:00:00
## 6494 2022-12-16 19:09:14      TRUE 2022-12-16 19:00:00
## 6495 2022-12-16 19:09:10      TRUE 2022-12-16 19:00:00
## 6496 2022-12-16 19:08:54      TRUE 2022-12-16 19:00:00
## 6497 2022-12-16 19:08:45      TRUE 2022-12-16 19:00:00
## 6498 2022-12-16 19:08:44      TRUE 2022-12-16 19:00:00
## 6499 2022-12-16 19:08:39      TRUE 2022-12-16 19:00:00
## 6500 2022-12-16 19:08:38      TRUE 2022-12-16 19:00:00
## 6501 2022-12-16 19:08:27      TRUE 2022-12-16 19:00:00
## 6502 2022-12-16 19:08:27      TRUE 2022-12-16 19:00:00
## 6503 2022-12-16 19:08:27      TRUE 2022-12-16 19:00:00
## 6504 2022-12-16 19:08:24      TRUE 2022-12-16 19:00:00
## 6505 2022-12-16 19:08:22      TRUE 2022-12-16 19:00:00
## 6506 2022-12-16 19:08:20      TRUE 2022-12-16 19:00:00
## 6507 2022-12-16 19:08:18      TRUE 2022-12-16 19:00:00
## 6508 2022-12-16 19:08:16      TRUE 2022-12-16 19:00:00
## 6509 2022-12-16 19:08:03      TRUE 2022-12-16 19:00:00
## 6510 2022-12-16 19:08:03      TRUE 2022-12-16 19:00:00
## 6511 2022-12-16 19:08:01      TRUE 2022-12-16 19:00:00
## 6512 2022-12-16 19:07:59      TRUE 2022-12-16 19:00:00
## 6513 2022-12-16 19:07:56      TRUE 2022-12-16 19:00:00
## 6514 2022-12-16 19:07:55      TRUE 2022-12-16 19:00:00
## 6515 2022-12-16 19:07:55      TRUE 2022-12-16 19:00:00
## 6516 2022-12-16 19:07:55      TRUE 2022-12-16 19:00:00
## 6517 2022-12-16 19:07:50      TRUE 2022-12-16 19:00:00
## 6518 2022-12-16 19:07:50      TRUE 2022-12-16 19:00:00
## 6519 2022-12-16 19:07:49      TRUE 2022-12-16 19:00:00
## 6520 2022-12-16 19:07:49      TRUE 2022-12-16 19:00:00
## 6521 2022-12-16 19:07:41      TRUE 2022-12-16 19:00:00
## 6522 2022-12-16 19:07:39      TRUE 2022-12-16 19:00:00
## 6523 2022-12-16 19:07:38      TRUE 2022-12-16 19:00:00
## 6524 2022-12-16 19:07:37      TRUE 2022-12-16 19:00:00
## 6525 2022-12-16 19:07:34      TRUE 2022-12-16 19:00:00
## 6526 2022-12-16 19:07:28      TRUE 2022-12-16 19:00:00
## 6527 2022-12-16 19:07:24      TRUE 2022-12-16 19:00:00
## 6528 2022-12-16 19:07:21      TRUE 2022-12-16 19:00:00
## 6529 2022-12-16 19:07:19      TRUE 2022-12-16 19:00:00
## 6530 2022-12-16 19:07:15      TRUE 2022-12-16 19:00:00
## 6531 2022-12-16 19:07:12      TRUE 2022-12-16 19:00:00
## 6532 2022-12-16 19:07:09      TRUE 2022-12-16 19:00:00
## 6533 2022-12-16 19:07:04      TRUE 2022-12-16 19:00:00
## 6534 2022-12-16 19:06:58      TRUE 2022-12-16 19:00:00
## 6535 2022-12-16 19:06:54      TRUE 2022-12-16 19:00:00
## 6536 2022-12-16 19:06:47      TRUE 2022-12-16 19:00:00
## 6537 2022-12-16 19:06:47      TRUE 2022-12-16 19:00:00
## 6538 2022-12-16 19:06:46      TRUE 2022-12-16 19:00:00
## 6539 2022-12-16 19:06:40      TRUE 2022-12-16 19:00:00
## 6540 2022-12-16 19:06:39      TRUE 2022-12-16 19:00:00
## 6541 2022-12-16 19:06:33      TRUE 2022-12-16 19:00:00
## 6542 2022-12-16 19:06:29      TRUE 2022-12-16 19:00:00
## 6543 2022-12-16 19:06:28      TRUE 2022-12-16 19:00:00
## 6544 2022-12-16 19:06:28      TRUE 2022-12-16 19:00:00
## 6545 2022-12-16 19:06:18      TRUE 2022-12-16 19:00:00
## 6546 2022-12-16 19:06:16      TRUE 2022-12-16 19:00:00
## 6547 2022-12-16 19:06:15      TRUE 2022-12-16 19:00:00
## 6548 2022-12-16 19:06:15      TRUE 2022-12-16 19:00:00
## 6549 2022-12-16 19:06:10      TRUE 2022-12-16 19:00:00
## 6550 2022-12-16 19:06:09      TRUE 2022-12-16 19:00:00
## 6551 2022-12-16 19:06:07      TRUE 2022-12-16 19:00:00
## 6552 2022-12-16 19:06:03      TRUE 2022-12-16 19:00:00
## 6553 2022-12-16 19:06:01      TRUE 2022-12-16 19:00:00
## 6554 2022-12-16 19:06:01      TRUE 2022-12-16 19:00:00
## 6555 2022-12-16 19:05:55      TRUE 2022-12-16 19:00:00
## 6556 2022-12-16 19:05:51      TRUE 2022-12-16 19:00:00
## 6557 2022-12-16 19:05:46      TRUE 2022-12-16 19:00:00
## 6558 2022-12-16 19:05:45      TRUE 2022-12-16 19:00:00
## 6559 2022-12-16 19:05:40      TRUE 2022-12-16 19:00:00
## 6560 2022-12-16 19:05:39      TRUE 2022-12-16 19:00:00
## 6561 2022-12-16 19:05:39      TRUE 2022-12-16 19:00:00
## 6562 2022-12-16 19:05:39      TRUE 2022-12-16 19:00:00
## 6563 2022-12-16 19:05:28      TRUE 2022-12-16 19:00:00
## 6564 2022-12-16 19:05:28      TRUE 2022-12-16 19:00:00
## 6565 2022-12-16 19:05:24      TRUE 2022-12-16 19:00:00
## 6566 2022-12-16 19:05:24      TRUE 2022-12-16 19:00:00
## 6567 2022-12-16 19:05:19      TRUE 2022-12-16 19:00:00
## 6568 2022-12-16 19:05:11      TRUE 2022-12-16 19:00:00
## 6569 2022-12-16 19:05:10      TRUE 2022-12-16 19:00:00
## 6570 2022-12-16 19:05:08      TRUE 2022-12-16 19:00:00
## 6571 2022-12-16 19:05:07      TRUE 2022-12-16 19:00:00
## 6572 2022-12-16 19:05:06      TRUE 2022-12-16 19:00:00
## 6573 2022-12-16 19:05:05      TRUE 2022-12-16 19:00:00
## 6574 2022-12-16 19:05:05      TRUE 2022-12-16 19:00:00
## 6575 2022-12-16 19:05:00      TRUE 2022-12-16 19:00:00
## 6576 2022-12-16 19:04:53      TRUE 2022-12-16 19:00:00
## 6577 2022-12-16 19:04:52      TRUE 2022-12-16 19:00:00
## 6578 2022-12-16 19:04:51      TRUE 2022-12-16 19:00:00
## 6579 2022-12-16 19:04:51      TRUE 2022-12-16 19:00:00
## 6580 2022-12-16 19:04:46      TRUE 2022-12-16 19:00:00
## 6581 2022-12-16 19:04:45      TRUE 2022-12-16 19:00:00
## 6582 2022-12-16 19:04:45      TRUE 2022-12-16 19:00:00
## 6583 2022-12-16 19:04:44      TRUE 2022-12-16 19:00:00
## 6584 2022-12-16 19:04:40      TRUE 2022-12-16 19:00:00
## 6585 2022-12-16 19:04:30      TRUE 2022-12-16 19:00:00
## 6586 2022-12-16 19:04:28      TRUE 2022-12-16 19:00:00
## 6587 2022-12-16 19:04:27      TRUE 2022-12-16 19:00:00
## 6588 2022-12-16 19:04:26      TRUE 2022-12-16 19:00:00
## 6589 2022-12-16 19:04:23      TRUE 2022-12-16 19:00:00
## 6590 2022-12-16 19:04:14      TRUE 2022-12-16 19:00:00
## 6591 2022-12-16 19:04:13      TRUE 2022-12-16 19:00:00
## 6592 2022-12-16 19:04:12      TRUE 2022-12-16 19:00:00
## 6593 2022-12-16 19:04:09      TRUE 2022-12-16 19:00:00
## 6594 2022-12-16 19:04:03      TRUE 2022-12-16 19:00:00
## 6595 2022-12-16 19:04:01      TRUE 2022-12-16 19:00:00
## 6596 2022-12-16 19:03:51      TRUE 2022-12-16 19:00:00
## 6597 2022-12-16 19:03:50      TRUE 2022-12-16 19:00:00
## 6598 2022-12-16 19:03:50      TRUE 2022-12-16 19:00:00
## 6599 2022-12-16 19:03:41      TRUE 2022-12-16 19:00:00
## 6600 2022-12-16 19:03:39      TRUE 2022-12-16 19:00:00
## 6601 2022-12-16 19:03:37      TRUE 2022-12-16 19:00:00
## 6602 2022-12-16 19:03:35      TRUE 2022-12-16 19:00:00
## 6603 2022-12-16 19:03:25      TRUE 2022-12-16 19:00:00
## 6604 2022-12-16 19:03:22      TRUE 2022-12-16 19:00:00
## 6605 2022-12-16 19:03:18      TRUE 2022-12-16 19:00:00
## 6606 2022-12-16 19:03:10      TRUE 2022-12-16 19:00:00
## 6607 2022-12-16 19:03:06      TRUE 2022-12-16 19:00:00
## 6608 2022-12-16 19:03:03      TRUE 2022-12-16 19:00:00
## 6609 2022-12-16 19:03:00      TRUE 2022-12-16 19:00:00
## 6610 2022-12-16 19:02:56      TRUE 2022-12-16 19:00:00
## 6611 2022-12-16 19:02:54      TRUE 2022-12-16 19:00:00
## 6612 2022-12-16 19:02:48      TRUE 2022-12-16 19:00:00
## 6613 2022-12-16 19:02:48      TRUE 2022-12-16 19:00:00
## 6614 2022-12-16 19:02:47      TRUE 2022-12-16 19:00:00
## 6615 2022-12-16 19:02:44      TRUE 2022-12-16 19:00:00
## 6616 2022-12-16 19:02:40      TRUE 2022-12-16 19:00:00
## 6617 2022-12-16 19:02:40      TRUE 2022-12-16 19:00:00
## 6618 2022-12-16 19:02:38      TRUE 2022-12-16 19:00:00
## 6619 2022-12-16 19:02:37      TRUE 2022-12-16 19:00:00
## 6620 2022-12-16 19:02:36      TRUE 2022-12-16 19:00:00
## 6621 2022-12-16 19:02:35      TRUE 2022-12-16 19:00:00
## 6622 2022-12-16 19:02:35      TRUE 2022-12-16 19:00:00
## 6623 2022-12-16 19:02:27      TRUE 2022-12-16 19:00:00
## 6624 2022-12-16 19:02:26      TRUE 2022-12-16 19:00:00
## 6625 2022-12-16 19:02:19      TRUE 2022-12-16 19:00:00
## 6626 2022-12-16 19:02:17      TRUE 2022-12-16 19:00:00
## 6627 2022-12-16 19:02:14      TRUE 2022-12-16 19:00:00
## 6628 2022-12-16 19:02:13      TRUE 2022-12-16 19:00:00
## 6629 2022-12-16 19:02:10      TRUE 2022-12-16 19:00:00
## 6630 2022-12-16 19:02:07      TRUE 2022-12-16 19:00:00
## 6631 2022-12-16 19:02:05      TRUE 2022-12-16 19:00:00
## 6632 2022-12-16 19:01:58      TRUE 2022-12-16 19:00:00
## 6633 2022-12-16 19:01:50      TRUE 2022-12-16 19:00:00
## 6634 2022-12-16 19:01:49      TRUE 2022-12-16 19:00:00
## 6635 2022-12-16 19:01:45      TRUE 2022-12-16 19:00:00
## 6636 2022-12-16 19:01:41      TRUE 2022-12-16 19:00:00
## 6637 2022-12-16 19:01:36      TRUE 2022-12-16 19:00:00
## 6638 2022-12-16 19:01:35      TRUE 2022-12-16 19:00:00
## 6639 2022-12-16 19:01:34      TRUE 2022-12-16 19:00:00
## 6640 2022-12-16 19:01:32      TRUE 2022-12-16 19:00:00
## 6641 2022-12-16 19:01:32      TRUE 2022-12-16 19:00:00
## 6642 2022-12-16 19:01:32      TRUE 2022-12-16 19:00:00
## 6643 2022-12-16 19:01:28      TRUE 2022-12-16 19:00:00
## 6644 2022-12-16 19:01:28      TRUE 2022-12-16 19:00:00
## 6645 2022-12-16 19:01:24      TRUE 2022-12-16 19:00:00
## 6646 2022-12-16 19:01:23      TRUE 2022-12-16 19:00:00
## 6647 2022-12-16 19:01:22      TRUE 2022-12-16 19:00:00
## 6648 2022-12-16 19:01:19      TRUE 2022-12-16 19:00:00
## 6649 2022-12-16 19:01:19      TRUE 2022-12-16 19:00:00
## 6650 2022-12-16 19:01:15      TRUE 2022-12-16 19:00:00
## 6651 2022-12-16 19:01:14      TRUE 2022-12-16 19:00:00
## 6652 2022-12-16 19:01:09      TRUE 2022-12-16 19:00:00
## 6653 2022-12-16 19:01:08      TRUE 2022-12-16 19:00:00
## 6654 2022-12-16 19:01:07      TRUE 2022-12-16 19:00:00
## 6655 2022-12-16 19:01:07      TRUE 2022-12-16 19:00:00
## 6656 2022-12-16 19:01:05      TRUE 2022-12-16 19:00:00
## 6657 2022-12-16 19:01:04      TRUE 2022-12-16 19:00:00
## 6658 2022-12-16 19:01:04      TRUE 2022-12-16 19:00:00
## 6659 2022-12-16 19:00:55      TRUE 2022-12-16 19:00:00
## 6660 2022-12-16 19:00:53      TRUE 2022-12-16 19:00:00
## 6661 2022-12-16 19:00:45      TRUE 2022-12-16 19:00:00
## 6662 2022-12-16 19:00:41      TRUE 2022-12-16 19:00:00
## 6663 2022-12-16 19:00:33      TRUE 2022-12-16 19:00:00
## 6664 2022-12-16 19:00:24      TRUE 2022-12-16 19:00:00
## 6665 2022-12-16 19:00:23      TRUE 2022-12-16 19:00:00
## 6666 2022-12-16 19:00:19      TRUE 2022-12-16 19:00:00
## 6667 2022-12-16 19:00:19      TRUE 2022-12-16 19:00:00
## 6668 2022-12-16 19:00:09      TRUE 2022-12-16 19:00:00
## 6669 2022-12-16 19:00:04      TRUE 2022-12-16 19:00:00
## 6670 2022-12-16 19:00:03      TRUE 2022-12-16 19:00:00
## 6671 2022-12-16 19:00:03      TRUE 2022-12-16 19:00:00
## 6672 2022-12-16 19:00:03      TRUE 2022-12-16 19:00:00
## 6673 2022-12-16 19:00:01      TRUE 2022-12-16 19:00:00
## 6674 2022-12-16 19:00:00      TRUE 2022-12-16 19:00:00
## 6675 2022-12-16 18:59:58      TRUE 2022-12-16 19:00:00
## 6676 2022-12-16 18:59:52      TRUE 2022-12-16 19:00:00
## 6677 2022-12-16 18:59:51      TRUE 2022-12-16 19:00:00
## 6678 2022-12-16 18:59:49      TRUE 2022-12-16 19:00:00
## 6679 2022-12-16 18:59:48      TRUE 2022-12-16 19:00:00
## 6680 2022-12-16 18:59:42      TRUE 2022-12-16 19:00:00
## 6681 2022-12-16 18:59:42      TRUE 2022-12-16 19:00:00
## 6682 2022-12-16 18:59:37      TRUE 2022-12-16 19:00:00
## 6683 2022-12-16 18:59:36      TRUE 2022-12-16 19:00:00
## 6684 2022-12-16 18:59:32      TRUE 2022-12-16 19:00:00
## 6685 2022-12-16 18:59:24      TRUE 2022-12-16 19:00:00
## 6686 2022-12-16 18:59:23      TRUE 2022-12-16 19:00:00
## 6687 2022-12-16 18:59:21      TRUE 2022-12-16 19:00:00
## 6688 2022-12-16 18:59:19      TRUE 2022-12-16 19:00:00
## 6689 2022-12-16 18:59:10      TRUE 2022-12-16 19:00:00
## 6690 2022-12-16 18:59:08      TRUE 2022-12-16 19:00:00
## 6691 2022-12-16 18:59:07      TRUE 2022-12-16 19:00:00
## 6692 2022-12-16 18:59:07      TRUE 2022-12-16 19:00:00
## 6693 2022-12-16 18:59:06      TRUE 2022-12-16 19:00:00
## 6694 2022-12-16 18:59:04      TRUE 2022-12-16 19:00:00
## 6695 2022-12-16 18:59:03      TRUE 2022-12-16 19:00:00
## 6696 2022-12-16 18:59:02      TRUE 2022-12-16 19:00:00
## 6697 2022-12-16 18:59:02      TRUE 2022-12-16 19:00:00
## 6698 2022-12-16 18:59:01      TRUE 2022-12-16 19:00:00
## 6699 2022-12-16 18:58:55      TRUE 2022-12-16 19:00:00
## 6700 2022-12-16 18:58:53      TRUE 2022-12-16 19:00:00
## 6701 2022-12-16 18:58:51      TRUE 2022-12-16 19:00:00
## 6702 2022-12-16 18:58:49      TRUE 2022-12-16 19:00:00
## 6703 2022-12-16 18:58:47      TRUE 2022-12-16 19:00:00
## 6704 2022-12-16 18:58:47      TRUE 2022-12-16 19:00:00
## 6705 2022-12-16 18:58:47      TRUE 2022-12-16 19:00:00
## 6706 2022-12-16 18:58:42      TRUE 2022-12-16 19:00:00
## 6707 2022-12-16 18:58:39      TRUE 2022-12-16 19:00:00
## 6708 2022-12-16 18:58:38      TRUE 2022-12-16 19:00:00
## 6709 2022-12-16 18:58:33      TRUE 2022-12-16 19:00:00
## 6710 2022-12-16 18:58:32      TRUE 2022-12-16 19:00:00
## 6711 2022-12-16 18:58:31      TRUE 2022-12-16 19:00:00
## 6712 2022-12-16 18:58:27      TRUE 2022-12-16 19:00:00
## 6713 2022-12-16 18:58:27      TRUE 2022-12-16 19:00:00
## 6714 2022-12-16 18:58:27      TRUE 2022-12-16 19:00:00
## 6715 2022-12-16 18:58:18      TRUE 2022-12-16 19:00:00
## 6716 2022-12-16 18:58:15      TRUE 2022-12-16 19:00:00
## 6717 2022-12-16 18:58:11      TRUE 2022-12-16 19:00:00
## 6718 2022-12-16 18:58:01      TRUE 2022-12-16 19:00:00
## 6719 2022-12-16 18:58:01      TRUE 2022-12-16 19:00:00
## 6720 2022-12-16 18:58:01      TRUE 2022-12-16 19:00:00
## 6721 2022-12-16 18:57:59      TRUE 2022-12-16 19:00:00
## 6722 2022-12-16 18:57:57      TRUE 2022-12-16 19:00:00
## 6723 2022-12-16 18:57:56      TRUE 2022-12-16 19:00:00
## 6724 2022-12-16 18:57:52      TRUE 2022-12-16 19:00:00
## 6725 2022-12-16 18:57:50      TRUE 2022-12-16 19:00:00
## 6726 2022-12-16 18:57:49      TRUE 2022-12-16 19:00:00
## 6727 2022-12-16 18:57:47      TRUE 2022-12-16 19:00:00
## 6728 2022-12-16 18:57:46      TRUE 2022-12-16 19:00:00
## 6729 2022-12-16 18:57:37      TRUE 2022-12-16 19:00:00
## 6730 2022-12-16 18:57:32      TRUE 2022-12-16 19:00:00
## 6731 2022-12-16 18:57:28      TRUE 2022-12-16 19:00:00
## 6732 2022-12-16 18:57:27      TRUE 2022-12-16 19:00:00
## 6733 2022-12-16 18:57:24      TRUE 2022-12-16 19:00:00
## 6734 2022-12-16 18:57:24      TRUE 2022-12-16 19:00:00
## 6735 2022-12-16 18:57:23      TRUE 2022-12-16 19:00:00
## 6736 2022-12-16 18:57:21      TRUE 2022-12-16 19:00:00
## 6737 2022-12-16 18:57:18      TRUE 2022-12-16 19:00:00
## 6738 2022-12-16 18:57:16      TRUE 2022-12-16 19:00:00
## 6739 2022-12-16 18:57:15      TRUE 2022-12-16 19:00:00
## 6740 2022-12-16 18:57:14      TRUE 2022-12-16 19:00:00
## 6741 2022-12-16 18:57:13      TRUE 2022-12-16 19:00:00
## 6742 2022-12-16 18:57:10      TRUE 2022-12-16 19:00:00
## 6743 2022-12-16 18:57:08      TRUE 2022-12-16 19:00:00
## 6744 2022-12-16 18:57:07      TRUE 2022-12-16 19:00:00
## 6745 2022-12-16 18:57:06      TRUE 2022-12-16 19:00:00
## 6746 2022-12-16 18:57:04      TRUE 2022-12-16 19:00:00
## 6747 2022-12-16 18:57:02      TRUE 2022-12-16 19:00:00
## 6748 2022-12-16 18:57:02      TRUE 2022-12-16 19:00:00
## 6749 2022-12-16 18:56:55      TRUE 2022-12-16 19:00:00
## 6750 2022-12-16 18:56:50      TRUE 2022-12-16 19:00:00
## 6751 2022-12-16 18:56:48      TRUE 2022-12-16 19:00:00
## 6752 2022-12-16 18:56:43      TRUE 2022-12-16 19:00:00
## 6753 2022-12-16 18:56:43      TRUE 2022-12-16 19:00:00
## 6754 2022-12-16 18:56:41      TRUE 2022-12-16 19:00:00
## 6755 2022-12-16 18:56:40      TRUE 2022-12-16 19:00:00
## 6756 2022-12-16 18:56:39      TRUE 2022-12-16 19:00:00
## 6757 2022-12-16 18:56:38      TRUE 2022-12-16 19:00:00
## 6758 2022-12-16 18:56:38      TRUE 2022-12-16 19:00:00
## 6759 2022-12-16 18:56:37      TRUE 2022-12-16 19:00:00
## 6760 2022-12-16 18:56:33      TRUE 2022-12-16 19:00:00
## 6761 2022-12-16 18:56:32      TRUE 2022-12-16 19:00:00
## 6762 2022-12-16 18:56:28      TRUE 2022-12-16 19:00:00
## 6763 2022-12-16 18:56:28      TRUE 2022-12-16 19:00:00
## 6764 2022-12-16 18:56:25      TRUE 2022-12-16 19:00:00
## 6765 2022-12-16 18:56:24      TRUE 2022-12-16 19:00:00
## 6766 2022-12-16 18:56:22      TRUE 2022-12-16 19:00:00
## 6767 2022-12-16 18:56:21      TRUE 2022-12-16 19:00:00
## 6768 2022-12-16 18:56:19      TRUE 2022-12-16 19:00:00
## 6769 2022-12-16 18:56:19      TRUE 2022-12-16 19:00:00
## 6770 2022-12-16 18:56:19      TRUE 2022-12-16 19:00:00
## 6771 2022-12-16 18:56:10      TRUE 2022-12-16 19:00:00
## 6772 2022-12-16 18:56:03      TRUE 2022-12-16 19:00:00
## 6773 2022-12-16 18:55:58      TRUE 2022-12-16 19:00:00
## 6774 2022-12-16 18:55:51      TRUE 2022-12-16 19:00:00
## 6775 2022-12-16 18:55:49      TRUE 2022-12-16 19:00:00
## 6776 2022-12-16 18:55:42      TRUE 2022-12-16 19:00:00
## 6777 2022-12-16 18:55:41      TRUE 2022-12-16 19:00:00
## 6778 2022-12-16 18:55:37      TRUE 2022-12-16 19:00:00
## 6779 2022-12-16 18:55:37      TRUE 2022-12-16 19:00:00
## 6780 2022-12-16 18:55:34      TRUE 2022-12-16 19:00:00
## 6781 2022-12-16 18:55:33      TRUE 2022-12-16 19:00:00
## 6782 2022-12-16 18:55:31      TRUE 2022-12-16 19:00:00
## 6783 2022-12-16 18:55:27      TRUE 2022-12-16 19:00:00
## 6784 2022-12-16 18:55:26      TRUE 2022-12-16 19:00:00
## 6785 2022-12-16 18:55:21      TRUE 2022-12-16 19:00:00
## 6786 2022-12-16 18:55:20      TRUE 2022-12-16 19:00:00
## 6787 2022-12-16 18:55:17      TRUE 2022-12-16 19:00:00
## 6788 2022-12-16 18:55:14      TRUE 2022-12-16 19:00:00
## 6789 2022-12-16 18:55:14      TRUE 2022-12-16 19:00:00
## 6790 2022-12-16 18:55:05      TRUE 2022-12-16 19:00:00
## 6791 2022-12-16 18:54:59      TRUE 2022-12-16 19:00:00
## 6792 2022-12-16 18:54:57      TRUE 2022-12-16 19:00:00
## 6793 2022-12-16 18:54:56      TRUE 2022-12-16 19:00:00
## 6794 2022-12-16 18:54:56      TRUE 2022-12-16 19:00:00
## 6795 2022-12-16 18:54:54      TRUE 2022-12-16 19:00:00
## 6796 2022-12-16 18:54:50      TRUE 2022-12-16 19:00:00
## 6797 2022-12-16 18:54:49      TRUE 2022-12-16 19:00:00
## 6798 2022-12-16 18:54:47      TRUE 2022-12-16 19:00:00
## 6799 2022-12-16 18:54:46      TRUE 2022-12-16 19:00:00
## 6800 2022-12-16 18:54:42      TRUE 2022-12-16 19:00:00
## 6801 2022-12-16 18:54:41      TRUE 2022-12-16 19:00:00
## 6802 2022-12-16 18:54:36      TRUE 2022-12-16 19:00:00
## 6803 2022-12-16 18:54:35      TRUE 2022-12-16 19:00:00
## 6804 2022-12-16 18:54:35      TRUE 2022-12-16 19:00:00
## 6805 2022-12-16 18:54:33      TRUE 2022-12-16 19:00:00
## 6806 2022-12-16 18:54:32      TRUE 2022-12-16 19:00:00
## 6807 2022-12-16 18:54:30      TRUE 2022-12-16 19:00:00
## 6808 2022-12-16 18:54:26      TRUE 2022-12-16 19:00:00
## 6809 2022-12-16 18:54:24      TRUE 2022-12-16 19:00:00
## 6810 2022-12-16 18:54:21      TRUE 2022-12-16 19:00:00
## 6811 2022-12-16 18:54:20      TRUE 2022-12-16 19:00:00
## 6812 2022-12-16 18:54:11      TRUE 2022-12-16 19:00:00
## 6813 2022-12-16 18:54:09      TRUE 2022-12-16 19:00:00
## 6814 2022-12-16 18:54:07      TRUE 2022-12-16 19:00:00
## 6815 2022-12-16 18:53:59      TRUE 2022-12-16 19:00:00
## 6816 2022-12-16 18:53:59      TRUE 2022-12-16 19:00:00
## 6817 2022-12-16 18:53:56      TRUE 2022-12-16 19:00:00
## 6818 2022-12-16 18:53:56      TRUE 2022-12-16 19:00:00
## 6819 2022-12-16 18:53:55      TRUE 2022-12-16 19:00:00
## 6820 2022-12-16 18:53:54      TRUE 2022-12-16 19:00:00
## 6821 2022-12-16 18:53:54      TRUE 2022-12-16 19:00:00
## 6822 2022-12-16 18:53:47      TRUE 2022-12-16 19:00:00
## 6823 2022-12-16 18:53:45      TRUE 2022-12-16 19:00:00
## 6824 2022-12-16 18:53:44      TRUE 2022-12-16 19:00:00
## 6825 2022-12-16 18:53:42      TRUE 2022-12-16 19:00:00
## 6826 2022-12-16 18:53:41      TRUE 2022-12-16 19:00:00
## 6827 2022-12-16 18:53:39      TRUE 2022-12-16 19:00:00
## 6828 2022-12-16 18:53:39      TRUE 2022-12-16 19:00:00
## 6829 2022-12-16 18:53:37      TRUE 2022-12-16 19:00:00
## 6830 2022-12-16 18:53:37      TRUE 2022-12-16 19:00:00
## 6831 2022-12-16 18:53:34      TRUE 2022-12-16 19:00:00
## 6832 2022-12-16 18:53:27      TRUE 2022-12-16 19:00:00
## 6833 2022-12-16 18:53:25      TRUE 2022-12-16 19:00:00
## 6834 2022-12-16 18:53:25      TRUE 2022-12-16 19:00:00
## 6835 2022-12-16 18:53:22      TRUE 2022-12-16 19:00:00
## 6836 2022-12-16 18:53:14      TRUE 2022-12-16 19:00:00
## 6837 2022-12-16 18:53:09      TRUE 2022-12-16 19:00:00
## 6838 2022-12-16 18:53:09      TRUE 2022-12-16 19:00:00
## 6839 2022-12-16 18:53:08      TRUE 2022-12-16 19:00:00
## 6840 2022-12-16 18:53:08      TRUE 2022-12-16 19:00:00
## 6841 2022-12-16 18:53:03      TRUE 2022-12-16 19:00:00
## 6842 2022-12-16 18:52:57      TRUE 2022-12-16 19:00:00
## 6843 2022-12-16 18:52:54      TRUE 2022-12-16 19:00:00
## 6844 2022-12-16 18:52:49      TRUE 2022-12-16 19:00:00
## 6845 2022-12-16 18:52:48      TRUE 2022-12-16 19:00:00
## 6846 2022-12-16 18:52:47      TRUE 2022-12-16 19:00:00
## 6847 2022-12-16 18:52:29      TRUE 2022-12-16 19:00:00
## 6848 2022-12-16 18:52:22      TRUE 2022-12-16 19:00:00
## 6849 2022-12-16 18:52:13      TRUE 2022-12-16 19:00:00
## 6850 2022-12-16 18:52:12      TRUE 2022-12-16 19:00:00
## 6851 2022-12-16 18:52:10      TRUE 2022-12-16 19:00:00
## 6852 2022-12-16 18:52:10      TRUE 2022-12-16 19:00:00
## 6853 2022-12-16 18:52:06      TRUE 2022-12-16 19:00:00
## 6854 2022-12-16 18:52:02      TRUE 2022-12-16 19:00:00
## 6855 2022-12-16 18:51:59      TRUE 2022-12-16 19:00:00
## 6856 2022-12-16 18:51:53      TRUE 2022-12-16 19:00:00
## 6857 2022-12-16 18:51:47      TRUE 2022-12-16 19:00:00
## 6858 2022-12-16 18:51:45      TRUE 2022-12-16 19:00:00
## 6859 2022-12-16 18:51:35      TRUE 2022-12-16 19:00:00
## 6860 2022-12-16 18:51:35      TRUE 2022-12-16 19:00:00
## 6861 2022-12-16 18:51:33      TRUE 2022-12-16 19:00:00
## 6862 2022-12-16 18:51:27      TRUE 2022-12-16 19:00:00
## 6863 2022-12-16 18:51:23      TRUE 2022-12-16 19:00:00
## 6864 2022-12-16 18:51:21      TRUE 2022-12-16 19:00:00
## 6865 2022-12-16 18:51:17      TRUE 2022-12-16 19:00:00
## 6866 2022-12-16 18:51:14      TRUE 2022-12-16 19:00:00
## 6867 2022-12-16 18:51:13      TRUE 2022-12-16 19:00:00
## 6868 2022-12-16 18:51:10      TRUE 2022-12-16 19:00:00
## 6869 2022-12-16 18:51:10      TRUE 2022-12-16 19:00:00
## 6870 2022-12-16 18:51:09      TRUE 2022-12-16 19:00:00
## 6871 2022-12-16 18:51:09      TRUE 2022-12-16 19:00:00
## 6872 2022-12-16 18:51:04      TRUE 2022-12-16 19:00:00
## 6873 2022-12-16 18:51:03      TRUE 2022-12-16 19:00:00
## 6874 2022-12-16 18:51:02      TRUE 2022-12-16 19:00:00
## 6875 2022-12-16 18:50:59      TRUE 2022-12-16 19:00:00
## 6876 2022-12-16 18:50:47      TRUE 2022-12-16 19:00:00
## 6877 2022-12-16 18:50:46      TRUE 2022-12-16 19:00:00
## 6878 2022-12-16 18:50:45      TRUE 2022-12-16 19:00:00
## 6879 2022-12-16 18:50:42      TRUE 2022-12-16 19:00:00
## 6880 2022-12-16 18:50:42      TRUE 2022-12-16 19:00:00
## 6881 2022-12-16 18:50:40      TRUE 2022-12-16 19:00:00
## 6882 2022-12-16 18:50:36      TRUE 2022-12-16 19:00:00
## 6883 2022-12-16 18:50:35      TRUE 2022-12-16 19:00:00
## 6884 2022-12-16 18:50:35      TRUE 2022-12-16 19:00:00
## 6885 2022-12-16 18:50:34      TRUE 2022-12-16 19:00:00
## 6886 2022-12-16 18:50:32      TRUE 2022-12-16 19:00:00
## 6887 2022-12-16 18:50:28      TRUE 2022-12-16 19:00:00
## 6888 2022-12-16 18:50:27      TRUE 2022-12-16 19:00:00
## 6889 2022-12-16 18:50:26      TRUE 2022-12-16 19:00:00
## 6890 2022-12-16 18:50:25      TRUE 2022-12-16 19:00:00
## 6891 2022-12-16 18:50:22      TRUE 2022-12-16 19:00:00
## 6892 2022-12-16 18:50:21      TRUE 2022-12-16 19:00:00
## 6893 2022-12-16 18:50:20      TRUE 2022-12-16 19:00:00
## 6894 2022-12-16 18:50:14      TRUE 2022-12-16 19:00:00
## 6895 2022-12-16 18:50:11      TRUE 2022-12-16 19:00:00
## 6896 2022-12-16 18:50:11      TRUE 2022-12-16 19:00:00
## 6897 2022-12-16 18:50:06      TRUE 2022-12-16 19:00:00
## 6898 2022-12-16 18:50:03      TRUE 2022-12-16 19:00:00
## 6899 2022-12-16 18:50:02      TRUE 2022-12-16 19:00:00
## 6900 2022-12-16 18:49:57      TRUE 2022-12-16 19:00:00
## 6901 2022-12-16 18:49:56      TRUE 2022-12-16 19:00:00
## 6902 2022-12-16 18:49:54      TRUE 2022-12-16 19:00:00
## 6903 2022-12-16 18:49:54      TRUE 2022-12-16 19:00:00
## 6904 2022-12-16 18:49:50      TRUE 2022-12-16 19:00:00
## 6905 2022-12-16 18:49:49      TRUE 2022-12-16 19:00:00
## 6906 2022-12-16 18:49:47      TRUE 2022-12-16 19:00:00
## 6907 2022-12-16 18:49:46      TRUE 2022-12-16 19:00:00
## 6908 2022-12-16 18:49:45      TRUE 2022-12-16 19:00:00
## 6909 2022-12-16 18:49:42      TRUE 2022-12-16 19:00:00
## 6910 2022-12-16 18:49:39      TRUE 2022-12-16 19:00:00
## 6911 2022-12-16 18:49:35      TRUE 2022-12-16 19:00:00
## 6912 2022-12-16 18:49:34      TRUE 2022-12-16 19:00:00
## 6913 2022-12-16 18:49:32      TRUE 2022-12-16 19:00:00
## 6914 2022-12-16 18:49:28      TRUE 2022-12-16 19:00:00
## 6915 2022-12-16 18:49:16      TRUE 2022-12-16 19:00:00
## 6916 2022-12-16 18:49:16      TRUE 2022-12-16 19:00:00
## 6917 2022-12-16 18:49:14      TRUE 2022-12-16 19:00:00
## 6918 2022-12-16 18:49:10      TRUE 2022-12-16 19:00:00
## 6919 2022-12-16 18:49:05      TRUE 2022-12-16 19:00:00
## 6920 2022-12-16 18:49:04      TRUE 2022-12-16 19:00:00
## 6921 2022-12-16 18:49:04      TRUE 2022-12-16 19:00:00
## 6922 2022-12-16 18:48:55      TRUE 2022-12-16 19:00:00
## 6923 2022-12-16 18:48:55      TRUE 2022-12-16 19:00:00
## 6924 2022-12-16 18:48:48      TRUE 2022-12-16 19:00:00
## 6925 2022-12-16 18:48:47      TRUE 2022-12-16 19:00:00
## 6926 2022-12-16 18:48:39      TRUE 2022-12-16 19:00:00
## 6927 2022-12-16 18:48:38      TRUE 2022-12-16 19:00:00
## 6928 2022-12-16 18:48:37      TRUE 2022-12-16 19:00:00
## 6929 2022-12-16 18:48:36      TRUE 2022-12-16 19:00:00
## 6930 2022-12-16 18:48:35      TRUE 2022-12-16 19:00:00
## 6931 2022-12-16 18:48:33      TRUE 2022-12-16 19:00:00
## 6932 2022-12-16 18:48:29      TRUE 2022-12-16 19:00:00
## 6933 2022-12-16 18:48:24      TRUE 2022-12-16 19:00:00
## 6934 2022-12-16 18:48:24      TRUE 2022-12-16 19:00:00
## 6935 2022-12-16 18:48:20      TRUE 2022-12-16 19:00:00
## 6936 2022-12-16 18:48:19      TRUE 2022-12-16 19:00:00
## 6937 2022-12-16 18:48:19      TRUE 2022-12-16 19:00:00
## 6938 2022-12-16 18:48:19      TRUE 2022-12-16 19:00:00
## 6939 2022-12-16 18:48:18      TRUE 2022-12-16 19:00:00
## 6940 2022-12-16 18:48:12      TRUE 2022-12-16 19:00:00
## 6941 2022-12-16 18:48:11      TRUE 2022-12-16 19:00:00
## 6942 2022-12-16 18:48:10      TRUE 2022-12-16 19:00:00
## 6943 2022-12-16 18:48:10      TRUE 2022-12-16 19:00:00
## 6944 2022-12-16 18:48:09      TRUE 2022-12-16 19:00:00
## 6945 2022-12-16 18:48:09      TRUE 2022-12-16 19:00:00
## 6946 2022-12-16 18:48:08      TRUE 2022-12-16 19:00:00
## 6947 2022-12-16 18:48:06      TRUE 2022-12-16 19:00:00
## 6948 2022-12-16 18:47:56      TRUE 2022-12-16 19:00:00
## 6949 2022-12-16 18:47:53      TRUE 2022-12-16 19:00:00
## 6950 2022-12-16 18:47:50      TRUE 2022-12-16 19:00:00
## 6951 2022-12-16 18:47:46      TRUE 2022-12-16 19:00:00
## 6952 2022-12-16 18:47:44      TRUE 2022-12-16 19:00:00
## 6953 2022-12-16 18:47:41      TRUE 2022-12-16 19:00:00
## 6954 2022-12-16 18:47:39      TRUE 2022-12-16 19:00:00
## 6955 2022-12-16 18:47:38      TRUE 2022-12-16 19:00:00
## 6956 2022-12-16 18:47:35      TRUE 2022-12-16 19:00:00
## 6957 2022-12-16 18:47:33      TRUE 2022-12-16 19:00:00
## 6958 2022-12-16 18:47:29      TRUE 2022-12-16 19:00:00
## 6959 2022-12-16 18:47:27      TRUE 2022-12-16 19:00:00
## 6960 2022-12-16 18:47:27      TRUE 2022-12-16 19:00:00
## 6961 2022-12-16 18:47:26      TRUE 2022-12-16 19:00:00
## 6962 2022-12-16 18:47:25      TRUE 2022-12-16 19:00:00
## 6963 2022-12-16 18:47:21      TRUE 2022-12-16 19:00:00
## 6964 2022-12-16 18:47:11      TRUE 2022-12-16 19:00:00
## 6965 2022-12-16 18:47:10      TRUE 2022-12-16 19:00:00
## 6966 2022-12-16 18:47:09      TRUE 2022-12-16 19:00:00
## 6967 2022-12-16 18:47:07      TRUE 2022-12-16 19:00:00
## 6968 2022-12-16 18:46:59      TRUE 2022-12-16 19:00:00
## 6969 2022-12-16 18:46:40      TRUE 2022-12-16 19:00:00
## 6970 2022-12-16 18:46:39      TRUE 2022-12-16 19:00:00
## 6971 2022-12-16 18:46:36      TRUE 2022-12-16 19:00:00
## 6972 2022-12-16 18:46:36      TRUE 2022-12-16 19:00:00
## 6973 2022-12-16 18:46:33      TRUE 2022-12-16 19:00:00
## 6974 2022-12-16 18:46:31      TRUE 2022-12-16 19:00:00
## 6975 2022-12-16 18:46:27      TRUE 2022-12-16 19:00:00
## 6976 2022-12-16 18:46:25      TRUE 2022-12-16 19:00:00
## 6977 2022-12-16 18:46:19      TRUE 2022-12-16 19:00:00
## 6978 2022-12-16 18:46:17      TRUE 2022-12-16 19:00:00
## 6979 2022-12-16 18:46:15      TRUE 2022-12-16 19:00:00
## 6980 2022-12-16 18:46:14      TRUE 2022-12-16 19:00:00
## 6981 2022-12-16 18:46:12      TRUE 2022-12-16 19:00:00
## 6982 2022-12-16 18:46:11      TRUE 2022-12-16 19:00:00
## 6983 2022-12-16 18:46:10      TRUE 2022-12-16 19:00:00
## 6984 2022-12-16 18:46:02      TRUE 2022-12-16 19:00:00
## 6985 2022-12-16 18:46:02      TRUE 2022-12-16 19:00:00
## 6986 2022-12-16 18:46:00      TRUE 2022-12-16 19:00:00
## 6987 2022-12-16 18:45:57      TRUE 2022-12-16 19:00:00
## 6988 2022-12-16 18:45:57      TRUE 2022-12-16 19:00:00
## 6989 2022-12-16 18:45:53      TRUE 2022-12-16 19:00:00
## 6990 2022-12-16 18:45:50      TRUE 2022-12-16 19:00:00
## 6991 2022-12-16 18:45:45      TRUE 2022-12-16 19:00:00
## 6992 2022-12-16 18:45:44      TRUE 2022-12-16 19:00:00
## 6993 2022-12-16 18:45:44      TRUE 2022-12-16 19:00:00
## 6994 2022-12-16 18:45:44      TRUE 2022-12-16 19:00:00
## 6995 2022-12-16 18:45:41      TRUE 2022-12-16 19:00:00
## 6996 2022-12-16 18:45:38      TRUE 2022-12-16 19:00:00
## 6997 2022-12-16 18:45:37      TRUE 2022-12-16 19:00:00
## 6998 2022-12-16 18:45:36      TRUE 2022-12-16 19:00:00
## 6999 2022-12-16 18:45:36      TRUE 2022-12-16 19:00:00
## 7000 2022-12-16 18:45:35      TRUE 2022-12-16 19:00:00
## 7001 2022-12-16 18:45:35      TRUE 2022-12-16 19:00:00
## 7002 2022-12-16 18:45:33      TRUE 2022-12-16 19:00:00
## 7003 2022-12-16 18:45:33      TRUE 2022-12-16 19:00:00
## 7004 2022-12-16 18:45:31      TRUE 2022-12-16 19:00:00
## 7005 2022-12-16 18:45:27      TRUE 2022-12-16 19:00:00
## 7006 2022-12-16 18:45:25      TRUE 2022-12-16 19:00:00
## 7007 2022-12-16 18:45:23      TRUE 2022-12-16 19:00:00
## 7008 2022-12-16 18:45:23      TRUE 2022-12-16 19:00:00
## 7009 2022-12-16 18:45:21      TRUE 2022-12-16 19:00:00
## 7010 2022-12-16 18:45:16      TRUE 2022-12-16 19:00:00
## 7011 2022-12-16 18:45:15      TRUE 2022-12-16 19:00:00
## 7012 2022-12-16 18:45:14      TRUE 2022-12-16 19:00:00
## 7013 2022-12-16 18:45:12      TRUE 2022-12-16 19:00:00
## 7014 2022-12-16 18:45:10      TRUE 2022-12-16 19:00:00
## 7015 2022-12-16 18:45:09      TRUE 2022-12-16 19:00:00
## 7016 2022-12-16 18:45:06      TRUE 2022-12-16 19:00:00
## 7017 2022-12-16 18:45:04      TRUE 2022-12-16 19:00:00
## 7018 2022-12-16 18:45:04      TRUE 2022-12-16 19:00:00
## 7019 2022-12-16 18:45:00      TRUE 2022-12-16 19:00:00
## 7020 2022-12-16 18:45:00      TRUE 2022-12-16 19:00:00
## 7021 2022-12-16 18:44:57      TRUE 2022-12-16 19:00:00
## 7022 2022-12-16 18:44:50      TRUE 2022-12-16 19:00:00
## 7023 2022-12-16 18:44:22      TRUE 2022-12-16 19:00:00
## 7024 2022-12-16 18:44:22      TRUE 2022-12-16 19:00:00
## 7025 2022-12-16 18:44:20      TRUE 2022-12-16 19:00:00
## 7026 2022-12-16 18:44:20      TRUE 2022-12-16 19:00:00
## 7027 2022-12-16 18:44:17      TRUE 2022-12-16 19:00:00
## 7028 2022-12-16 18:44:17      TRUE 2022-12-16 19:00:00
## 7029 2022-12-16 18:44:12      TRUE 2022-12-16 19:00:00
## 7030 2022-12-16 18:44:08      TRUE 2022-12-16 19:00:00
## 7031 2022-12-16 18:43:49      TRUE 2022-12-16 19:00:00
## 7032 2022-12-16 18:43:49      TRUE 2022-12-16 19:00:00
## 7033 2022-12-16 18:43:48      TRUE 2022-12-16 19:00:00
## 7034 2022-12-16 18:43:45      TRUE 2022-12-16 19:00:00
## 7035 2022-12-16 18:43:45      TRUE 2022-12-16 19:00:00
## 7036 2022-12-16 18:43:43      TRUE 2022-12-16 19:00:00
## 7037 2022-12-16 18:43:42      TRUE 2022-12-16 19:00:00
## 7038 2022-12-16 18:43:37      TRUE 2022-12-16 19:00:00
## 7039 2022-12-16 18:43:33      TRUE 2022-12-16 19:00:00
## 7040 2022-12-16 18:43:32      TRUE 2022-12-16 19:00:00
## 7041 2022-12-16 18:43:31      TRUE 2022-12-16 19:00:00
## 7042 2022-12-16 18:43:31      TRUE 2022-12-16 19:00:00
## 7043 2022-12-16 18:43:27      TRUE 2022-12-16 19:00:00
## 7044 2022-12-16 18:43:27      TRUE 2022-12-16 19:00:00
## 7045 2022-12-16 18:43:25      TRUE 2022-12-16 19:00:00
## 7046 2022-12-16 18:43:25      TRUE 2022-12-16 19:00:00
## 7047 2022-12-16 18:43:23      TRUE 2022-12-16 19:00:00
## 7048 2022-12-16 18:43:21      TRUE 2022-12-16 19:00:00
## 7049 2022-12-16 18:43:21      TRUE 2022-12-16 19:00:00
## 7050 2022-12-16 18:43:20      TRUE 2022-12-16 19:00:00
## 7051 2022-12-16 18:43:20      TRUE 2022-12-16 19:00:00
## 7052 2022-12-16 18:43:18      TRUE 2022-12-16 19:00:00
## 7053 2022-12-16 18:43:16      TRUE 2022-12-16 19:00:00
## 7054 2022-12-16 18:43:15      TRUE 2022-12-16 19:00:00
## 7055 2022-12-16 18:43:13      TRUE 2022-12-16 19:00:00
## 7056 2022-12-16 18:43:02      TRUE 2022-12-16 19:00:00
## 7057 2022-12-16 18:43:00      TRUE 2022-12-16 19:00:00
## 7058 2022-12-16 18:42:59      TRUE 2022-12-16 19:00:00
## 7059 2022-12-16 18:42:58      TRUE 2022-12-16 19:00:00
## 7060 2022-12-16 18:42:58      TRUE 2022-12-16 19:00:00
## 7061 2022-12-16 18:42:57      TRUE 2022-12-16 19:00:00
## 7062 2022-12-16 18:42:52      TRUE 2022-12-16 19:00:00
## 7063 2022-12-16 18:42:50      TRUE 2022-12-16 19:00:00
## 7064 2022-12-16 18:42:48      TRUE 2022-12-16 19:00:00
## 7065 2022-12-16 18:42:48      TRUE 2022-12-16 19:00:00
## 7066 2022-12-16 18:42:40      TRUE 2022-12-16 19:00:00
## 7067 2022-12-16 18:42:40      TRUE 2022-12-16 19:00:00
## 7068 2022-12-16 18:42:40      TRUE 2022-12-16 19:00:00
## 7069 2022-12-16 18:42:40      TRUE 2022-12-16 19:00:00
## 7070 2022-12-16 18:42:38      TRUE 2022-12-16 19:00:00
## 7071 2022-12-16 18:42:36      TRUE 2022-12-16 19:00:00
## 7072 2022-12-16 18:42:32      TRUE 2022-12-16 19:00:00
## 7073 2022-12-16 18:42:26      TRUE 2022-12-16 19:00:00
## 7074 2022-12-16 18:42:22      TRUE 2022-12-16 19:00:00
## 7075 2022-12-16 18:42:16      TRUE 2022-12-16 19:00:00
## 7076 2022-12-16 18:42:14      TRUE 2022-12-16 19:00:00
## 7077 2022-12-16 18:42:09      TRUE 2022-12-16 19:00:00
## 7078 2022-12-16 18:42:08      TRUE 2022-12-16 19:00:00
## 7079 2022-12-16 18:42:08      TRUE 2022-12-16 19:00:00
## 7080 2022-12-16 18:42:07      TRUE 2022-12-16 19:00:00
## 7081 2022-12-16 18:42:06      TRUE 2022-12-16 19:00:00
## 7082 2022-12-16 18:42:06      TRUE 2022-12-16 19:00:00
## 7083 2022-12-16 18:42:06      TRUE 2022-12-16 19:00:00
## 7084 2022-12-16 18:42:06      TRUE 2022-12-16 19:00:00
## 7085 2022-12-16 18:42:04      TRUE 2022-12-16 19:00:00
## 7086 2022-12-16 18:42:03      TRUE 2022-12-16 19:00:00
## 7087 2022-12-16 18:42:01      TRUE 2022-12-16 19:00:00
## 7088 2022-12-16 18:42:01      TRUE 2022-12-16 19:00:00
## 7089 2022-12-16 18:42:00      TRUE 2022-12-16 19:00:00
## 7090 2022-12-16 18:41:59      TRUE 2022-12-16 19:00:00
## 7091 2022-12-16 18:41:58      TRUE 2022-12-16 19:00:00
## 7092 2022-12-16 18:41:56      TRUE 2022-12-16 19:00:00
## 7093 2022-12-16 18:41:53      TRUE 2022-12-16 19:00:00
## 7094 2022-12-16 18:41:48      TRUE 2022-12-16 19:00:00
## 7095 2022-12-16 18:41:48      TRUE 2022-12-16 19:00:00
## 7096 2022-12-16 18:41:47      TRUE 2022-12-16 19:00:00
## 7097 2022-12-16 18:41:47      TRUE 2022-12-16 19:00:00
## 7098 2022-12-16 18:41:45      TRUE 2022-12-16 19:00:00
## 7099 2022-12-16 18:41:38      TRUE 2022-12-16 19:00:00
## 7100 2022-12-16 18:41:38      TRUE 2022-12-16 19:00:00
## 7101 2022-12-16 18:41:35      TRUE 2022-12-16 19:00:00
## 7102 2022-12-16 18:41:35      TRUE 2022-12-16 19:00:00
## 7103 2022-12-16 18:41:35      TRUE 2022-12-16 19:00:00
## 7104 2022-12-16 18:41:31      TRUE 2022-12-16 19:00:00
## 7105 2022-12-16 18:41:28      TRUE 2022-12-16 19:00:00
## 7106 2022-12-16 18:41:23      TRUE 2022-12-16 19:00:00
## 7107 2022-12-16 18:41:17      TRUE 2022-12-16 19:00:00
## 7108 2022-12-16 18:41:17      TRUE 2022-12-16 19:00:00
## 7109 2022-12-16 18:41:12      TRUE 2022-12-16 19:00:00
## 7110 2022-12-16 18:41:11      TRUE 2022-12-16 19:00:00
## 7111 2022-12-16 18:41:10      TRUE 2022-12-16 19:00:00
## 7112 2022-12-16 18:41:09      TRUE 2022-12-16 19:00:00
## 7113 2022-12-16 18:41:09      TRUE 2022-12-16 19:00:00
## 7114 2022-12-16 18:41:05      TRUE 2022-12-16 19:00:00
## 7115 2022-12-16 18:41:05      TRUE 2022-12-16 19:00:00
## 7116 2022-12-16 18:41:02      TRUE 2022-12-16 19:00:00
## 7117 2022-12-16 18:40:53      TRUE 2022-12-16 19:00:00
## 7118 2022-12-16 18:40:52      TRUE 2022-12-16 19:00:00
## 7119 2022-12-16 18:40:45      TRUE 2022-12-16 19:00:00
## 7120 2022-12-16 18:40:34      TRUE 2022-12-16 19:00:00
## 7121 2022-12-16 18:40:32      TRUE 2022-12-16 19:00:00
## 7122 2022-12-16 18:40:31      TRUE 2022-12-16 19:00:00
## 7123 2022-12-16 18:40:30      TRUE 2022-12-16 19:00:00
## 7124 2022-12-16 18:40:28      TRUE 2022-12-16 19:00:00
## 7125 2022-12-16 18:40:28      TRUE 2022-12-16 19:00:00
## 7126 2022-12-16 18:40:27      TRUE 2022-12-16 19:00:00
## 7127 2022-12-16 18:40:27      TRUE 2022-12-16 19:00:00
## 7128 2022-12-16 18:40:25      TRUE 2022-12-16 19:00:00
## 7129 2022-12-16 18:40:24      TRUE 2022-12-16 19:00:00
## 7130 2022-12-16 18:40:23      TRUE 2022-12-16 19:00:00
## 7131 2022-12-16 18:40:21      TRUE 2022-12-16 19:00:00
## 7132 2022-12-16 18:40:20      TRUE 2022-12-16 19:00:00
## 7133 2022-12-16 18:40:20      TRUE 2022-12-16 19:00:00
## 7134 2022-12-16 18:40:19      TRUE 2022-12-16 19:00:00
## 7135 2022-12-16 18:40:12      TRUE 2022-12-16 19:00:00
## 7136 2022-12-16 18:40:12      TRUE 2022-12-16 19:00:00
## 7137 2022-12-16 18:40:12      TRUE 2022-12-16 19:00:00
## 7138 2022-12-16 18:40:04      TRUE 2022-12-16 19:00:00
## 7139 2022-12-16 18:40:03      TRUE 2022-12-16 19:00:00
## 7140 2022-12-16 18:40:03      TRUE 2022-12-16 19:00:00
## 7141 2022-12-16 18:40:01      TRUE 2022-12-16 19:00:00
## 7142 2022-12-16 18:39:58      TRUE 2022-12-16 19:00:00
## 7143 2022-12-16 18:39:55      TRUE 2022-12-16 19:00:00
## 7144 2022-12-16 18:39:53      TRUE 2022-12-16 19:00:00
## 7145 2022-12-16 18:39:51      TRUE 2022-12-16 19:00:00
## 7146 2022-12-16 18:39:51      TRUE 2022-12-16 19:00:00
## 7147 2022-12-16 18:39:50      TRUE 2022-12-16 19:00:00
## 7148 2022-12-16 18:39:42      TRUE 2022-12-16 19:00:00
## 7149 2022-12-16 18:39:41      TRUE 2022-12-16 19:00:00
## 7150 2022-12-16 18:39:39      TRUE 2022-12-16 19:00:00
## 7151 2022-12-16 18:39:36      TRUE 2022-12-16 19:00:00
## 7152 2022-12-16 18:39:35      TRUE 2022-12-16 19:00:00
## 7153 2022-12-16 18:39:33      TRUE 2022-12-16 19:00:00
## 7154 2022-12-16 18:39:33      TRUE 2022-12-16 19:00:00
## 7155 2022-12-16 18:39:28      TRUE 2022-12-16 19:00:00
## 7156 2022-12-16 18:39:26      TRUE 2022-12-16 19:00:00
## 7157 2022-12-16 18:39:26      TRUE 2022-12-16 19:00:00
## 7158 2022-12-16 18:39:25      TRUE 2022-12-16 19:00:00
## 7159 2022-12-16 18:39:23      TRUE 2022-12-16 19:00:00
## 7160 2022-12-16 18:39:22      TRUE 2022-12-16 19:00:00
## 7161 2022-12-16 18:39:22      TRUE 2022-12-16 19:00:00
## 7162 2022-12-16 18:39:19      TRUE 2022-12-16 19:00:00
## 7163 2022-12-16 18:39:18      TRUE 2022-12-16 19:00:00
## 7164 2022-12-16 18:39:17      TRUE 2022-12-16 19:00:00
## 7165 2022-12-16 18:39:15      TRUE 2022-12-16 19:00:00
## 7166 2022-12-16 18:39:14      TRUE 2022-12-16 19:00:00
## 7167 2022-12-16 18:39:05      TRUE 2022-12-16 19:00:00
## 7168 2022-12-16 18:39:02      TRUE 2022-12-16 19:00:00
## 7169 2022-12-16 18:39:01      TRUE 2022-12-16 19:00:00
## 7170 2022-12-16 18:39:01      TRUE 2022-12-16 19:00:00
## 7171 2022-12-16 18:39:01      TRUE 2022-12-16 19:00:00
## 7172 2022-12-16 18:38:59      TRUE 2022-12-16 19:00:00
## 7173 2022-12-16 18:38:58      TRUE 2022-12-16 19:00:00
## 7174 2022-12-16 18:38:57      TRUE 2022-12-16 19:00:00
## 7175 2022-12-16 18:38:57      TRUE 2022-12-16 19:00:00
## 7176 2022-12-16 18:38:53      TRUE 2022-12-16 19:00:00
## 7177 2022-12-16 18:38:52      TRUE 2022-12-16 19:00:00
## 7178 2022-12-16 18:38:51      TRUE 2022-12-16 19:00:00
## 7179 2022-12-16 18:38:45      TRUE 2022-12-16 19:00:00
## 7180 2022-12-16 18:38:41      TRUE 2022-12-16 19:00:00
## 7181 2022-12-16 18:38:40      TRUE 2022-12-16 19:00:00
## 7182 2022-12-16 18:38:39      TRUE 2022-12-16 19:00:00
## 7183 2022-12-16 18:38:39      TRUE 2022-12-16 19:00:00
## 7184 2022-12-16 18:38:37      TRUE 2022-12-16 19:00:00
## 7185 2022-12-16 18:38:32      TRUE 2022-12-16 19:00:00
## 7186 2022-12-16 18:38:32      TRUE 2022-12-16 19:00:00
## 7187 2022-12-16 18:38:29      TRUE 2022-12-16 19:00:00
## 7188 2022-12-16 18:38:26      TRUE 2022-12-16 19:00:00
## 7189 2022-12-16 18:38:24      TRUE 2022-12-16 19:00:00
## 7190 2022-12-16 18:38:24      TRUE 2022-12-16 19:00:00
## 7191 2022-12-16 18:38:21      TRUE 2022-12-16 19:00:00
## 7192 2022-12-16 18:38:18      TRUE 2022-12-16 19:00:00
## 7193 2022-12-16 18:38:16      TRUE 2022-12-16 19:00:00
## 7194 2022-12-16 18:38:14      TRUE 2022-12-16 19:00:00
## 7195 2022-12-16 18:38:08      TRUE 2022-12-16 19:00:00
## 7196 2022-12-16 18:38:01      TRUE 2022-12-16 19:00:00
## 7197 2022-12-16 18:38:00      TRUE 2022-12-16 19:00:00
## 7198 2022-12-16 18:37:57      TRUE 2022-12-16 19:00:00
## 7199 2022-12-16 18:37:55      TRUE 2022-12-16 19:00:00
## 7200 2022-12-16 18:37:53      TRUE 2022-12-16 19:00:00
## 7201 2022-12-16 18:37:53      TRUE 2022-12-16 19:00:00
## 7202 2022-12-16 18:37:52      TRUE 2022-12-16 19:00:00
## 7203 2022-12-16 18:37:52      TRUE 2022-12-16 19:00:00
## 7204 2022-12-16 18:37:49      TRUE 2022-12-16 19:00:00
## 7205 2022-12-16 18:37:48      TRUE 2022-12-16 19:00:00
## 7206 2022-12-16 18:37:48      TRUE 2022-12-16 19:00:00
## 7207 2022-12-16 18:37:48      TRUE 2022-12-16 19:00:00
## 7208 2022-12-16 18:37:45      TRUE 2022-12-16 19:00:00
## 7209 2022-12-16 18:37:43      TRUE 2022-12-16 19:00:00
## 7210 2022-12-16 18:37:42      TRUE 2022-12-16 19:00:00
## 7211 2022-12-16 18:37:39      TRUE 2022-12-16 19:00:00
## 7212 2022-12-16 18:37:37      TRUE 2022-12-16 19:00:00
## 7213 2022-12-16 18:37:30      TRUE 2022-12-16 19:00:00
## 7214 2022-12-16 18:37:27      TRUE 2022-12-16 19:00:00
## 7215 2022-12-16 18:37:26      TRUE 2022-12-16 19:00:00
## 7216 2022-12-16 18:37:21      TRUE 2022-12-16 19:00:00
## 7217 2022-12-16 18:37:17      TRUE 2022-12-16 19:00:00
## 7218 2022-12-16 18:37:16      TRUE 2022-12-16 19:00:00
## 7219 2022-12-16 18:37:15      TRUE 2022-12-16 19:00:00
## 7220 2022-12-16 18:37:08      TRUE 2022-12-16 19:00:00
## 7221 2022-12-16 18:37:05      TRUE 2022-12-16 19:00:00
## 7222 2022-12-16 18:37:04      TRUE 2022-12-16 19:00:00
## 7223 2022-12-16 18:37:01      TRUE 2022-12-16 19:00:00
## 7224 2022-12-16 18:36:54      TRUE 2022-12-16 19:00:00
## 7225 2022-12-16 18:36:51      TRUE 2022-12-16 19:00:00
## 7226 2022-12-16 18:36:47      TRUE 2022-12-16 19:00:00
## 7227 2022-12-16 18:36:44      TRUE 2022-12-16 19:00:00
## 7228 2022-12-16 18:36:43      TRUE 2022-12-16 19:00:00
## 7229 2022-12-16 18:36:41      TRUE 2022-12-16 19:00:00
## 7230 2022-12-16 18:36:40      TRUE 2022-12-16 19:00:00
## 7231 2022-12-16 18:36:40      TRUE 2022-12-16 19:00:00
## 7232 2022-12-16 18:36:39      TRUE 2022-12-16 19:00:00
## 7233 2022-12-16 18:36:38      TRUE 2022-12-16 19:00:00
## 7234 2022-12-16 18:36:36      TRUE 2022-12-16 19:00:00
## 7235 2022-12-16 18:36:35      TRUE 2022-12-16 19:00:00
## 7236 2022-12-16 18:36:31      TRUE 2022-12-16 19:00:00
## 7237 2022-12-16 18:36:27      TRUE 2022-12-16 19:00:00
## 7238 2022-12-16 18:36:26      TRUE 2022-12-16 19:00:00
## 7239 2022-12-16 18:36:25      TRUE 2022-12-16 19:00:00
## 7240 2022-12-16 18:36:25      TRUE 2022-12-16 19:00:00
## 7241 2022-12-16 18:36:24      TRUE 2022-12-16 19:00:00
## 7242 2022-12-16 18:36:24      TRUE 2022-12-16 19:00:00
## 7243 2022-12-16 18:36:22      TRUE 2022-12-16 19:00:00
## 7244 2022-12-16 18:36:22      TRUE 2022-12-16 19:00:00
## 7245 2022-12-16 18:36:22      TRUE 2022-12-16 19:00:00
## 7246 2022-12-16 18:36:21      TRUE 2022-12-16 19:00:00
## 7247 2022-12-16 18:36:20      TRUE 2022-12-16 19:00:00
## 7248 2022-12-16 18:36:19      TRUE 2022-12-16 19:00:00
## 7249 2022-12-16 18:36:16      TRUE 2022-12-16 19:00:00
## 7250 2022-12-16 18:36:12      TRUE 2022-12-16 19:00:00
## 7251 2022-12-16 18:36:11      TRUE 2022-12-16 19:00:00
## 7252 2022-12-16 18:36:10      TRUE 2022-12-16 19:00:00
## 7253 2022-12-16 18:36:09      TRUE 2022-12-16 19:00:00
## 7254 2022-12-16 18:36:09      TRUE 2022-12-16 19:00:00
## 7255 2022-12-16 18:36:07      TRUE 2022-12-16 19:00:00
## 7256 2022-12-16 18:36:04      TRUE 2022-12-16 19:00:00
## 7257 2022-12-16 18:36:01      TRUE 2022-12-16 19:00:00
## 7258 2022-12-16 18:36:00      TRUE 2022-12-16 19:00:00
## 7259 2022-12-16 18:35:59      TRUE 2022-12-16 19:00:00
## 7260 2022-12-16 18:35:58      TRUE 2022-12-16 19:00:00
## 7261 2022-12-16 18:35:58      TRUE 2022-12-16 19:00:00
## 7262 2022-12-16 18:35:57      TRUE 2022-12-16 19:00:00
## 7263 2022-12-16 18:35:52      TRUE 2022-12-16 19:00:00
## 7264 2022-12-16 18:35:52      TRUE 2022-12-16 19:00:00
## 7265 2022-12-16 18:35:51      TRUE 2022-12-16 19:00:00
## 7266 2022-12-16 18:35:51      TRUE 2022-12-16 19:00:00
## 7267 2022-12-16 18:35:50      TRUE 2022-12-16 19:00:00
## 7268 2022-12-16 18:35:48      TRUE 2022-12-16 19:00:00
## 7269 2022-12-16 18:35:48      TRUE 2022-12-16 19:00:00
## 7270 2022-12-16 18:35:47      TRUE 2022-12-16 19:00:00
## 7271 2022-12-16 18:35:46      TRUE 2022-12-16 19:00:00
## 7272 2022-12-16 18:35:46      TRUE 2022-12-16 19:00:00
## 7273 2022-12-16 18:35:43      TRUE 2022-12-16 19:00:00
## 7274 2022-12-16 18:35:42      TRUE 2022-12-16 19:00:00
## 7275 2022-12-16 18:35:41      TRUE 2022-12-16 19:00:00
## 7276 2022-12-16 18:35:37      TRUE 2022-12-16 19:00:00
## 7277 2022-12-16 18:35:36      TRUE 2022-12-16 19:00:00
## 7278 2022-12-16 18:35:35      TRUE 2022-12-16 19:00:00
## 7279 2022-12-16 18:35:35      TRUE 2022-12-16 19:00:00
## 7280 2022-12-16 18:35:34      TRUE 2022-12-16 19:00:00
## 7281 2022-12-16 18:35:34      TRUE 2022-12-16 19:00:00
## 7282 2022-12-16 18:35:33      TRUE 2022-12-16 19:00:00
## 7283 2022-12-16 18:35:32      TRUE 2022-12-16 19:00:00
## 7284 2022-12-16 18:35:30      TRUE 2022-12-16 19:00:00
## 7285 2022-12-16 18:35:30      TRUE 2022-12-16 19:00:00
## 7286 2022-12-16 18:35:30      TRUE 2022-12-16 19:00:00
## 7287 2022-12-16 18:35:29      TRUE 2022-12-16 19:00:00
## 7288 2022-12-16 18:35:28      TRUE 2022-12-16 19:00:00
## 7289 2022-12-16 18:35:28      TRUE 2022-12-16 19:00:00
## 7290 2022-12-16 18:35:26      TRUE 2022-12-16 19:00:00
## 7291 2022-12-16 18:35:24      TRUE 2022-12-16 19:00:00
## 7292 2022-12-16 18:35:24      TRUE 2022-12-16 19:00:00
## 7293 2022-12-16 18:35:22      TRUE 2022-12-16 19:00:00
## 7294 2022-12-16 18:35:22      TRUE 2022-12-16 19:00:00
## 7295 2022-12-16 18:35:21      TRUE 2022-12-16 19:00:00
## 7296 2022-12-16 18:35:20      TRUE 2022-12-16 19:00:00
## 7297 2022-12-16 18:35:20      TRUE 2022-12-16 19:00:00
## 7298 2022-12-16 18:35:19      TRUE 2022-12-16 19:00:00
## 7299 2022-12-16 18:35:18      TRUE 2022-12-16 19:00:00
## 7300 2022-12-16 18:35:17      TRUE 2022-12-16 19:00:00
## 7301 2022-12-16 18:35:17      TRUE 2022-12-16 19:00:00
## 7302 2022-12-16 18:35:16      TRUE 2022-12-16 19:00:00
## 7303 2022-12-16 18:35:15      TRUE 2022-12-16 19:00:00
## 7304 2022-12-16 18:35:15      TRUE 2022-12-16 19:00:00
## 7305 2022-12-16 18:35:14      TRUE 2022-12-16 19:00:00
## 7306 2022-12-16 18:35:14      TRUE 2022-12-16 19:00:00
## 7307 2022-12-16 18:35:14      TRUE 2022-12-16 19:00:00
## 7308 2022-12-16 18:35:14      TRUE 2022-12-16 19:00:00
## 7309 2022-12-16 18:35:13      TRUE 2022-12-16 19:00:00
## 7310 2022-12-16 18:35:13      TRUE 2022-12-16 19:00:00
## 7311 2022-12-16 18:35:13      TRUE 2022-12-16 19:00:00
## 7312 2022-12-16 18:35:13      TRUE 2022-12-16 19:00:00
## 7313 2022-12-16 18:35:12      TRUE 2022-12-16 19:00:00
## 7314 2022-12-16 18:35:12      TRUE 2022-12-16 19:00:00
## 7315 2022-12-16 18:35:10      TRUE 2022-12-16 19:00:00
## 7316 2022-12-16 18:35:09      TRUE 2022-12-16 19:00:00
## 7317 2022-12-16 18:35:09      TRUE 2022-12-16 19:00:00
## 7318 2022-12-16 18:35:06      TRUE 2022-12-16 19:00:00
## 7319 2022-12-16 18:35:01      TRUE 2022-12-16 19:00:00
## 7320 2022-12-16 18:34:59      TRUE 2022-12-16 19:00:00
## 7321 2022-12-16 18:34:56      TRUE 2022-12-16 19:00:00
## 7322 2022-12-16 18:34:55      TRUE 2022-12-16 19:00:00
## 7323 2022-12-16 18:34:53      TRUE 2022-12-16 19:00:00
## 7324 2022-12-16 18:34:53      TRUE 2022-12-16 19:00:00
## 7325 2022-12-16 18:34:51      TRUE 2022-12-16 19:00:00
## 7326 2022-12-16 18:34:50      TRUE 2022-12-16 19:00:00
## 7327 2022-12-16 18:34:49      TRUE 2022-12-16 19:00:00
## 7328 2022-12-16 18:34:49      TRUE 2022-12-16 19:00:00
## 7329 2022-12-16 18:34:48      TRUE 2022-12-16 19:00:00
## 7330 2022-12-16 18:34:40      TRUE 2022-12-16 19:00:00
## 7331 2022-12-16 18:34:37      TRUE 2022-12-16 19:00:00
## 7332 2022-12-16 18:34:34      TRUE 2022-12-16 19:00:00
## 7333 2022-12-16 18:34:34      TRUE 2022-12-16 19:00:00
## 7334 2022-12-16 18:34:34      TRUE 2022-12-16 19:00:00
## 7335 2022-12-16 18:34:33      TRUE 2022-12-16 19:00:00
## 7336 2022-12-16 18:34:32      TRUE 2022-12-16 19:00:00
## 7337 2022-12-16 18:34:31      TRUE 2022-12-16 19:00:00
## 7338 2022-12-16 18:34:19      TRUE 2022-12-16 19:00:00
## 7339 2022-12-16 18:34:19      TRUE 2022-12-16 19:00:00
## 7340 2022-12-16 18:34:17      TRUE 2022-12-16 19:00:00
## 7341 2022-12-16 18:34:15      TRUE 2022-12-16 19:00:00
## 7342 2022-12-16 18:34:12      TRUE 2022-12-16 19:00:00
## 7343 2022-12-16 18:34:12      TRUE 2022-12-16 19:00:00
## 7344 2022-12-16 18:34:11      TRUE 2022-12-16 19:00:00
## 7345 2022-12-16 18:34:10      TRUE 2022-12-16 19:00:00
## 7346 2022-12-16 18:34:08      TRUE 2022-12-16 19:00:00
## 7347 2022-12-16 18:34:07      TRUE 2022-12-16 19:00:00
## 7348 2022-12-16 18:34:06      TRUE 2022-12-16 19:00:00
## 7349 2022-12-16 18:34:04      TRUE 2022-12-16 19:00:00
## 7350 2022-12-16 18:34:04      TRUE 2022-12-16 19:00:00
## 7351 2022-12-16 18:34:03      TRUE 2022-12-16 19:00:00
## 7352 2022-12-16 18:34:02      TRUE 2022-12-16 19:00:00
## 7353 2022-12-16 18:34:01      TRUE 2022-12-16 19:00:00
## 7354 2022-12-16 18:33:57      TRUE 2022-12-16 19:00:00
## 7355 2022-12-16 18:33:56      TRUE 2022-12-16 19:00:00
## 7356 2022-12-16 18:33:55      TRUE 2022-12-16 19:00:00
## 7357 2022-12-16 18:33:51      TRUE 2022-12-16 19:00:00
## 7358 2022-12-16 18:33:49      TRUE 2022-12-16 19:00:00
## 7359 2022-12-16 18:33:46      TRUE 2022-12-16 19:00:00
## 7360 2022-12-16 18:33:43      TRUE 2022-12-16 19:00:00
## 7361 2022-12-16 18:33:39      TRUE 2022-12-16 19:00:00
## 7362 2022-12-16 18:33:38      TRUE 2022-12-16 19:00:00
## 7363 2022-12-16 18:33:36      TRUE 2022-12-16 19:00:00
## 7364 2022-12-16 18:33:33      TRUE 2022-12-16 19:00:00
## 7365 2022-12-16 18:33:30      TRUE 2022-12-16 19:00:00
## 7366 2022-12-16 18:33:30      TRUE 2022-12-16 19:00:00
## 7367 2022-12-16 18:33:26      TRUE 2022-12-16 19:00:00
## 7368 2022-12-16 18:33:22      TRUE 2022-12-16 19:00:00
## 7369 2022-12-16 18:33:22      TRUE 2022-12-16 19:00:00
## 7370 2022-12-16 18:33:18      TRUE 2022-12-16 19:00:00
## 7371 2022-12-16 18:33:17      TRUE 2022-12-16 19:00:00
## 7372 2022-12-16 18:33:15      TRUE 2022-12-16 19:00:00
## 7373 2022-12-16 18:33:14      TRUE 2022-12-16 19:00:00
## 7374 2022-12-16 18:33:13      TRUE 2022-12-16 19:00:00
## 7375 2022-12-16 18:33:11      TRUE 2022-12-16 19:00:00
## 7376 2022-12-16 18:33:04      TRUE 2022-12-16 19:00:00
## 7377 2022-12-16 18:33:03      TRUE 2022-12-16 19:00:00
## 7378 2022-12-16 18:33:01      TRUE 2022-12-16 19:00:00
## 7379 2022-12-16 18:32:58      TRUE 2022-12-16 19:00:00
## 7380 2022-12-16 18:32:56      TRUE 2022-12-16 19:00:00
## 7381 2022-12-16 18:32:55      TRUE 2022-12-16 19:00:00
## 7382 2022-12-16 18:32:54      TRUE 2022-12-16 19:00:00
## 7383 2022-12-16 18:32:54      TRUE 2022-12-16 19:00:00
## 7384 2022-12-16 18:32:54      TRUE 2022-12-16 19:00:00
## 7385 2022-12-16 18:32:52      TRUE 2022-12-16 19:00:00
## 7386 2022-12-16 18:32:49      TRUE 2022-12-16 19:00:00
## 7387 2022-12-16 18:32:48      TRUE 2022-12-16 19:00:00
## 7388 2022-12-16 18:32:47      TRUE 2022-12-16 19:00:00
## 7389 2022-12-16 18:32:47      TRUE 2022-12-16 19:00:00
## 7390 2022-12-16 18:32:46      TRUE 2022-12-16 19:00:00
## 7391 2022-12-16 18:32:44      TRUE 2022-12-16 19:00:00
## 7392 2022-12-16 18:32:43      TRUE 2022-12-16 19:00:00
## 7393 2022-12-16 18:32:39      TRUE 2022-12-16 19:00:00
## 7394 2022-12-16 18:32:35      TRUE 2022-12-16 19:00:00
## 7395 2022-12-16 18:32:29      TRUE 2022-12-16 19:00:00
## 7396 2022-12-16 18:32:24      TRUE 2022-12-16 19:00:00
## 7397 2022-12-16 18:32:24      TRUE 2022-12-16 19:00:00
## 7398 2022-12-16 18:32:23      TRUE 2022-12-16 19:00:00
## 7399 2022-12-16 18:32:22      TRUE 2022-12-16 19:00:00
## 7400 2022-12-16 18:32:19      TRUE 2022-12-16 19:00:00
## 7401 2022-12-16 18:32:17      TRUE 2022-12-16 19:00:00
## 7402 2022-12-16 18:32:17      TRUE 2022-12-16 19:00:00
## 7403 2022-12-16 18:32:12      TRUE 2022-12-16 19:00:00
## 7404 2022-12-16 18:32:08      TRUE 2022-12-16 19:00:00
## 7405 2022-12-16 18:32:05      TRUE 2022-12-16 19:00:00
## 7406 2022-12-16 18:32:03      TRUE 2022-12-16 19:00:00
## 7407 2022-12-16 18:31:57      TRUE 2022-12-16 19:00:00
## 7408 2022-12-16 18:31:47      TRUE 2022-12-16 19:00:00
## 7409 2022-12-16 18:31:44      TRUE 2022-12-16 19:00:00
## 7410 2022-12-16 18:31:43      TRUE 2022-12-16 19:00:00
## 7411 2022-12-16 18:31:31      TRUE 2022-12-16 19:00:00
## 7412 2022-12-16 18:31:27      TRUE 2022-12-16 19:00:00
## 7413 2022-12-16 18:31:23      TRUE 2022-12-16 19:00:00
## 7414 2022-12-16 18:31:22      TRUE 2022-12-16 19:00:00
## 7415 2022-12-16 18:31:17      TRUE 2022-12-16 19:00:00
## 7416 2022-12-16 18:31:15      TRUE 2022-12-16 19:00:00
## 7417 2022-12-16 18:31:11      TRUE 2022-12-16 19:00:00
## 7418 2022-12-16 18:31:06      TRUE 2022-12-16 19:00:00
## 7419 2022-12-16 18:31:05      TRUE 2022-12-16 19:00:00
## 7420 2022-12-16 18:30:59      TRUE 2022-12-16 19:00:00
## 7421 2022-12-16 18:30:55      TRUE 2022-12-16 19:00:00
## 7422 2022-12-16 18:30:48      TRUE 2022-12-16 19:00:00
## 7423 2022-12-16 18:30:42      TRUE 2022-12-16 19:00:00
## 7424 2022-12-16 18:30:40      TRUE 2022-12-16 19:00:00
## 7425 2022-12-16 18:30:37      TRUE 2022-12-16 19:00:00
## 7426 2022-12-16 18:30:33      TRUE 2022-12-16 19:00:00
## 7427 2022-12-16 18:30:29      TRUE 2022-12-16 19:00:00
## 7428 2022-12-16 18:30:28      TRUE 2022-12-16 19:00:00
## 7429 2022-12-16 18:30:27      TRUE 2022-12-16 19:00:00
## 7430 2022-12-16 18:30:23      TRUE 2022-12-16 19:00:00
## 7431 2022-12-16 18:30:22      TRUE 2022-12-16 19:00:00
## 7432 2022-12-16 18:30:21      TRUE 2022-12-16 19:00:00
## 7433 2022-12-16 18:30:17      TRUE 2022-12-16 19:00:00
## 7434 2022-12-16 18:30:13      TRUE 2022-12-16 19:00:00
## 7435 2022-12-16 18:30:07      TRUE 2022-12-16 19:00:00
## 7436 2022-12-16 18:30:04      TRUE 2022-12-16 19:00:00
## 7437 2022-12-16 18:29:52      TRUE 2022-12-16 18:00:00
## 7438 2022-12-16 18:29:51      TRUE 2022-12-16 18:00:00
## 7439 2022-12-16 18:29:50      TRUE 2022-12-16 18:00:00
## 7440 2022-12-16 18:29:40      TRUE 2022-12-16 18:00:00
## 7441 2022-12-16 18:29:40      TRUE 2022-12-16 18:00:00
## 7442 2022-12-16 18:29:37      TRUE 2022-12-16 18:00:00
## 7443 2022-12-16 18:29:24      TRUE 2022-12-16 18:00:00
## 7444 2022-12-16 18:29:24      TRUE 2022-12-16 18:00:00
## 7445 2022-12-16 18:29:24      TRUE 2022-12-16 18:00:00
## 7446 2022-12-16 18:29:22      TRUE 2022-12-16 18:00:00
## 7447 2022-12-16 18:29:19      TRUE 2022-12-16 18:00:00
## 7448 2022-12-16 18:29:13      TRUE 2022-12-16 18:00:00
## 7449 2022-12-16 18:29:10      TRUE 2022-12-16 18:00:00
## 7450 2022-12-16 18:29:08      TRUE 2022-12-16 18:00:00
## 7451 2022-12-16 18:29:06      TRUE 2022-12-16 18:00:00
## 7452 2022-12-16 18:29:03      TRUE 2022-12-16 18:00:00
## 7453 2022-12-16 18:29:00      TRUE 2022-12-16 18:00:00
## 7454 2022-12-16 18:28:59      TRUE 2022-12-16 18:00:00
## 7455 2022-12-16 18:28:59      TRUE 2022-12-16 18:00:00
## 7456 2022-12-16 18:28:56      TRUE 2022-12-16 18:00:00
## 7457 2022-12-16 18:28:54      TRUE 2022-12-16 18:00:00
## 7458 2022-12-16 18:28:52      TRUE 2022-12-16 18:00:00
## 7459 2022-12-16 18:28:44      TRUE 2022-12-16 18:00:00
## 7460 2022-12-16 18:28:43      TRUE 2022-12-16 18:00:00
## 7461 2022-12-16 18:28:42      TRUE 2022-12-16 18:00:00
## 7462 2022-12-16 18:28:39      TRUE 2022-12-16 18:00:00
## 7463 2022-12-16 18:28:32      TRUE 2022-12-16 18:00:00
## 7464 2022-12-16 18:28:31      TRUE 2022-12-16 18:00:00
## 7465 2022-12-16 18:28:23      TRUE 2022-12-16 18:00:00
## 7466 2022-12-16 18:28:18      TRUE 2022-12-16 18:00:00
## 7467 2022-12-16 18:28:14      TRUE 2022-12-16 18:00:00
## 7468 2022-12-16 18:28:06      TRUE 2022-12-16 18:00:00
## 7469 2022-12-16 18:27:57      TRUE 2022-12-16 18:00:00
## 7470 2022-12-16 18:27:51      TRUE 2022-12-16 18:00:00
## 7471 2022-12-16 18:27:50      TRUE 2022-12-16 18:00:00
## 7472 2022-12-16 18:27:49      TRUE 2022-12-16 18:00:00
## 7473 2022-12-16 18:27:41      TRUE 2022-12-16 18:00:00
## 7474 2022-12-16 18:27:41      TRUE 2022-12-16 18:00:00
## 7475 2022-12-16 18:27:39      TRUE 2022-12-16 18:00:00
## 7476 2022-12-16 18:27:37      TRUE 2022-12-16 18:00:00
## 7477 2022-12-16 18:27:32      TRUE 2022-12-16 18:00:00
## 7478 2022-12-16 18:27:32      TRUE 2022-12-16 18:00:00
## 7479 2022-12-16 18:27:30      TRUE 2022-12-16 18:00:00
## 7480 2022-12-16 18:27:28      TRUE 2022-12-16 18:00:00
## 7481 2022-12-16 18:27:27      TRUE 2022-12-16 18:00:00
## 7482 2022-12-16 18:27:26      TRUE 2022-12-16 18:00:00
## 7483 2022-12-16 18:27:18      TRUE 2022-12-16 18:00:00
## 7484 2022-12-16 18:27:12      TRUE 2022-12-16 18:00:00
## 7485 2022-12-16 18:27:11      TRUE 2022-12-16 18:00:00
## 7486 2022-12-16 18:27:10      TRUE 2022-12-16 18:00:00
## 7487 2022-12-16 18:27:09      TRUE 2022-12-16 18:00:00
## 7488 2022-12-16 18:27:06      TRUE 2022-12-16 18:00:00
## 7489 2022-12-16 18:27:01      TRUE 2022-12-16 18:00:00
## 7490 2022-12-16 18:26:57      TRUE 2022-12-16 18:00:00
## 7491 2022-12-16 18:26:56      TRUE 2022-12-16 18:00:00
## 7492 2022-12-16 18:26:54      TRUE 2022-12-16 18:00:00
## 7493 2022-12-16 18:26:52      TRUE 2022-12-16 18:00:00
## 7494 2022-12-16 18:26:52      TRUE 2022-12-16 18:00:00
## 7495 2022-12-16 18:26:40      TRUE 2022-12-16 18:00:00
## 7496 2022-12-16 18:26:38      TRUE 2022-12-16 18:00:00
## 7497 2022-12-16 18:26:37      TRUE 2022-12-16 18:00:00
## 7498 2022-12-16 18:26:32      TRUE 2022-12-16 18:00:00
## 7499 2022-12-16 18:26:30      TRUE 2022-12-16 18:00:00
## 7500 2022-12-16 18:26:29      TRUE 2022-12-16 18:00:00
## 7501 2022-12-16 18:26:27      TRUE 2022-12-16 18:00:00
## 7502 2022-12-16 18:26:26      TRUE 2022-12-16 18:00:00
## 7503 2022-12-16 18:26:25      TRUE 2022-12-16 18:00:00
## 7504 2022-12-16 18:26:22      TRUE 2022-12-16 18:00:00
## 7505 2022-12-16 18:26:19      TRUE 2022-12-16 18:00:00
## 7506 2022-12-16 18:26:12      TRUE 2022-12-16 18:00:00
## 7507 2022-12-16 18:26:11      TRUE 2022-12-16 18:00:00
## 7508 2022-12-16 18:26:11      TRUE 2022-12-16 18:00:00
## 7509 2022-12-16 18:26:10      TRUE 2022-12-16 18:00:00
## 7510 2022-12-16 18:26:05      TRUE 2022-12-16 18:00:00
## 7511 2022-12-16 18:25:48      TRUE 2022-12-16 18:00:00
## 7512 2022-12-16 18:25:46      TRUE 2022-12-16 18:00:00
## 7513 2022-12-16 18:25:43      TRUE 2022-12-16 18:00:00
## 7514 2022-12-16 18:25:40      TRUE 2022-12-16 18:00:00
## 7515 2022-12-16 18:25:39      TRUE 2022-12-16 18:00:00
## 7516 2022-12-16 18:25:36      TRUE 2022-12-16 18:00:00
## 7517 2022-12-16 18:25:28      TRUE 2022-12-16 18:00:00
## 7518 2022-12-16 18:25:25      TRUE 2022-12-16 18:00:00
## 7519 2022-12-16 18:25:23      TRUE 2022-12-16 18:00:00
## 7520 2022-12-16 18:25:22      TRUE 2022-12-16 18:00:00
## 7521 2022-12-16 18:25:16      TRUE 2022-12-16 18:00:00
## 7522 2022-12-16 18:25:03      TRUE 2022-12-16 18:00:00
## 7523 2022-12-16 18:25:03      TRUE 2022-12-16 18:00:00
## 7524 2022-12-16 18:25:01      TRUE 2022-12-16 18:00:00
## 7525 2022-12-16 18:25:00      TRUE 2022-12-16 18:00:00
## 7526 2022-12-16 18:24:56      TRUE 2022-12-16 18:00:00
## 7527 2022-12-16 18:24:50      TRUE 2022-12-16 18:00:00
## 7528 2022-12-16 18:24:44      TRUE 2022-12-16 18:00:00
## 7529 2022-12-16 18:24:36      TRUE 2022-12-16 18:00:00
## 7530 2022-12-16 18:24:29      TRUE 2022-12-16 18:00:00
## 7531 2022-12-16 18:24:26      TRUE 2022-12-16 18:00:00
## 7532 2022-12-16 18:24:17      TRUE 2022-12-16 18:00:00
## 7533 2022-12-16 18:24:15      TRUE 2022-12-16 18:00:00
## 7534 2022-12-16 18:24:08      TRUE 2022-12-16 18:00:00
## 7535 2022-12-16 18:24:07      TRUE 2022-12-16 18:00:00
## 7536 2022-12-16 18:23:59      TRUE 2022-12-16 18:00:00
## 7537 2022-12-16 18:23:47      TRUE 2022-12-16 18:00:00
## 7538 2022-12-16 18:23:39      TRUE 2022-12-16 18:00:00
## 7539 2022-12-16 18:23:29      TRUE 2022-12-16 18:00:00
## 7540 2022-12-16 18:23:28      TRUE 2022-12-16 18:00:00
## 7541 2022-12-16 18:23:28      TRUE 2022-12-16 18:00:00
## 7542 2022-12-16 18:23:26      TRUE 2022-12-16 18:00:00
## 7543 2022-12-16 18:23:22      TRUE 2022-12-16 18:00:00
## 7544 2022-12-16 18:23:22      TRUE 2022-12-16 18:00:00
## 7545 2022-12-16 18:23:15      TRUE 2022-12-16 18:00:00
## 7546 2022-12-16 18:23:11      TRUE 2022-12-16 18:00:00
## 7547 2022-12-16 18:22:56      TRUE 2022-12-16 18:00:00
## 7548 2022-12-16 18:22:55      TRUE 2022-12-16 18:00:00
## 7549 2022-12-16 18:22:47      TRUE 2022-12-16 18:00:00
## 7550 2022-12-16 18:22:43      TRUE 2022-12-16 18:00:00
## 7551 2022-12-16 18:22:42      TRUE 2022-12-16 18:00:00
## 7552 2022-12-16 18:22:40      TRUE 2022-12-16 18:00:00
## 7553 2022-12-16 18:22:39      TRUE 2022-12-16 18:00:00
## 7554 2022-12-16 18:22:39      TRUE 2022-12-16 18:00:00
## 7555 2022-12-16 18:22:38      TRUE 2022-12-16 18:00:00
## 7556 2022-12-16 18:22:35      TRUE 2022-12-16 18:00:00
## 7557 2022-12-16 18:22:33      TRUE 2022-12-16 18:00:00
## 7558 2022-12-16 18:22:32      TRUE 2022-12-16 18:00:00
## 7559 2022-12-16 18:22:29      TRUE 2022-12-16 18:00:00
## 7560 2022-12-16 18:22:21      TRUE 2022-12-16 18:00:00
## 7561 2022-12-16 18:22:16      TRUE 2022-12-16 18:00:00
## 7562 2022-12-16 18:22:15      TRUE 2022-12-16 18:00:00
## 7563 2022-12-16 18:22:08      TRUE 2022-12-16 18:00:00
## 7564 2022-12-16 18:22:08      TRUE 2022-12-16 18:00:00
## 7565 2022-12-16 18:22:06      TRUE 2022-12-16 18:00:00
## 7566 2022-12-16 18:22:06      TRUE 2022-12-16 18:00:00
## 7567 2022-12-16 18:21:57      TRUE 2022-12-16 18:00:00
## 7568 2022-12-16 18:21:56      TRUE 2022-12-16 18:00:00
## 7569 2022-12-16 18:21:56      TRUE 2022-12-16 18:00:00
## 7570 2022-12-16 18:21:55      TRUE 2022-12-16 18:00:00
## 7571 2022-12-16 18:21:54      TRUE 2022-12-16 18:00:00
## 7572 2022-12-16 18:21:51      TRUE 2022-12-16 18:00:00
## 7573 2022-12-16 18:21:45      TRUE 2022-12-16 18:00:00
## 7574 2022-12-16 18:21:43      TRUE 2022-12-16 18:00:00
## 7575 2022-12-16 18:21:41      TRUE 2022-12-16 18:00:00
## 7576 2022-12-16 18:21:38      TRUE 2022-12-16 18:00:00
## 7577 2022-12-16 18:21:38      TRUE 2022-12-16 18:00:00
## 7578 2022-12-16 18:21:38      TRUE 2022-12-16 18:00:00
## 7579 2022-12-16 18:21:36      TRUE 2022-12-16 18:00:00
## 7580 2022-12-16 18:21:30      TRUE 2022-12-16 18:00:00
## 7581 2022-12-16 18:21:29      TRUE 2022-12-16 18:00:00
## 7582 2022-12-16 18:21:26      TRUE 2022-12-16 18:00:00
## 7583 2022-12-16 18:21:25      TRUE 2022-12-16 18:00:00
## 7584 2022-12-16 18:21:16      TRUE 2022-12-16 18:00:00
## 7585 2022-12-16 18:21:15      TRUE 2022-12-16 18:00:00
## 7586 2022-12-16 18:21:13      TRUE 2022-12-16 18:00:00
## 7587 2022-12-16 18:21:13      TRUE 2022-12-16 18:00:00
## 7588 2022-12-16 18:21:09      TRUE 2022-12-16 18:00:00
## 7589 2022-12-16 18:21:03      TRUE 2022-12-16 18:00:00
## 7590 2022-12-16 18:21:00      TRUE 2022-12-16 18:00:00
## 7591 2022-12-16 18:20:58      TRUE 2022-12-16 18:00:00
## 7592 2022-12-16 18:20:53      TRUE 2022-12-16 18:00:00
## 7593 2022-12-16 18:20:52      TRUE 2022-12-16 18:00:00
## 7594 2022-12-16 18:20:47      TRUE 2022-12-16 18:00:00
## 7595 2022-12-16 18:20:43      TRUE 2022-12-16 18:00:00
## 7596 2022-12-16 18:20:33      TRUE 2022-12-16 18:00:00
## 7597 2022-12-16 18:20:32      TRUE 2022-12-16 18:00:00
## 7598 2022-12-16 18:20:32      TRUE 2022-12-16 18:00:00
## 7599 2022-12-16 18:20:21      TRUE 2022-12-16 18:00:00
## 7600 2022-12-16 18:20:19      TRUE 2022-12-16 18:00:00
## 7601 2022-12-16 18:20:17      TRUE 2022-12-16 18:00:00
## 7602 2022-12-16 18:20:16      TRUE 2022-12-16 18:00:00
## 7603 2022-12-16 18:20:16      TRUE 2022-12-16 18:00:00
## 7604 2022-12-16 18:20:15      TRUE 2022-12-16 18:00:00
## 7605 2022-12-16 18:20:12      TRUE 2022-12-16 18:00:00
## 7606 2022-12-16 18:20:11      TRUE 2022-12-16 18:00:00
## 7607 2022-12-16 18:20:10      TRUE 2022-12-16 18:00:00
## 7608 2022-12-16 18:20:08      TRUE 2022-12-16 18:00:00
## 7609 2022-12-16 18:20:07      TRUE 2022-12-16 18:00:00
## 7610 2022-12-16 18:20:07      TRUE 2022-12-16 18:00:00
## 7611 2022-12-16 18:20:06      TRUE 2022-12-16 18:00:00
## 7612 2022-12-16 18:20:06      TRUE 2022-12-16 18:00:00
## 7613 2022-12-16 18:20:01      TRUE 2022-12-16 18:00:00
## 7614 2022-12-16 18:19:59      TRUE 2022-12-16 18:00:00
## 7615 2022-12-16 18:19:44      TRUE 2022-12-16 18:00:00
## 7616 2022-12-16 18:19:42      TRUE 2022-12-16 18:00:00
## 7617 2022-12-16 18:19:40      TRUE 2022-12-16 18:00:00
## 7618 2022-12-16 18:19:39      TRUE 2022-12-16 18:00:00
## 7619 2022-12-16 18:19:38      TRUE 2022-12-16 18:00:00
## 7620 2022-12-16 18:19:38      TRUE 2022-12-16 18:00:00
## 7621 2022-12-16 18:19:37      TRUE 2022-12-16 18:00:00
## 7622 2022-12-16 18:19:34      TRUE 2022-12-16 18:00:00
## 7623 2022-12-16 18:19:33      TRUE 2022-12-16 18:00:00
## 7624 2022-12-16 18:19:32      TRUE 2022-12-16 18:00:00
## 7625 2022-12-16 18:19:31      TRUE 2022-12-16 18:00:00
## 7626 2022-12-16 18:19:31      TRUE 2022-12-16 18:00:00
## 7627 2022-12-16 18:19:29      TRUE 2022-12-16 18:00:00
## 7628 2022-12-16 18:19:28      TRUE 2022-12-16 18:00:00
## 7629 2022-12-16 18:19:28      TRUE 2022-12-16 18:00:00
## 7630 2022-12-16 18:19:18      TRUE 2022-12-16 18:00:00
## 7631 2022-12-16 18:19:15      TRUE 2022-12-16 18:00:00
## 7632 2022-12-16 18:19:12      TRUE 2022-12-16 18:00:00
## 7633 2022-12-16 18:19:07      TRUE 2022-12-16 18:00:00
## 7634 2022-12-16 18:19:07      TRUE 2022-12-16 18:00:00
## 7635 2022-12-16 18:19:04      TRUE 2022-12-16 18:00:00
## 7636 2022-12-16 18:19:03      TRUE 2022-12-16 18:00:00
## 7637 2022-12-16 18:18:54      TRUE 2022-12-16 18:00:00
## 7638 2022-12-16 18:18:53      TRUE 2022-12-16 18:00:00
## 7639 2022-12-16 18:18:50      TRUE 2022-12-16 18:00:00
## 7640 2022-12-16 18:18:49      TRUE 2022-12-16 18:00:00
## 7641 2022-12-16 18:18:47      TRUE 2022-12-16 18:00:00
## 7642 2022-12-16 18:18:44      TRUE 2022-12-16 18:00:00
## 7643 2022-12-16 18:18:35      TRUE 2022-12-16 18:00:00
## 7644 2022-12-16 18:18:23      TRUE 2022-12-16 18:00:00
## 7645 2022-12-16 18:18:20      TRUE 2022-12-16 18:00:00
## 7646 2022-12-16 18:18:18      TRUE 2022-12-16 18:00:00
## 7647 2022-12-16 18:18:14      TRUE 2022-12-16 18:00:00
## 7648 2022-12-16 18:18:11      TRUE 2022-12-16 18:00:00
## 7649 2022-12-16 18:18:09      TRUE 2022-12-16 18:00:00
## 7650 2022-12-16 18:18:08      TRUE 2022-12-16 18:00:00
## 7651 2022-12-16 18:18:07      TRUE 2022-12-16 18:00:00
## 7652 2022-12-16 18:18:05      TRUE 2022-12-16 18:00:00
## 7653 2022-12-16 18:18:05      TRUE 2022-12-16 18:00:00
## 7654 2022-12-16 18:18:05      TRUE 2022-12-16 18:00:00
## 7655 2022-12-16 18:18:04      TRUE 2022-12-16 18:00:00
## 7656 2022-12-16 18:18:00      TRUE 2022-12-16 18:00:00
## 7657 2022-12-16 18:17:59      TRUE 2022-12-16 18:00:00
## 7658 2022-12-16 18:17:58      TRUE 2022-12-16 18:00:00
## 7659 2022-12-16 18:17:56      TRUE 2022-12-16 18:00:00
## 7660 2022-12-16 18:17:55      TRUE 2022-12-16 18:00:00
## 7661 2022-12-16 18:17:50      TRUE 2022-12-16 18:00:00
## 7662 2022-12-16 18:17:49      TRUE 2022-12-16 18:00:00
## 7663 2022-12-16 18:17:49      TRUE 2022-12-16 18:00:00
## 7664 2022-12-16 18:17:46      TRUE 2022-12-16 18:00:00
## 7665 2022-12-16 18:17:40      TRUE 2022-12-16 18:00:00
## 7666 2022-12-16 18:17:35      TRUE 2022-12-16 18:00:00
## 7667 2022-12-16 18:17:33      TRUE 2022-12-16 18:00:00
## 7668 2022-12-16 18:17:31      TRUE 2022-12-16 18:00:00
## 7669 2022-12-16 18:17:31      TRUE 2022-12-16 18:00:00
## 7670 2022-12-16 18:17:25      TRUE 2022-12-16 18:00:00
## 7671 2022-12-16 18:17:21      TRUE 2022-12-16 18:00:00
## 7672 2022-12-16 18:17:21      TRUE 2022-12-16 18:00:00
## 7673 2022-12-16 18:17:11      TRUE 2022-12-16 18:00:00
## 7674 2022-12-16 18:17:08      TRUE 2022-12-16 18:00:00
## 7675 2022-12-16 18:17:07      TRUE 2022-12-16 18:00:00
## 7676 2022-12-16 18:17:05      TRUE 2022-12-16 18:00:00
## 7677 2022-12-16 18:17:03      TRUE 2022-12-16 18:00:00
## 7678 2022-12-16 18:17:00      TRUE 2022-12-16 18:00:00
## 7679 2022-12-16 18:17:00      TRUE 2022-12-16 18:00:00
## 7680 2022-12-16 18:16:59      TRUE 2022-12-16 18:00:00
## 7681 2022-12-16 18:16:59      TRUE 2022-12-16 18:00:00
## 7682 2022-12-16 18:16:59      TRUE 2022-12-16 18:00:00
## 7683 2022-12-16 18:16:58      TRUE 2022-12-16 18:00:00
## 7684 2022-12-16 18:16:57      TRUE 2022-12-16 18:00:00
## 7685 2022-12-16 18:16:56      TRUE 2022-12-16 18:00:00
## 7686 2022-12-16 18:16:56      TRUE 2022-12-16 18:00:00
## 7687 2022-12-16 18:16:55      TRUE 2022-12-16 18:00:00
## 7688 2022-12-16 18:16:55      TRUE 2022-12-16 18:00:00
## 7689 2022-12-16 18:16:51      TRUE 2022-12-16 18:00:00
## 7690 2022-12-16 18:16:51      TRUE 2022-12-16 18:00:00
## 7691 2022-12-16 18:16:47      TRUE 2022-12-16 18:00:00
## 7692 2022-12-16 18:16:47      TRUE 2022-12-16 18:00:00
## 7693 2022-12-16 18:16:46      TRUE 2022-12-16 18:00:00
## 7694 2022-12-16 18:16:46      TRUE 2022-12-16 18:00:00
## 7695 2022-12-16 18:16:44      TRUE 2022-12-16 18:00:00
## 7696 2022-12-16 18:16:43      TRUE 2022-12-16 18:00:00
## 7697 2022-12-16 18:16:43      TRUE 2022-12-16 18:00:00
## 7698 2022-12-16 18:16:42      TRUE 2022-12-16 18:00:00
## 7699 2022-12-16 18:16:41      TRUE 2022-12-16 18:00:00
## 7700 2022-12-16 18:16:40      TRUE 2022-12-16 18:00:00
## 7701 2022-12-16 18:16:40      TRUE 2022-12-16 18:00:00
## 7702 2022-12-16 18:16:39      TRUE 2022-12-16 18:00:00
## 7703 2022-12-16 18:16:38      TRUE 2022-12-16 18:00:00
## 7704 2022-12-16 18:16:35      TRUE 2022-12-16 18:00:00
## 7705 2022-12-16 18:16:32      TRUE 2022-12-16 18:00:00
## 7706 2022-12-16 18:16:32      TRUE 2022-12-16 18:00:00
## 7707 2022-12-16 18:16:31      TRUE 2022-12-16 18:00:00
## 7708 2022-12-16 18:16:31      TRUE 2022-12-16 18:00:00
## 7709 2022-12-16 18:16:26      TRUE 2022-12-16 18:00:00
## 7710 2022-12-16 18:16:26      TRUE 2022-12-16 18:00:00
## 7711 2022-12-16 18:16:23      TRUE 2022-12-16 18:00:00
## 7712 2022-12-16 18:16:11      TRUE 2022-12-16 18:00:00
## 7713 2022-12-16 18:16:09      TRUE 2022-12-16 18:00:00
## 7714 2022-12-16 18:16:09      TRUE 2022-12-16 18:00:00
## 7715 2022-12-16 18:16:04      TRUE 2022-12-16 18:00:00
## 7716 2022-12-16 18:15:59      TRUE 2022-12-16 18:00:00
## 7717 2022-12-16 18:15:59      TRUE 2022-12-16 18:00:00
## 7718 2022-12-16 18:15:58      TRUE 2022-12-16 18:00:00
## 7719 2022-12-16 18:15:57      TRUE 2022-12-16 18:00:00
## 7720 2022-12-16 18:15:55      TRUE 2022-12-16 18:00:00
## 7721 2022-12-16 18:15:53      TRUE 2022-12-16 18:00:00
## 7722 2022-12-16 18:15:50      TRUE 2022-12-16 18:00:00
## 7723 2022-12-16 18:15:50      TRUE 2022-12-16 18:00:00
## 7724 2022-12-16 18:15:45      TRUE 2022-12-16 18:00:00
## 7725 2022-12-16 18:15:42      TRUE 2022-12-16 18:00:00
## 7726 2022-12-16 18:15:42      TRUE 2022-12-16 18:00:00
## 7727 2022-12-16 18:15:41      TRUE 2022-12-16 18:00:00
## 7728 2022-12-16 18:15:38      TRUE 2022-12-16 18:00:00
## 7729 2022-12-16 18:15:37      TRUE 2022-12-16 18:00:00
## 7730 2022-12-16 18:15:35      TRUE 2022-12-16 18:00:00
## 7731 2022-12-16 18:15:35      TRUE 2022-12-16 18:00:00
## 7732 2022-12-16 18:15:29      TRUE 2022-12-16 18:00:00
## 7733 2022-12-16 18:15:29      TRUE 2022-12-16 18:00:00
## 7734 2022-12-16 18:15:28      TRUE 2022-12-16 18:00:00
## 7735 2022-12-16 18:15:25      TRUE 2022-12-16 18:00:00
## 7736 2022-12-16 18:15:24      TRUE 2022-12-16 18:00:00
## 7737 2022-12-16 18:15:23      TRUE 2022-12-16 18:00:00
## 7738 2022-12-16 18:15:18      TRUE 2022-12-16 18:00:00
## 7739 2022-12-16 18:15:16      TRUE 2022-12-16 18:00:00
## 7740 2022-12-16 18:15:15      TRUE 2022-12-16 18:00:00
## 7741 2022-12-16 18:15:09      TRUE 2022-12-16 18:00:00
## 7742 2022-12-16 18:15:07      TRUE 2022-12-16 18:00:00
## 7743 2022-12-16 18:15:05      TRUE 2022-12-16 18:00:00
## 7744 2022-12-16 18:15:03      TRUE 2022-12-16 18:00:00
## 7745 2022-12-16 18:15:02      TRUE 2022-12-16 18:00:00
## 7746 2022-12-16 18:15:01      TRUE 2022-12-16 18:00:00
## 7747 2022-12-16 18:14:58      TRUE 2022-12-16 18:00:00
## 7748 2022-12-16 18:14:58      TRUE 2022-12-16 18:00:00
## 7749 2022-12-16 18:14:58      TRUE 2022-12-16 18:00:00
## 7750 2022-12-16 18:14:56      TRUE 2022-12-16 18:00:00
## 7751 2022-12-16 18:14:56      TRUE 2022-12-16 18:00:00
## 7752 2022-12-16 18:14:54      TRUE 2022-12-16 18:00:00
## 7753 2022-12-16 18:14:48      TRUE 2022-12-16 18:00:00
## 7754 2022-12-16 18:14:48      TRUE 2022-12-16 18:00:00
## 7755 2022-12-16 18:14:43      TRUE 2022-12-16 18:00:00
## 7756 2022-12-16 18:14:43      TRUE 2022-12-16 18:00:00
## 7757 2022-12-16 18:14:41      TRUE 2022-12-16 18:00:00
## 7758 2022-12-16 18:14:41      TRUE 2022-12-16 18:00:00
## 7759 2022-12-16 18:14:40      TRUE 2022-12-16 18:00:00
## 7760 2022-12-16 18:14:39      TRUE 2022-12-16 18:00:00
## 7761 2022-12-16 18:14:31      TRUE 2022-12-16 18:00:00
## 7762 2022-12-16 18:14:30      TRUE 2022-12-16 18:00:00
## 7763 2022-12-16 18:14:29      TRUE 2022-12-16 18:00:00
## 7764 2022-12-16 18:14:28      TRUE 2022-12-16 18:00:00
## 7765 2022-12-16 18:14:24      TRUE 2022-12-16 18:00:00
## 7766 2022-12-16 18:14:23      TRUE 2022-12-16 18:00:00
## 7767 2022-12-16 18:14:22      TRUE 2022-12-16 18:00:00
## 7768 2022-12-16 18:14:17      TRUE 2022-12-16 18:00:00
## 7769 2022-12-16 18:14:16      TRUE 2022-12-16 18:00:00
## 7770 2022-12-16 18:14:15      TRUE 2022-12-16 18:00:00
## 7771 2022-12-16 18:14:12      TRUE 2022-12-16 18:00:00
## 7772 2022-12-16 18:14:12      TRUE 2022-12-16 18:00:00
## 7773 2022-12-16 18:14:10      TRUE 2022-12-16 18:00:00
## 7774 2022-12-16 18:14:09      TRUE 2022-12-16 18:00:00
## 7775 2022-12-16 18:14:09      TRUE 2022-12-16 18:00:00
## 7776 2022-12-16 18:14:08      TRUE 2022-12-16 18:00:00
## 7777 2022-12-16 18:14:05      TRUE 2022-12-16 18:00:00
## 7778 2022-12-16 18:14:04      TRUE 2022-12-16 18:00:00
## 7779 2022-12-16 18:14:01      TRUE 2022-12-16 18:00:00
## 7780 2022-12-16 18:14:01      TRUE 2022-12-16 18:00:00
## 7781 2022-12-16 18:14:00      TRUE 2022-12-16 18:00:00
## 7782 2022-12-16 18:13:59      TRUE 2022-12-16 18:00:00
## 7783 2022-12-16 18:13:59      TRUE 2022-12-16 18:00:00
## 7784 2022-12-16 18:13:56      TRUE 2022-12-16 18:00:00
## 7785 2022-12-16 18:13:53      TRUE 2022-12-16 18:00:00
## 7786 2022-12-16 18:13:53      TRUE 2022-12-16 18:00:00
## 7787 2022-12-16 18:13:41      TRUE 2022-12-16 18:00:00
## 7788 2022-12-16 18:13:40      TRUE 2022-12-16 18:00:00
## 7789 2022-12-16 18:13:38      TRUE 2022-12-16 18:00:00
## 7790 2022-12-16 18:13:37      TRUE 2022-12-16 18:00:00
## 7791 2022-12-16 18:13:35      TRUE 2022-12-16 18:00:00
## 7792 2022-12-16 18:13:30      TRUE 2022-12-16 18:00:00
## 7793 2022-12-16 18:13:29      TRUE 2022-12-16 18:00:00
## 7794 2022-12-16 18:13:27      TRUE 2022-12-16 18:00:00
## 7795 2022-12-16 18:13:26      TRUE 2022-12-16 18:00:00
## 7796 2022-12-16 18:13:26      TRUE 2022-12-16 18:00:00
## 7797 2022-12-16 18:13:25      TRUE 2022-12-16 18:00:00
## 7798 2022-12-16 18:13:24      TRUE 2022-12-16 18:00:00
## 7799 2022-12-16 18:13:23      TRUE 2022-12-16 18:00:00
## 7800 2022-12-16 18:13:23      TRUE 2022-12-16 18:00:00
## 7801 2022-12-16 18:13:21      TRUE 2022-12-16 18:00:00
## 7802 2022-12-16 18:13:21      TRUE 2022-12-16 18:00:00
## 7803 2022-12-16 18:13:21      TRUE 2022-12-16 18:00:00
## 7804 2022-12-16 18:13:21      TRUE 2022-12-16 18:00:00
## 7805 2022-12-16 18:13:17      TRUE 2022-12-16 18:00:00
## 7806 2022-12-16 18:13:14      TRUE 2022-12-16 18:00:00
## 7807 2022-12-16 18:13:08      TRUE 2022-12-16 18:00:00
## 7808 2022-12-16 18:13:07      TRUE 2022-12-16 18:00:00
## 7809 2022-12-16 18:13:05      TRUE 2022-12-16 18:00:00
## 7810 2022-12-16 18:13:01      TRUE 2022-12-16 18:00:00
## 7811 2022-12-16 18:13:01      TRUE 2022-12-16 18:00:00
## 7812 2022-12-16 18:12:51      TRUE 2022-12-16 18:00:00
## 7813 2022-12-16 18:12:50      TRUE 2022-12-16 18:00:00
## 7814 2022-12-16 18:12:50      TRUE 2022-12-16 18:00:00
## 7815 2022-12-16 18:12:47      TRUE 2022-12-16 18:00:00
## 7816 2022-12-16 18:12:46      TRUE 2022-12-16 18:00:00
## 7817 2022-12-16 18:12:46      TRUE 2022-12-16 18:00:00
## 7818 2022-12-16 18:12:43      TRUE 2022-12-16 18:00:00
## 7819 2022-12-16 18:12:42      TRUE 2022-12-16 18:00:00
## 7820 2022-12-16 18:12:38      TRUE 2022-12-16 18:00:00
## 7821 2022-12-16 18:12:35      TRUE 2022-12-16 18:00:00
## 7822 2022-12-16 18:12:30      TRUE 2022-12-16 18:00:00
## 7823 2022-12-16 18:12:30      TRUE 2022-12-16 18:00:00
## 7824 2022-12-16 18:12:29      TRUE 2022-12-16 18:00:00
## 7825 2022-12-16 18:12:27      TRUE 2022-12-16 18:00:00
## 7826 2022-12-16 18:12:24      TRUE 2022-12-16 18:00:00
## 7827 2022-12-16 18:12:22      TRUE 2022-12-16 18:00:00
## 7828 2022-12-16 18:12:17      TRUE 2022-12-16 18:00:00
## 7829 2022-12-16 18:12:17      TRUE 2022-12-16 18:00:00
## 7830 2022-12-16 18:12:13      TRUE 2022-12-16 18:00:00
## 7831 2022-12-16 18:12:10      TRUE 2022-12-16 18:00:00
## 7832 2022-12-16 18:12:08      TRUE 2022-12-16 18:00:00
## 7833 2022-12-16 18:12:06      TRUE 2022-12-16 18:00:00
## 7834 2022-12-16 18:12:02      TRUE 2022-12-16 18:00:00
## 7835 2022-12-16 18:11:56      TRUE 2022-12-16 18:00:00
## 7836 2022-12-16 18:11:55      TRUE 2022-12-16 18:00:00
## 7837 2022-12-16 18:11:51      TRUE 2022-12-16 18:00:00
## 7838 2022-12-16 18:11:50      TRUE 2022-12-16 18:00:00
## 7839 2022-12-16 18:11:49      TRUE 2022-12-16 18:00:00
## 7840 2022-12-16 18:11:49      TRUE 2022-12-16 18:00:00
## 7841 2022-12-16 18:11:49      TRUE 2022-12-16 18:00:00
## 7842 2022-12-16 18:11:49      TRUE 2022-12-16 18:00:00
## 7843 2022-12-16 18:11:47      TRUE 2022-12-16 18:00:00
## 7844 2022-12-16 18:11:43      TRUE 2022-12-16 18:00:00
## 7845 2022-12-16 18:11:40      TRUE 2022-12-16 18:00:00
## 7846 2022-12-16 18:11:34      TRUE 2022-12-16 18:00:00
## 7847 2022-12-16 18:11:32      TRUE 2022-12-16 18:00:00
## 7848 2022-12-16 18:11:24      TRUE 2022-12-16 18:00:00
## 7849 2022-12-16 18:11:24      TRUE 2022-12-16 18:00:00
## 7850 2022-12-16 18:11:21      TRUE 2022-12-16 18:00:00
## 7851 2022-12-16 18:11:18      TRUE 2022-12-16 18:00:00
## 7852 2022-12-16 18:11:18      TRUE 2022-12-16 18:00:00
## 7853 2022-12-16 18:11:15      TRUE 2022-12-16 18:00:00
## 7854 2022-12-16 18:11:13      TRUE 2022-12-16 18:00:00
## 7855 2022-12-16 18:11:10      TRUE 2022-12-16 18:00:00
## 7856 2022-12-16 18:11:09      TRUE 2022-12-16 18:00:00
## 7857 2022-12-16 18:11:07      TRUE 2022-12-16 18:00:00
## 7858 2022-12-16 18:10:58      TRUE 2022-12-16 18:00:00
## 7859 2022-12-16 18:10:56      TRUE 2022-12-16 18:00:00
## 7860 2022-12-16 18:10:49      TRUE 2022-12-16 18:00:00
## 7861 2022-12-16 18:10:44      TRUE 2022-12-16 18:00:00
## 7862 2022-12-16 18:10:43      TRUE 2022-12-16 18:00:00
## 7863 2022-12-16 18:10:42      TRUE 2022-12-16 18:00:00
## 7864 2022-12-16 18:10:36      TRUE 2022-12-16 18:00:00
## 7865 2022-12-16 18:10:34      TRUE 2022-12-16 18:00:00
## 7866 2022-12-16 18:10:33      TRUE 2022-12-16 18:00:00
## 7867 2022-12-16 18:10:33      TRUE 2022-12-16 18:00:00
## 7868 2022-12-16 18:10:31      TRUE 2022-12-16 18:00:00
## 7869 2022-12-16 18:10:31      TRUE 2022-12-16 18:00:00
## 7870 2022-12-16 18:10:29      TRUE 2022-12-16 18:00:00
## 7871 2022-12-16 18:10:28      TRUE 2022-12-16 18:00:00
## 7872 2022-12-16 18:10:23      TRUE 2022-12-16 18:00:00
## 7873 2022-12-16 18:10:23      TRUE 2022-12-16 18:00:00
## 7874 2022-12-16 18:10:21      TRUE 2022-12-16 18:00:00
## 7875 2022-12-16 18:10:20      TRUE 2022-12-16 18:00:00
## 7876 2022-12-16 18:10:19      TRUE 2022-12-16 18:00:00
## 7877 2022-12-16 18:10:17      TRUE 2022-12-16 18:00:00
## 7878 2022-12-16 18:10:17      TRUE 2022-12-16 18:00:00
## 7879 2022-12-16 18:10:13      TRUE 2022-12-16 18:00:00
## 7880 2022-12-16 18:10:05      TRUE 2022-12-16 18:00:00
## 7881 2022-12-16 18:10:04      TRUE 2022-12-16 18:00:00
## 7882 2022-12-16 18:09:59      TRUE 2022-12-16 18:00:00
## 7883 2022-12-16 18:09:55      TRUE 2022-12-16 18:00:00
## 7884 2022-12-16 18:09:51      TRUE 2022-12-16 18:00:00
## 7885 2022-12-16 18:09:49      TRUE 2022-12-16 18:00:00
## 7886 2022-12-16 18:09:48      TRUE 2022-12-16 18:00:00
## 7887 2022-12-16 18:09:46      TRUE 2022-12-16 18:00:00
## 7888 2022-12-16 18:09:43      TRUE 2022-12-16 18:00:00
## 7889 2022-12-16 18:09:34      TRUE 2022-12-16 18:00:00
## 7890 2022-12-16 18:09:32      TRUE 2022-12-16 18:00:00
## 7891 2022-12-16 18:09:31      TRUE 2022-12-16 18:00:00
## 7892 2022-12-16 18:09:30      TRUE 2022-12-16 18:00:00
## 7893 2022-12-16 18:09:30      TRUE 2022-12-16 18:00:00
## 7894 2022-12-16 18:09:26      TRUE 2022-12-16 18:00:00
## 7895 2022-12-16 18:09:26      TRUE 2022-12-16 18:00:00
## 7896 2022-12-16 18:09:24      TRUE 2022-12-16 18:00:00
## 7897 2022-12-16 18:09:24      TRUE 2022-12-16 18:00:00
## 7898 2022-12-16 18:09:20      TRUE 2022-12-16 18:00:00
## 7899 2022-12-16 18:09:20      TRUE 2022-12-16 18:00:00
## 7900 2022-12-16 18:09:19      TRUE 2022-12-16 18:00:00
## 7901 2022-12-16 18:09:19      TRUE 2022-12-16 18:00:00
## 7902 2022-12-16 18:09:17      TRUE 2022-12-16 18:00:00
## 7903 2022-12-16 18:09:17      TRUE 2022-12-16 18:00:00
## 7904 2022-12-16 18:09:16      TRUE 2022-12-16 18:00:00
## 7905 2022-12-16 18:09:15      TRUE 2022-12-16 18:00:00
## 7906 2022-12-16 18:09:14      TRUE 2022-12-16 18:00:00
## 7907 2022-12-16 18:09:12      TRUE 2022-12-16 18:00:00
## 7908 2022-12-16 18:09:08      TRUE 2022-12-16 18:00:00
## 7909 2022-12-16 18:09:06      TRUE 2022-12-16 18:00:00
## 7910 2022-12-16 18:09:04      TRUE 2022-12-16 18:00:00
## 7911 2022-12-16 18:09:04      TRUE 2022-12-16 18:00:00
## 7912 2022-12-16 18:09:01      TRUE 2022-12-16 18:00:00
## 7913 2022-12-16 18:09:00      TRUE 2022-12-16 18:00:00
## 7914 2022-12-16 18:09:00      TRUE 2022-12-16 18:00:00
## 7915 2022-12-16 18:09:00      TRUE 2022-12-16 18:00:00
## 7916 2022-12-16 18:08:58      TRUE 2022-12-16 18:00:00
## 7917 2022-12-16 18:08:57      TRUE 2022-12-16 18:00:00
## 7918 2022-12-16 18:08:54      TRUE 2022-12-16 18:00:00
## 7919 2022-12-16 18:08:53      TRUE 2022-12-16 18:00:00
## 7920 2022-12-16 18:08:52      TRUE 2022-12-16 18:00:00
## 7921 2022-12-16 18:08:50      TRUE 2022-12-16 18:00:00
## 7922 2022-12-16 18:08:49      TRUE 2022-12-16 18:00:00
## 7923 2022-12-16 18:08:49      TRUE 2022-12-16 18:00:00
## 7924 2022-12-16 18:08:47      TRUE 2022-12-16 18:00:00
## 7925 2022-12-16 18:08:46      TRUE 2022-12-16 18:00:00
## 7926 2022-12-16 18:08:46      TRUE 2022-12-16 18:00:00
## 7927 2022-12-16 18:08:45      TRUE 2022-12-16 18:00:00
## 7928 2022-12-16 18:08:44      TRUE 2022-12-16 18:00:00
## 7929 2022-12-16 18:08:43      TRUE 2022-12-16 18:00:00
## 7930 2022-12-16 18:08:41      TRUE 2022-12-16 18:00:00
## 7931 2022-12-16 18:08:39      TRUE 2022-12-16 18:00:00
## 7932 2022-12-16 18:08:39      TRUE 2022-12-16 18:00:00
## 7933 2022-12-16 18:08:38      TRUE 2022-12-16 18:00:00
## 7934 2022-12-16 18:08:34      TRUE 2022-12-16 18:00:00
## 7935 2022-12-16 18:08:33      TRUE 2022-12-16 18:00:00
## 7936 2022-12-16 18:08:29      TRUE 2022-12-16 18:00:00
## 7937 2022-12-16 18:08:22      TRUE 2022-12-16 18:00:00
## 7938 2022-12-16 18:08:18      TRUE 2022-12-16 18:00:00
## 7939 2022-12-16 18:08:18      TRUE 2022-12-16 18:00:00
## 7940 2022-12-16 18:08:14      TRUE 2022-12-16 18:00:00
## 7941 2022-12-16 18:08:13      TRUE 2022-12-16 18:00:00
## 7942 2022-12-16 18:08:12      TRUE 2022-12-16 18:00:00
## 7943 2022-12-16 18:08:11      TRUE 2022-12-16 18:00:00
## 7944 2022-12-16 18:08:11      TRUE 2022-12-16 18:00:00
## 7945 2022-12-16 18:08:09      TRUE 2022-12-16 18:00:00
## 7946 2022-12-16 18:08:05      TRUE 2022-12-16 18:00:00
## 7947 2022-12-16 18:08:03      TRUE 2022-12-16 18:00:00
## 7948 2022-12-16 18:07:57      TRUE 2022-12-16 18:00:00
## 7949 2022-12-16 18:07:49      TRUE 2022-12-16 18:00:00
## 7950 2022-12-16 18:07:46      TRUE 2022-12-16 18:00:00
## 7951 2022-12-16 18:07:45      TRUE 2022-12-16 18:00:00
## 7952 2022-12-16 18:07:43      TRUE 2022-12-16 18:00:00
## 7953 2022-12-16 18:07:42      TRUE 2022-12-16 18:00:00
## 7954 2022-12-16 18:07:42      TRUE 2022-12-16 18:00:00
## 7955 2022-12-16 18:07:36      TRUE 2022-12-16 18:00:00
## 7956 2022-12-16 18:07:32      TRUE 2022-12-16 18:00:00
## 7957 2022-12-16 18:07:31      TRUE 2022-12-16 18:00:00
## 7958 2022-12-16 18:07:30      TRUE 2022-12-16 18:00:00
## 7959 2022-12-16 18:07:25      TRUE 2022-12-16 18:00:00
## 7960 2022-12-16 18:07:25      TRUE 2022-12-16 18:00:00
## 7961 2022-12-16 18:07:18      TRUE 2022-12-16 18:00:00
## 7962 2022-12-16 18:07:16      TRUE 2022-12-16 18:00:00
## 7963 2022-12-16 18:07:15      TRUE 2022-12-16 18:00:00
## 7964 2022-12-16 18:07:14      TRUE 2022-12-16 18:00:00
## 7965 2022-12-16 18:07:13      TRUE 2022-12-16 18:00:00
## 7966 2022-12-16 18:07:01      TRUE 2022-12-16 18:00:00
## 7967 2022-12-16 18:06:59      TRUE 2022-12-16 18:00:00
## 7968 2022-12-16 18:06:57      TRUE 2022-12-16 18:00:00
## 7969 2022-12-16 18:06:54      TRUE 2022-12-16 18:00:00
## 7970 2022-12-16 18:06:48      TRUE 2022-12-16 18:00:00
## 7971 2022-12-16 18:06:46      TRUE 2022-12-16 18:00:00
## 7972 2022-12-16 18:06:46      TRUE 2022-12-16 18:00:00
## 7973 2022-12-16 18:06:45      TRUE 2022-12-16 18:00:00
## 7974 2022-12-16 18:06:45      TRUE 2022-12-16 18:00:00
## 7975 2022-12-16 18:06:44      TRUE 2022-12-16 18:00:00
## 7976 2022-12-16 18:06:43      TRUE 2022-12-16 18:00:00
## 7977 2022-12-16 18:06:42      TRUE 2022-12-16 18:00:00
## 7978 2022-12-16 18:06:41      TRUE 2022-12-16 18:00:00
## 7979 2022-12-16 18:06:39      TRUE 2022-12-16 18:00:00
## 7980 2022-12-16 18:06:39      TRUE 2022-12-16 18:00:00
## 7981 2022-12-16 18:06:39      TRUE 2022-12-16 18:00:00
## 7982 2022-12-16 18:06:39      TRUE 2022-12-16 18:00:00
## 7983 2022-12-16 18:06:38      TRUE 2022-12-16 18:00:00
## 7984 2022-12-16 18:06:32      TRUE 2022-12-16 18:00:00
## 7985 2022-12-16 18:06:29      TRUE 2022-12-16 18:00:00
## 7986 2022-12-16 18:06:29      TRUE 2022-12-16 18:00:00
## 7987 2022-12-16 18:06:26      TRUE 2022-12-16 18:00:00
## 7988 2022-12-16 18:06:22      TRUE 2022-12-16 18:00:00
## 7989 2022-12-16 18:06:21      TRUE 2022-12-16 18:00:00
## 7990 2022-12-16 18:06:21      TRUE 2022-12-16 18:00:00
## 7991 2022-12-16 18:06:21      TRUE 2022-12-16 18:00:00
## 7992 2022-12-16 18:06:21      TRUE 2022-12-16 18:00:00
## 7993 2022-12-16 18:06:16      TRUE 2022-12-16 18:00:00
## 7994 2022-12-16 18:06:10      TRUE 2022-12-16 18:00:00
## 7995 2022-12-16 18:06:07      TRUE 2022-12-16 18:00:00
## 7996 2022-12-16 18:06:05      TRUE 2022-12-16 18:00:00
## 7997 2022-12-16 18:06:05      TRUE 2022-12-16 18:00:00
## 7998 2022-12-16 18:06:04      TRUE 2022-12-16 18:00:00
## 7999 2022-12-16 18:06:02      TRUE 2022-12-16 18:00:00
## 8000 2022-12-16 18:05:57      TRUE 2022-12-16 18:00:00
## 8001 2022-12-16 18:05:54      TRUE 2022-12-16 18:00:00
## 8002 2022-12-16 18:05:51      TRUE 2022-12-16 18:00:00
## 8003 2022-12-16 18:05:50      TRUE 2022-12-16 18:00:00
## 8004 2022-12-16 18:05:48      TRUE 2022-12-16 18:00:00
## 8005 2022-12-16 18:05:47      TRUE 2022-12-16 18:00:00
## 8006 2022-12-16 18:05:42      TRUE 2022-12-16 18:00:00
## 8007 2022-12-16 18:05:40      TRUE 2022-12-16 18:00:00
## 8008 2022-12-16 18:05:35      TRUE 2022-12-16 18:00:00
## 8009 2022-12-16 18:05:32      TRUE 2022-12-16 18:00:00
## 8010 2022-12-16 18:05:31      TRUE 2022-12-16 18:00:00
## 8011 2022-12-16 18:05:26      TRUE 2022-12-16 18:00:00
## 8012 2022-12-16 18:05:24      TRUE 2022-12-16 18:00:00
## 8013 2022-12-16 18:05:23      TRUE 2022-12-16 18:00:00
## 8014 2022-12-16 18:05:16      TRUE 2022-12-16 18:00:00
## 8015 2022-12-16 18:05:16      TRUE 2022-12-16 18:00:00
## 8016 2022-12-16 18:05:15      TRUE 2022-12-16 18:00:00
## 8017 2022-12-16 18:05:04      TRUE 2022-12-16 18:00:00
## 8018 2022-12-16 18:04:58      TRUE 2022-12-16 18:00:00
## 8019 2022-12-16 18:04:57      TRUE 2022-12-16 18:00:00
## 8020 2022-12-16 18:04:55      TRUE 2022-12-16 18:00:00
## 8021 2022-12-16 18:04:55      TRUE 2022-12-16 18:00:00
## 8022 2022-12-16 18:04:52      TRUE 2022-12-16 18:00:00
## 8023 2022-12-16 18:04:51      TRUE 2022-12-16 18:00:00
## 8024 2022-12-16 18:04:49      TRUE 2022-12-16 18:00:00
## 8025 2022-12-16 18:04:46      TRUE 2022-12-16 18:00:00
## 8026 2022-12-16 18:04:44      TRUE 2022-12-16 18:00:00
## 8027 2022-12-16 18:04:42      TRUE 2022-12-16 18:00:00
## 8028 2022-12-16 18:04:42      TRUE 2022-12-16 18:00:00
## 8029 2022-12-16 18:04:41      TRUE 2022-12-16 18:00:00
## 8030 2022-12-16 18:04:41      TRUE 2022-12-16 18:00:00
## 8031 2022-12-16 18:04:40      TRUE 2022-12-16 18:00:00
## 8032 2022-12-16 18:04:39      TRUE 2022-12-16 18:00:00
## 8033 2022-12-16 18:04:38      TRUE 2022-12-16 18:00:00
## 8034 2022-12-16 18:04:37      TRUE 2022-12-16 18:00:00
## 8035 2022-12-16 18:04:37      TRUE 2022-12-16 18:00:00
## 8036 2022-12-16 18:04:37      TRUE 2022-12-16 18:00:00
## 8037 2022-12-16 18:04:36      TRUE 2022-12-16 18:00:00
## 8038 2022-12-16 18:04:33      TRUE 2022-12-16 18:00:00
## 8039 2022-12-16 18:04:33      TRUE 2022-12-16 18:00:00
## 8040 2022-12-16 18:04:29      TRUE 2022-12-16 18:00:00
## 8041 2022-12-16 18:04:29      TRUE 2022-12-16 18:00:00
## 8042 2022-12-16 18:04:29      TRUE 2022-12-16 18:00:00
## 8043 2022-12-16 18:04:27      TRUE 2022-12-16 18:00:00
## 8044 2022-12-16 18:04:26      TRUE 2022-12-16 18:00:00
## 8045 2022-12-16 18:04:25      TRUE 2022-12-16 18:00:00
## 8046 2022-12-16 18:04:24      TRUE 2022-12-16 18:00:00
## 8047 2022-12-16 18:04:11      TRUE 2022-12-16 18:00:00
## 8048 2022-12-16 18:04:10      TRUE 2022-12-16 18:00:00
## 8049 2022-12-16 18:03:53      TRUE 2022-12-16 18:00:00
## 8050 2022-12-16 18:03:48      TRUE 2022-12-16 18:00:00
## 8051 2022-12-16 18:03:45      TRUE 2022-12-16 18:00:00
## 8052 2022-12-16 18:03:44      TRUE 2022-12-16 18:00:00
## 8053 2022-12-16 18:03:43      TRUE 2022-12-16 18:00:00
## 8054 2022-12-16 18:03:43      TRUE 2022-12-16 18:00:00
## 8055 2022-12-16 18:03:34      TRUE 2022-12-16 18:00:00
## 8056 2022-12-16 18:03:33      TRUE 2022-12-16 18:00:00
## 8057 2022-12-16 18:03:30      TRUE 2022-12-16 18:00:00
## 8058 2022-12-16 18:03:28      TRUE 2022-12-16 18:00:00
## 8059 2022-12-16 18:03:26      TRUE 2022-12-16 18:00:00
## 8060 2022-12-16 18:03:23      TRUE 2022-12-16 18:00:00
## 8061 2022-12-16 18:03:20      TRUE 2022-12-16 18:00:00
## 8062 2022-12-16 18:03:20      TRUE 2022-12-16 18:00:00
## 8063 2022-12-16 18:03:18      TRUE 2022-12-16 18:00:00
## 8064 2022-12-16 18:03:16      TRUE 2022-12-16 18:00:00
## 8065 2022-12-16 18:03:14      TRUE 2022-12-16 18:00:00
## 8066 2022-12-16 18:03:13      TRUE 2022-12-16 18:00:00
## 8067 2022-12-16 18:03:12      TRUE 2022-12-16 18:00:00
## 8068 2022-12-16 18:03:12      TRUE 2022-12-16 18:00:00
## 8069 2022-12-16 18:03:12      TRUE 2022-12-16 18:00:00
## 8070 2022-12-16 18:03:10      TRUE 2022-12-16 18:00:00
## 8071 2022-12-16 18:03:09      TRUE 2022-12-16 18:00:00
## 8072 2022-12-16 18:03:08      TRUE 2022-12-16 18:00:00
## 8073 2022-12-16 18:03:07      TRUE 2022-12-16 18:00:00
## 8074 2022-12-16 18:03:05      TRUE 2022-12-16 18:00:00
## 8075 2022-12-16 18:03:01      TRUE 2022-12-16 18:00:00
## 8076 2022-12-16 18:03:01      TRUE 2022-12-16 18:00:00
## 8077 2022-12-16 18:02:58      TRUE 2022-12-16 18:00:00
## 8078 2022-12-16 18:02:56      TRUE 2022-12-16 18:00:00
## 8079 2022-12-16 18:02:51      TRUE 2022-12-16 18:00:00
## 8080 2022-12-16 18:02:48      TRUE 2022-12-16 18:00:00
## 8081 2022-12-16 18:02:47      TRUE 2022-12-16 18:00:00
## 8082 2022-12-16 18:02:46      TRUE 2022-12-16 18:00:00
## 8083 2022-12-16 18:02:44      TRUE 2022-12-16 18:00:00
## 8084 2022-12-16 18:02:43      TRUE 2022-12-16 18:00:00
## 8085 2022-12-16 18:02:34      TRUE 2022-12-16 18:00:00
## 8086 2022-12-16 18:02:30      TRUE 2022-12-16 18:00:00
## 8087 2022-12-16 18:02:27      TRUE 2022-12-16 18:00:00
## 8088 2022-12-16 18:02:26      TRUE 2022-12-16 18:00:00
## 8089 2022-12-16 18:02:26      TRUE 2022-12-16 18:00:00
## 8090 2022-12-16 18:02:25      TRUE 2022-12-16 18:00:00
## 8091 2022-12-16 18:02:25      TRUE 2022-12-16 18:00:00
## 8092 2022-12-16 18:02:25      TRUE 2022-12-16 18:00:00
## 8093 2022-12-16 18:02:24      TRUE 2022-12-16 18:00:00
## 8094 2022-12-16 18:02:21      TRUE 2022-12-16 18:00:00
## 8095 2022-12-16 18:02:21      TRUE 2022-12-16 18:00:00
## 8096 2022-12-16 18:02:17      TRUE 2022-12-16 18:00:00
## 8097 2022-12-16 18:02:15      TRUE 2022-12-16 18:00:00
## 8098 2022-12-16 18:02:13      TRUE 2022-12-16 18:00:00
## 8099 2022-12-16 18:02:13      TRUE 2022-12-16 18:00:00
## 8100 2022-12-16 18:02:13      TRUE 2022-12-16 18:00:00
## 8101 2022-12-16 18:02:13      TRUE 2022-12-16 18:00:00
## 8102 2022-12-16 18:02:12      TRUE 2022-12-16 18:00:00
## 8103 2022-12-16 18:02:12      TRUE 2022-12-16 18:00:00
## 8104 2022-12-16 18:02:09      TRUE 2022-12-16 18:00:00
## 8105 2022-12-16 18:02:04      TRUE 2022-12-16 18:00:00
## 8106 2022-12-16 18:01:56      TRUE 2022-12-16 18:00:00
## 8107 2022-12-16 18:01:55      TRUE 2022-12-16 18:00:00
## 8108 2022-12-16 18:01:54      TRUE 2022-12-16 18:00:00
## 8109 2022-12-16 18:01:52      TRUE 2022-12-16 18:00:00
## 8110 2022-12-16 18:01:52      TRUE 2022-12-16 18:00:00
## 8111 2022-12-16 18:01:44      TRUE 2022-12-16 18:00:00
## 8112 2022-12-16 18:01:43      TRUE 2022-12-16 18:00:00
## 8113 2022-12-16 18:01:43      TRUE 2022-12-16 18:00:00
## 8114 2022-12-16 18:01:41      TRUE 2022-12-16 18:00:00
## 8115 2022-12-16 18:01:38      TRUE 2022-12-16 18:00:00
## 8116 2022-12-16 18:01:38      TRUE 2022-12-16 18:00:00
## 8117 2022-12-16 18:01:35      TRUE 2022-12-16 18:00:00
## 8118 2022-12-16 18:01:35      TRUE 2022-12-16 18:00:00
## 8119 2022-12-16 18:01:30      TRUE 2022-12-16 18:00:00
## 8120 2022-12-16 18:01:30      TRUE 2022-12-16 18:00:00
## 8121 2022-12-16 18:01:30      TRUE 2022-12-16 18:00:00
## 8122 2022-12-16 18:01:29      TRUE 2022-12-16 18:00:00
## 8123 2022-12-16 18:01:28      TRUE 2022-12-16 18:00:00
## 8124 2022-12-16 18:01:28      TRUE 2022-12-16 18:00:00
## 8125 2022-12-16 18:01:26      TRUE 2022-12-16 18:00:00
## 8126 2022-12-16 18:01:24      TRUE 2022-12-16 18:00:00
## 8127 2022-12-16 18:01:23      TRUE 2022-12-16 18:00:00
## 8128 2022-12-16 18:01:21      TRUE 2022-12-16 18:00:00
## 8129 2022-12-16 18:01:15      TRUE 2022-12-16 18:00:00
## 8130 2022-12-16 18:01:14      TRUE 2022-12-16 18:00:00
## 8131 2022-12-16 18:01:14      TRUE 2022-12-16 18:00:00
## 8132 2022-12-16 18:01:13      TRUE 2022-12-16 18:00:00
## 8133 2022-12-16 18:01:10      TRUE 2022-12-16 18:00:00
## 8134 2022-12-16 18:01:09      TRUE 2022-12-16 18:00:00
## 8135 2022-12-16 18:01:08      TRUE 2022-12-16 18:00:00
## 8136 2022-12-16 18:01:07      TRUE 2022-12-16 18:00:00
## 8137 2022-12-16 18:01:06      TRUE 2022-12-16 18:00:00
## 8138 2022-12-16 18:01:01      TRUE 2022-12-16 18:00:00
## 8139 2022-12-16 18:00:57      TRUE 2022-12-16 18:00:00
## 8140 2022-12-16 18:00:49      TRUE 2022-12-16 18:00:00
## 8141 2022-12-16 18:00:46      TRUE 2022-12-16 18:00:00
## 8142 2022-12-16 18:00:46      TRUE 2022-12-16 18:00:00
## 8143 2022-12-16 18:00:46      TRUE 2022-12-16 18:00:00
## 8144 2022-12-16 18:00:43      TRUE 2022-12-16 18:00:00
## 8145 2022-12-16 18:00:41      TRUE 2022-12-16 18:00:00
## 8146 2022-12-16 18:00:40      TRUE 2022-12-16 18:00:00
## 8147 2022-12-16 18:00:38      TRUE 2022-12-16 18:00:00
## 8148 2022-12-16 18:00:37      TRUE 2022-12-16 18:00:00
## 8149 2022-12-16 18:00:34      TRUE 2022-12-16 18:00:00
## 8150 2022-12-16 18:00:34      TRUE 2022-12-16 18:00:00
## 8151 2022-12-16 18:00:33      TRUE 2022-12-16 18:00:00
## 8152 2022-12-16 18:00:32      TRUE 2022-12-16 18:00:00
## 8153 2022-12-16 18:00:26      TRUE 2022-12-16 18:00:00
## 8154 2022-12-16 18:00:26      TRUE 2022-12-16 18:00:00
## 8155 2022-12-16 18:00:26      TRUE 2022-12-16 18:00:00
## 8156 2022-12-16 18:00:26      TRUE 2022-12-16 18:00:00
## 8157 2022-12-16 18:00:23      TRUE 2022-12-16 18:00:00
## 8158 2022-12-16 18:00:23      TRUE 2022-12-16 18:00:00
## 8159 2022-12-16 18:00:22      TRUE 2022-12-16 18:00:00
## 8160 2022-12-16 18:00:21      TRUE 2022-12-16 18:00:00
## 8161 2022-12-16 18:00:20      TRUE 2022-12-16 18:00:00
## 8162 2022-12-16 18:00:20      TRUE 2022-12-16 18:00:00
## 8163 2022-12-16 18:00:19      TRUE 2022-12-16 18:00:00
## 8164 2022-12-16 18:00:18      TRUE 2022-12-16 18:00:00
## 8165 2022-12-16 18:00:17      TRUE 2022-12-16 18:00:00
## 8166 2022-12-16 18:00:15      TRUE 2022-12-16 18:00:00
## 8167 2022-12-16 18:00:14      TRUE 2022-12-16 18:00:00
## 8168 2022-12-16 18:00:13      TRUE 2022-12-16 18:00:00
## 8169 2022-12-16 18:00:13      TRUE 2022-12-16 18:00:00
## 8170 2022-12-16 18:00:11      TRUE 2022-12-16 18:00:00
## 8171 2022-12-16 18:00:05      TRUE 2022-12-16 18:00:00
## 8172 2022-12-16 18:00:03      TRUE 2022-12-16 18:00:00
## 8173 2022-12-16 18:00:02      TRUE 2022-12-16 18:00:00
## 8174 2022-12-16 18:00:00      TRUE 2022-12-16 18:00:00
## 8175 2022-12-16 17:59:59      TRUE 2022-12-16 18:00:00
## 8176 2022-12-16 17:59:59      TRUE 2022-12-16 18:00:00
## 8177 2022-12-16 17:59:58      TRUE 2022-12-16 18:00:00
## 8178 2022-12-16 17:59:57      TRUE 2022-12-16 18:00:00
## 8179 2022-12-16 17:59:56      TRUE 2022-12-16 18:00:00
## 8180 2022-12-16 17:59:55      TRUE 2022-12-16 18:00:00
## 8181 2022-12-16 17:59:54      TRUE 2022-12-16 18:00:00
## 8182 2022-12-16 17:59:52      TRUE 2022-12-16 18:00:00
## 8183 2022-12-16 17:59:49      TRUE 2022-12-16 18:00:00
## 8184 2022-12-16 17:59:48      TRUE 2022-12-16 18:00:00
## 8185 2022-12-16 17:59:46      TRUE 2022-12-16 18:00:00
## 8186 2022-12-16 17:59:45      TRUE 2022-12-16 18:00:00
## 8187 2022-12-16 17:59:43      TRUE 2022-12-16 18:00:00
## 8188 2022-12-16 17:59:40      TRUE 2022-12-16 18:00:00
## 8189 2022-12-16 17:59:35      TRUE 2022-12-16 18:00:00
## 8190 2022-12-16 17:59:35      TRUE 2022-12-16 18:00:00
## 8191 2022-12-16 17:59:34      TRUE 2022-12-16 18:00:00
## 8192 2022-12-16 17:59:34      TRUE 2022-12-16 18:00:00
## 8193 2022-12-16 17:59:33      TRUE 2022-12-16 18:00:00
## 8194 2022-12-16 17:59:32      TRUE 2022-12-16 18:00:00
## 8195 2022-12-16 17:59:30      TRUE 2022-12-16 18:00:00
## 8196 2022-12-16 17:59:28      TRUE 2022-12-16 18:00:00
## 8197 2022-12-16 17:59:26      TRUE 2022-12-16 18:00:00
## 8198 2022-12-16 17:59:26      TRUE 2022-12-16 18:00:00
## 8199 2022-12-16 17:59:24      TRUE 2022-12-16 18:00:00
## 8200 2022-12-16 17:59:23      TRUE 2022-12-16 18:00:00
## 8201 2022-12-16 17:59:22      TRUE 2022-12-16 18:00:00
## 8202 2022-12-16 17:59:22      TRUE 2022-12-16 18:00:00
## 8203 2022-12-16 17:59:19      TRUE 2022-12-16 18:00:00
## 8204 2022-12-16 17:59:18      TRUE 2022-12-16 18:00:00
## 8205 2022-12-16 17:59:17      TRUE 2022-12-16 18:00:00
## 8206 2022-12-16 17:59:16      TRUE 2022-12-16 18:00:00
## 8207 2022-12-16 17:59:14      TRUE 2022-12-16 18:00:00
## 8208 2022-12-16 17:59:14      TRUE 2022-12-16 18:00:00
## 8209 2022-12-16 17:59:13      TRUE 2022-12-16 18:00:00
## 8210 2022-12-16 17:59:11      TRUE 2022-12-16 18:00:00
## 8211 2022-12-16 17:59:10      TRUE 2022-12-16 18:00:00
## 8212 2022-12-16 17:59:09      TRUE 2022-12-16 18:00:00
## 8213 2022-12-16 17:59:09      TRUE 2022-12-16 18:00:00
## 8214 2022-12-16 17:59:08      TRUE 2022-12-16 18:00:00
## 8215 2022-12-16 17:59:08      TRUE 2022-12-16 18:00:00
## 8216 2022-12-16 17:59:08      TRUE 2022-12-16 18:00:00
## 8217 2022-12-16 17:59:08      TRUE 2022-12-16 18:00:00
## 8218 2022-12-16 17:59:07      TRUE 2022-12-16 18:00:00
## 8219 2022-12-16 17:59:07      TRUE 2022-12-16 18:00:00
## 8220 2022-12-16 17:59:06      TRUE 2022-12-16 18:00:00
## 8221 2022-12-16 17:59:06      TRUE 2022-12-16 18:00:00
## 8222 2022-12-16 17:59:06      TRUE 2022-12-16 18:00:00
## 8223 2022-12-16 17:59:02      TRUE 2022-12-16 18:00:00
## 8224 2022-12-16 17:58:59      TRUE 2022-12-16 18:00:00
## 8225 2022-12-16 17:58:57      TRUE 2022-12-16 18:00:00
## 8226 2022-12-16 17:58:57      TRUE 2022-12-16 18:00:00
## 8227 2022-12-16 17:58:55      TRUE 2022-12-16 18:00:00
## 8228 2022-12-16 17:58:53      TRUE 2022-12-16 18:00:00
## 8229 2022-12-16 17:58:53      TRUE 2022-12-16 18:00:00
## 8230 2022-12-16 17:58:52      TRUE 2022-12-16 18:00:00
## 8231 2022-12-16 17:58:51      TRUE 2022-12-16 18:00:00
## 8232 2022-12-16 17:58:47      TRUE 2022-12-16 18:00:00
## 8233 2022-12-16 17:58:46      TRUE 2022-12-16 18:00:00
## 8234 2022-12-16 17:58:43      TRUE 2022-12-16 18:00:00
## 8235 2022-12-16 17:58:39      TRUE 2022-12-16 18:00:00
## 8236 2022-12-16 17:58:39      TRUE 2022-12-16 18:00:00
## 8237 2022-12-16 17:58:39      TRUE 2022-12-16 18:00:00
## 8238 2022-12-16 17:58:38      TRUE 2022-12-16 18:00:00
## 8239 2022-12-16 17:58:37      TRUE 2022-12-16 18:00:00
## 8240 2022-12-16 17:58:35      TRUE 2022-12-16 18:00:00
## 8241 2022-12-16 17:58:34      TRUE 2022-12-16 18:00:00
## 8242 2022-12-16 17:58:33      TRUE 2022-12-16 18:00:00
## 8243 2022-12-16 17:58:32      TRUE 2022-12-16 18:00:00
## 8244 2022-12-16 17:58:29      TRUE 2022-12-16 18:00:00
## 8245 2022-12-16 17:58:27      TRUE 2022-12-16 18:00:00
## 8246 2022-12-16 17:58:25      TRUE 2022-12-16 18:00:00
## 8247 2022-12-16 17:58:21      TRUE 2022-12-16 18:00:00
## 8248 2022-12-16 17:58:17      TRUE 2022-12-16 18:00:00
## 8249 2022-12-16 17:58:15      TRUE 2022-12-16 18:00:00
## 8250 2022-12-16 17:58:14      TRUE 2022-12-16 18:00:00
## 8251 2022-12-16 17:58:14      TRUE 2022-12-16 18:00:00
## 8252 2022-12-16 17:58:12      TRUE 2022-12-16 18:00:00
## 8253 2022-12-16 17:58:12      TRUE 2022-12-16 18:00:00
## 8254 2022-12-16 17:58:09      TRUE 2022-12-16 18:00:00
## 8255 2022-12-16 17:58:07      TRUE 2022-12-16 18:00:00
## 8256 2022-12-16 17:58:06      TRUE 2022-12-16 18:00:00
## 8257 2022-12-16 17:58:06      TRUE 2022-12-16 18:00:00
## 8258 2022-12-16 17:58:06      TRUE 2022-12-16 18:00:00
## 8259 2022-12-16 17:58:05      TRUE 2022-12-16 18:00:00
## 8260 2022-12-16 17:58:04      TRUE 2022-12-16 18:00:00
## 8261 2022-12-16 17:58:04      TRUE 2022-12-16 18:00:00
## 8262 2022-12-16 17:58:03      TRUE 2022-12-16 18:00:00
## 8263 2022-12-16 17:58:02      TRUE 2022-12-16 18:00:00
## 8264 2022-12-16 17:58:02      TRUE 2022-12-16 18:00:00
## 8265 2022-12-16 17:58:01      TRUE 2022-12-16 18:00:00
## 8266 2022-12-16 17:58:00      TRUE 2022-12-16 18:00:00
## 8267 2022-12-16 17:58:00      TRUE 2022-12-16 18:00:00
## 8268 2022-12-16 17:57:59      TRUE 2022-12-16 18:00:00
## 8269 2022-12-16 17:57:59      TRUE 2022-12-16 18:00:00
## 8270 2022-12-16 17:57:58      TRUE 2022-12-16 18:00:00
## 8271 2022-12-16 17:57:57      TRUE 2022-12-16 18:00:00
## 8272 2022-12-16 17:57:57      TRUE 2022-12-16 18:00:00
## 8273 2022-12-16 17:57:55      TRUE 2022-12-16 18:00:00
## 8274 2022-12-16 17:57:54      TRUE 2022-12-16 18:00:00
## 8275 2022-12-16 17:57:51      TRUE 2022-12-16 18:00:00
## 8276 2022-12-16 17:57:49      TRUE 2022-12-16 18:00:00
## 8277 2022-12-16 17:57:48      TRUE 2022-12-16 18:00:00
## 8278 2022-12-16 17:57:48      TRUE 2022-12-16 18:00:00
## 8279 2022-12-16 17:57:43      TRUE 2022-12-16 18:00:00
## 8280 2022-12-16 17:57:43      TRUE 2022-12-16 18:00:00
## 8281 2022-12-16 17:57:42      TRUE 2022-12-16 18:00:00
## 8282 2022-12-16 17:57:37      TRUE 2022-12-16 18:00:00
## 8283 2022-12-16 17:57:37      TRUE 2022-12-16 18:00:00
## 8284 2022-12-16 17:57:35      TRUE 2022-12-16 18:00:00
## 8285 2022-12-16 17:57:34      TRUE 2022-12-16 18:00:00
## 8286 2022-12-16 17:57:34      TRUE 2022-12-16 18:00:00
## 8287 2022-12-16 17:57:33      TRUE 2022-12-16 18:00:00
## 8288 2022-12-16 17:57:33      TRUE 2022-12-16 18:00:00
## 8289 2022-12-16 17:57:32      TRUE 2022-12-16 18:00:00
## 8290 2022-12-16 17:57:32      TRUE 2022-12-16 18:00:00
## 8291 2022-12-16 17:57:31      TRUE 2022-12-16 18:00:00
## 8292 2022-12-16 17:57:31      TRUE 2022-12-16 18:00:00
## 8293 2022-12-16 17:57:31      TRUE 2022-12-16 18:00:00
## 8294 2022-12-16 17:57:27      TRUE 2022-12-16 18:00:00
## 8295 2022-12-16 17:57:27      TRUE 2022-12-16 18:00:00
## 8296 2022-12-16 17:57:25      TRUE 2022-12-16 18:00:00
## 8297 2022-12-16 17:57:24      TRUE 2022-12-16 18:00:00
## 8298 2022-12-16 17:57:22      TRUE 2022-12-16 18:00:00
## 8299 2022-12-16 17:57:21      TRUE 2022-12-16 18:00:00
## 8300 2022-12-16 17:57:21      TRUE 2022-12-16 18:00:00
## 8301 2022-12-16 17:57:18      TRUE 2022-12-16 18:00:00
## 8302 2022-12-16 17:57:18      TRUE 2022-12-16 18:00:00
## 8303 2022-12-16 17:57:18      TRUE 2022-12-16 18:00:00
## 8304 2022-12-16 17:57:17      TRUE 2022-12-16 18:00:00
## 8305 2022-12-16 17:57:14      TRUE 2022-12-16 18:00:00
## 8306 2022-12-16 17:57:13      TRUE 2022-12-16 18:00:00
## 8307 2022-12-16 17:57:12      TRUE 2022-12-16 18:00:00
## 8308 2022-12-16 17:57:12      TRUE 2022-12-16 18:00:00
## 8309 2022-12-16 17:57:11      TRUE 2022-12-16 18:00:00
## 8310 2022-12-16 17:57:09      TRUE 2022-12-16 18:00:00
## 8311 2022-12-16 17:57:09      TRUE 2022-12-16 18:00:00
## 8312 2022-12-16 17:57:08      TRUE 2022-12-16 18:00:00
## 8313 2022-12-16 17:57:07      TRUE 2022-12-16 18:00:00
## 8314 2022-12-16 17:57:06      TRUE 2022-12-16 18:00:00
## 8315 2022-12-16 17:57:06      TRUE 2022-12-16 18:00:00
## 8316 2022-12-16 17:57:06      TRUE 2022-12-16 18:00:00
## 8317 2022-12-16 17:57:05      TRUE 2022-12-16 18:00:00
## 8318 2022-12-16 17:57:05      TRUE 2022-12-16 18:00:00
## 8319 2022-12-16 17:57:05      TRUE 2022-12-16 18:00:00
## 8320 2022-12-16 17:57:05      TRUE 2022-12-16 18:00:00
## 8321 2022-12-16 17:57:04      TRUE 2022-12-16 18:00:00
## 8322 2022-12-16 17:57:03      TRUE 2022-12-16 18:00:00
## 8323 2022-12-16 17:57:03      TRUE 2022-12-16 18:00:00
## 8324 2022-12-16 17:57:02      TRUE 2022-12-16 18:00:00
## 8325 2022-12-16 17:57:01      TRUE 2022-12-16 18:00:00
## 8326 2022-12-16 17:57:01      TRUE 2022-12-16 18:00:00
## 8327 2022-12-16 17:57:01      TRUE 2022-12-16 18:00:00
## 8328 2022-12-16 17:56:59      TRUE 2022-12-16 18:00:00
## 8329 2022-12-16 17:56:59      TRUE 2022-12-16 18:00:00
## 8330 2022-12-16 17:56:59      TRUE 2022-12-16 18:00:00
## 8331 2022-12-16 17:56:57      TRUE 2022-12-16 18:00:00
## 8332 2022-12-16 17:56:56      TRUE 2022-12-16 18:00:00
## 8333 2022-12-16 17:56:54      TRUE 2022-12-16 18:00:00
## 8334 2022-12-16 17:56:52      TRUE 2022-12-16 18:00:00
## 8335 2022-12-16 17:56:51      TRUE 2022-12-16 18:00:00
## 8336 2022-12-16 17:56:49      TRUE 2022-12-16 18:00:00
## 8337 2022-12-16 17:56:49      TRUE 2022-12-16 18:00:00
## 8338 2022-12-16 17:56:48      TRUE 2022-12-16 18:00:00
## 8339 2022-12-16 17:56:47      TRUE 2022-12-16 18:00:00
## 8340 2022-12-16 17:56:47      TRUE 2022-12-16 18:00:00
## 8341 2022-12-16 17:56:47      TRUE 2022-12-16 18:00:00
## 8342 2022-12-16 17:56:47      TRUE 2022-12-16 18:00:00
## 8343 2022-12-16 17:56:46      TRUE 2022-12-16 18:00:00
## 8344 2022-12-16 17:56:46      TRUE 2022-12-16 18:00:00
## 8345 2022-12-16 17:56:46      TRUE 2022-12-16 18:00:00
## 8346 2022-12-16 17:56:46      TRUE 2022-12-16 18:00:00
## 8347 2022-12-16 17:56:45      TRUE 2022-12-16 18:00:00
## 8348 2022-12-16 17:56:44      TRUE 2022-12-16 18:00:00
## 8349 2022-12-16 17:56:44      TRUE 2022-12-16 18:00:00
## 8350 2022-12-16 17:56:43      TRUE 2022-12-16 18:00:00
## 8351 2022-12-16 17:56:42      TRUE 2022-12-16 18:00:00
## 8352 2022-12-16 17:56:41      TRUE 2022-12-16 18:00:00
## 8353 2022-12-16 17:56:41      TRUE 2022-12-16 18:00:00
## 8354 2022-12-16 17:56:41      TRUE 2022-12-16 18:00:00
## 8355 2022-12-16 17:56:40      TRUE 2022-12-16 18:00:00
## 8356 2022-12-16 17:56:39      TRUE 2022-12-16 18:00:00
## 8357 2022-12-16 17:56:39      TRUE 2022-12-16 18:00:00
## 8358 2022-12-16 17:56:39      TRUE 2022-12-16 18:00:00
## 8359 2022-12-16 17:56:38      TRUE 2022-12-16 18:00:00
## 8360 2022-12-16 17:56:38      TRUE 2022-12-16 18:00:00
## 8361 2022-12-16 17:56:38      TRUE 2022-12-16 18:00:00
## 8362 2022-12-16 17:56:36      TRUE 2022-12-16 18:00:00
## 8363 2022-12-16 17:56:36      TRUE 2022-12-16 18:00:00
## 8364 2022-12-16 17:56:35      TRUE 2022-12-16 18:00:00
## 8365 2022-12-16 17:56:35      TRUE 2022-12-16 18:00:00
## 8366 2022-12-16 17:56:33      TRUE 2022-12-16 18:00:00
## 8367 2022-12-16 17:56:32      TRUE 2022-12-16 18:00:00
## 8368 2022-12-16 17:56:31      TRUE 2022-12-16 18:00:00
## 8369 2022-12-16 17:56:30      TRUE 2022-12-16 18:00:00
## 8370 2022-12-16 17:56:30      TRUE 2022-12-16 18:00:00
## 8371 2022-12-16 17:56:26      TRUE 2022-12-16 18:00:00
## 8372 2022-12-16 17:56:19      TRUE 2022-12-16 18:00:00
## 8373 2022-12-16 17:56:18      TRUE 2022-12-16 18:00:00
## 8374 2022-12-16 17:56:14      TRUE 2022-12-16 18:00:00
## 8375 2022-12-16 17:56:10      TRUE 2022-12-16 18:00:00
## 8376 2022-12-16 17:56:09      TRUE 2022-12-16 18:00:00
## 8377 2022-12-16 17:56:09      TRUE 2022-12-16 18:00:00
## 8378 2022-12-16 17:56:05      TRUE 2022-12-16 18:00:00
## 8379 2022-12-16 17:56:03      TRUE 2022-12-16 18:00:00
## 8380 2022-12-16 17:56:01      TRUE 2022-12-16 18:00:00
## 8381 2022-12-16 17:56:00      TRUE 2022-12-16 18:00:00
## 8382 2022-12-16 17:55:58      TRUE 2022-12-16 18:00:00
## 8383 2022-12-16 17:55:57      TRUE 2022-12-16 18:00:00
## 8384 2022-12-16 17:55:55      TRUE 2022-12-16 18:00:00
## 8385 2022-12-16 17:55:53      TRUE 2022-12-16 18:00:00
## 8386 2022-12-16 17:55:48      TRUE 2022-12-16 18:00:00
## 8387 2022-12-16 17:55:45      TRUE 2022-12-16 18:00:00
## 8388 2022-12-16 17:55:44      TRUE 2022-12-16 18:00:00
## 8389 2022-12-16 17:55:44      TRUE 2022-12-16 18:00:00
## 8390 2022-12-16 17:55:38      TRUE 2022-12-16 18:00:00
## 8391 2022-12-16 17:55:37      TRUE 2022-12-16 18:00:00
## 8392 2022-12-16 17:55:36      TRUE 2022-12-16 18:00:00
## 8393 2022-12-16 17:55:36      TRUE 2022-12-16 18:00:00
## 8394 2022-12-16 17:55:34      TRUE 2022-12-16 18:00:00
## 8395 2022-12-16 17:55:34      TRUE 2022-12-16 18:00:00
## 8396 2022-12-16 17:55:31      TRUE 2022-12-16 18:00:00
## 8397 2022-12-16 17:55:31      TRUE 2022-12-16 18:00:00
## 8398 2022-12-16 17:55:29      TRUE 2022-12-16 18:00:00
## 8399 2022-12-16 17:55:27      TRUE 2022-12-16 18:00:00
## 8400 2022-12-16 17:55:24      TRUE 2022-12-16 18:00:00
## 8401 2022-12-16 17:55:22      TRUE 2022-12-16 18:00:00
## 8402 2022-12-16 17:55:21      TRUE 2022-12-16 18:00:00
## 8403 2022-12-16 17:55:18      TRUE 2022-12-16 18:00:00
## 8404 2022-12-16 17:55:17      TRUE 2022-12-16 18:00:00
## 8405 2022-12-16 17:55:17      TRUE 2022-12-16 18:00:00
## 8406 2022-12-16 17:55:10      TRUE 2022-12-16 18:00:00
## 8407 2022-12-16 17:55:10      TRUE 2022-12-16 18:00:00
## 8408 2022-12-16 17:55:08      TRUE 2022-12-16 18:00:00
## 8409 2022-12-16 17:55:08      TRUE 2022-12-16 18:00:00
## 8410 2022-12-16 17:55:07      TRUE 2022-12-16 18:00:00
## 8411 2022-12-16 17:55:06      TRUE 2022-12-16 18:00:00
## 8412 2022-12-16 17:55:06      TRUE 2022-12-16 18:00:00
## 8413 2022-12-16 17:55:03      TRUE 2022-12-16 18:00:00
## 8414 2022-12-16 17:55:03      TRUE 2022-12-16 18:00:00
## 8415 2022-12-16 17:55:03      TRUE 2022-12-16 18:00:00
## 8416 2022-12-16 17:55:02      TRUE 2022-12-16 18:00:00
## 8417 2022-12-16 17:54:59      TRUE 2022-12-16 18:00:00
## 8418 2022-12-16 17:54:58      TRUE 2022-12-16 18:00:00
## 8419 2022-12-16 17:54:58      TRUE 2022-12-16 18:00:00
## 8420 2022-12-16 17:54:55      TRUE 2022-12-16 18:00:00
## 8421 2022-12-16 17:54:53      TRUE 2022-12-16 18:00:00
## 8422 2022-12-16 17:54:48      TRUE 2022-12-16 18:00:00
## 8423 2022-12-16 17:54:46      TRUE 2022-12-16 18:00:00
## 8424 2022-12-16 17:54:45      TRUE 2022-12-16 18:00:00
## 8425 2022-12-16 17:54:44      TRUE 2022-12-16 18:00:00
## 8426 2022-12-16 17:54:41      TRUE 2022-12-16 18:00:00
## 8427 2022-12-16 17:54:40      TRUE 2022-12-16 18:00:00
## 8428 2022-12-16 17:54:37      TRUE 2022-12-16 18:00:00
## 8429 2022-12-16 17:54:36      TRUE 2022-12-16 18:00:00
## 8430 2022-12-16 17:54:35      TRUE 2022-12-16 18:00:00
## 8431 2022-12-16 17:54:33      TRUE 2022-12-16 18:00:00
## 8432 2022-12-16 17:54:33      TRUE 2022-12-16 18:00:00
## 8433 2022-12-16 17:54:31      TRUE 2022-12-16 18:00:00
## 8434 2022-12-16 17:54:31      TRUE 2022-12-16 18:00:00
## 8435 2022-12-16 17:54:30      TRUE 2022-12-16 18:00:00
## 8436 2022-12-16 17:54:28      TRUE 2022-12-16 18:00:00
## 8437 2022-12-16 17:54:26      TRUE 2022-12-16 18:00:00
## 8438 2022-12-16 17:54:26      TRUE 2022-12-16 18:00:00
## 8439 2022-12-16 17:54:25      TRUE 2022-12-16 18:00:00
## 8440 2022-12-16 17:54:25      TRUE 2022-12-16 18:00:00
## 8441 2022-12-16 17:54:24      TRUE 2022-12-16 18:00:00
## 8442 2022-12-16 17:54:22      TRUE 2022-12-16 18:00:00
## 8443 2022-12-16 17:54:19      TRUE 2022-12-16 18:00:00
## 8444 2022-12-16 17:54:17      TRUE 2022-12-16 18:00:00
## 8445 2022-12-16 17:54:11      TRUE 2022-12-16 18:00:00
## 8446 2022-12-16 17:54:08      TRUE 2022-12-16 18:00:00
## 8447 2022-12-16 17:54:07      TRUE 2022-12-16 18:00:00
## 8448 2022-12-16 17:54:05      TRUE 2022-12-16 18:00:00
## 8449 2022-12-16 17:54:05      TRUE 2022-12-16 18:00:00
## 8450 2022-12-16 17:54:03      TRUE 2022-12-16 18:00:00
## 8451 2022-12-16 17:54:01      TRUE 2022-12-16 18:00:00
## 8452 2022-12-16 17:54:00      TRUE 2022-12-16 18:00:00
## 8453 2022-12-16 17:53:58      TRUE 2022-12-16 18:00:00
## 8454 2022-12-16 17:53:57      TRUE 2022-12-16 18:00:00
## 8455 2022-12-16 17:53:56      TRUE 2022-12-16 18:00:00
## 8456 2022-12-16 17:53:54      TRUE 2022-12-16 18:00:00
## 8457 2022-12-16 17:53:51      TRUE 2022-12-16 18:00:00
## 8458 2022-12-16 17:53:48      TRUE 2022-12-16 18:00:00
## 8459 2022-12-16 17:53:48      TRUE 2022-12-16 18:00:00
## 8460 2022-12-16 17:53:47      TRUE 2022-12-16 18:00:00
## 8461 2022-12-16 17:53:47      TRUE 2022-12-16 18:00:00
## 8462 2022-12-16 17:53:45      TRUE 2022-12-16 18:00:00
## 8463 2022-12-16 17:53:44      TRUE 2022-12-16 18:00:00
## 8464 2022-12-16 17:53:43      TRUE 2022-12-16 18:00:00
## 8465 2022-12-16 17:53:41      TRUE 2022-12-16 18:00:00
## 8466 2022-12-16 17:53:38      TRUE 2022-12-16 18:00:00
## 8467 2022-12-16 17:53:37      TRUE 2022-12-16 18:00:00
## 8468 2022-12-16 17:53:33      TRUE 2022-12-16 18:00:00
## 8469 2022-12-16 17:53:31      TRUE 2022-12-16 18:00:00
## 8470 2022-12-16 17:53:29      TRUE 2022-12-16 18:00:00
## 8471 2022-12-16 17:53:27      TRUE 2022-12-16 18:00:00
## 8472 2022-12-16 17:53:26      TRUE 2022-12-16 18:00:00
## 8473 2022-12-16 17:53:24      TRUE 2022-12-16 18:00:00
## 8474 2022-12-16 17:53:23      TRUE 2022-12-16 18:00:00
## 8475 2022-12-16 17:53:16      TRUE 2022-12-16 18:00:00
## 8476 2022-12-16 17:53:16      TRUE 2022-12-16 18:00:00
## 8477 2022-12-16 17:53:15      TRUE 2022-12-16 18:00:00
## 8478 2022-12-16 17:53:15      TRUE 2022-12-16 18:00:00
## 8479 2022-12-16 17:53:15      TRUE 2022-12-16 18:00:00
## 8480 2022-12-16 17:53:14      TRUE 2022-12-16 18:00:00
## 8481 2022-12-16 17:53:08      TRUE 2022-12-16 18:00:00
## 8482 2022-12-16 17:53:07      TRUE 2022-12-16 18:00:00
## 8483 2022-12-16 17:53:05      TRUE 2022-12-16 18:00:00
## 8484 2022-12-16 17:53:03      TRUE 2022-12-16 18:00:00
## 8485 2022-12-16 17:53:01      TRUE 2022-12-16 18:00:00
## 8486 2022-12-16 17:52:59      TRUE 2022-12-16 18:00:00
## 8487 2022-12-16 17:52:58      TRUE 2022-12-16 18:00:00
## 8488 2022-12-16 17:52:54      TRUE 2022-12-16 18:00:00
## 8489 2022-12-16 17:52:54      TRUE 2022-12-16 18:00:00
## 8490 2022-12-16 17:52:54      TRUE 2022-12-16 18:00:00
## 8491 2022-12-16 17:52:53      TRUE 2022-12-16 18:00:00
## 8492 2022-12-16 17:52:52      TRUE 2022-12-16 18:00:00
## 8493 2022-12-16 17:52:45      TRUE 2022-12-16 18:00:00
## 8494 2022-12-16 17:52:45      TRUE 2022-12-16 18:00:00
## 8495 2022-12-16 17:52:44      TRUE 2022-12-16 18:00:00
## 8496 2022-12-16 17:52:44      TRUE 2022-12-16 18:00:00
## 8497 2022-12-16 17:52:40      TRUE 2022-12-16 18:00:00
## 8498 2022-12-16 17:52:39      TRUE 2022-12-16 18:00:00
## 8499 2022-12-16 17:52:39      TRUE 2022-12-16 18:00:00
## 8500 2022-12-16 17:52:38      TRUE 2022-12-16 18:00:00
## 8501 2022-12-16 17:52:34      TRUE 2022-12-16 18:00:00
## 8502 2022-12-16 17:52:32      TRUE 2022-12-16 18:00:00
## 8503 2022-12-16 17:52:31      TRUE 2022-12-16 18:00:00
## 8504 2022-12-16 17:52:24      TRUE 2022-12-16 18:00:00
## 8505 2022-12-16 17:52:23      TRUE 2022-12-16 18:00:00
## 8506 2022-12-16 17:52:23      TRUE 2022-12-16 18:00:00
## 8507 2022-12-16 17:52:23      TRUE 2022-12-16 18:00:00
## 8508 2022-12-16 17:52:22      TRUE 2022-12-16 18:00:00
## 8509 2022-12-16 17:52:18      TRUE 2022-12-16 18:00:00
## 8510 2022-12-16 17:52:16      TRUE 2022-12-16 18:00:00
## 8511 2022-12-16 17:52:15      TRUE 2022-12-16 18:00:00
## 8512 2022-12-16 17:52:12      TRUE 2022-12-16 18:00:00
## 8513 2022-12-16 17:52:12      TRUE 2022-12-16 18:00:00
## 8514 2022-12-16 17:52:06      TRUE 2022-12-16 18:00:00
## 8515 2022-12-16 17:52:05      TRUE 2022-12-16 18:00:00
## 8516 2022-12-16 17:52:03      TRUE 2022-12-16 18:00:00
## 8517 2022-12-16 17:51:59      TRUE 2022-12-16 18:00:00
## 8518 2022-12-16 17:51:59      TRUE 2022-12-16 18:00:00
## 8519 2022-12-16 17:51:55      TRUE 2022-12-16 18:00:00
## 8520 2022-12-16 17:51:54      TRUE 2022-12-16 18:00:00
## 8521 2022-12-16 17:51:52      TRUE 2022-12-16 18:00:00
## 8522 2022-12-16 17:51:48      TRUE 2022-12-16 18:00:00
## 8523 2022-12-16 17:51:48      TRUE 2022-12-16 18:00:00
## 8524 2022-12-16 17:51:47      TRUE 2022-12-16 18:00:00
## 8525 2022-12-16 17:51:47      TRUE 2022-12-16 18:00:00
## 8526 2022-12-16 17:51:45      TRUE 2022-12-16 18:00:00
## 8527 2022-12-16 17:51:45      TRUE 2022-12-16 18:00:00
## 8528 2022-12-16 17:51:44      TRUE 2022-12-16 18:00:00
## 8529 2022-12-16 17:51:44      TRUE 2022-12-16 18:00:00
## 8530 2022-12-16 17:51:42      TRUE 2022-12-16 18:00:00
## 8531 2022-12-16 17:51:35      TRUE 2022-12-16 18:00:00
## 8532 2022-12-16 17:51:35      TRUE 2022-12-16 18:00:00
## 8533 2022-12-16 17:51:34      TRUE 2022-12-16 18:00:00
## 8534 2022-12-16 17:51:34      TRUE 2022-12-16 18:00:00
## 8535 2022-12-16 17:51:33      TRUE 2022-12-16 18:00:00
## 8536 2022-12-16 17:51:33      TRUE 2022-12-16 18:00:00
## 8537 2022-12-16 17:51:32      TRUE 2022-12-16 18:00:00
## 8538 2022-12-16 17:51:31      TRUE 2022-12-16 18:00:00
## 8539 2022-12-16 17:51:30      TRUE 2022-12-16 18:00:00
## 8540 2022-12-16 17:51:30      TRUE 2022-12-16 18:00:00
## 8541 2022-12-16 17:51:29      TRUE 2022-12-16 18:00:00
## 8542 2022-12-16 17:51:28      TRUE 2022-12-16 18:00:00
## 8543 2022-12-16 17:51:24      TRUE 2022-12-16 18:00:00
## 8544 2022-12-16 17:51:23      TRUE 2022-12-16 18:00:00
## 8545 2022-12-16 17:51:23      TRUE 2022-12-16 18:00:00
## 8546 2022-12-16 17:51:19      TRUE 2022-12-16 18:00:00
## 8547 2022-12-16 17:51:17      TRUE 2022-12-16 18:00:00
## 8548 2022-12-16 17:51:17      TRUE 2022-12-16 18:00:00
## 8549 2022-12-16 17:51:14      TRUE 2022-12-16 18:00:00
## 8550 2022-12-16 17:51:14      TRUE 2022-12-16 18:00:00
## 8551 2022-12-16 17:51:13      TRUE 2022-12-16 18:00:00
## 8552 2022-12-16 17:51:02      TRUE 2022-12-16 18:00:00
## 8553 2022-12-16 17:51:00      TRUE 2022-12-16 18:00:00
## 8554 2022-12-16 17:50:58      TRUE 2022-12-16 18:00:00
## 8555 2022-12-16 17:50:58      TRUE 2022-12-16 18:00:00
## 8556 2022-12-16 17:50:58      TRUE 2022-12-16 18:00:00
## 8557 2022-12-16 17:50:55      TRUE 2022-12-16 18:00:00
## 8558 2022-12-16 17:50:54      TRUE 2022-12-16 18:00:00
## 8559 2022-12-16 17:50:54      TRUE 2022-12-16 18:00:00
## 8560 2022-12-16 17:50:53      TRUE 2022-12-16 18:00:00
## 8561 2022-12-16 17:50:52      TRUE 2022-12-16 18:00:00
## 8562 2022-12-16 17:50:49      TRUE 2022-12-16 18:00:00
## 8563 2022-12-16 17:50:47      TRUE 2022-12-16 18:00:00
## 8564 2022-12-16 17:50:43      TRUE 2022-12-16 18:00:00
## 8565 2022-12-16 17:50:41      TRUE 2022-12-16 18:00:00
## 8566 2022-12-16 17:50:41      TRUE 2022-12-16 18:00:00
## 8567 2022-12-16 17:50:40      TRUE 2022-12-16 18:00:00
## 8568 2022-12-16 17:50:39      TRUE 2022-12-16 18:00:00
## 8569 2022-12-16 17:50:30      TRUE 2022-12-16 18:00:00
## 8570 2022-12-16 17:50:28      TRUE 2022-12-16 18:00:00
## 8571 2022-12-16 17:50:23      TRUE 2022-12-16 18:00:00
## 8572 2022-12-16 17:50:19      TRUE 2022-12-16 18:00:00
## 8573 2022-12-16 17:50:18      TRUE 2022-12-16 18:00:00
## 8574 2022-12-16 17:50:17      TRUE 2022-12-16 18:00:00
## 8575 2022-12-16 17:50:16      TRUE 2022-12-16 18:00:00
## 8576 2022-12-16 17:50:16      TRUE 2022-12-16 18:00:00
## 8577 2022-12-16 17:50:14      TRUE 2022-12-16 18:00:00
## 8578 2022-12-16 17:50:14      TRUE 2022-12-16 18:00:00
## 8579 2022-12-16 17:50:11      TRUE 2022-12-16 18:00:00
## 8580 2022-12-16 17:50:09      TRUE 2022-12-16 18:00:00
## 8581 2022-12-16 17:50:09      TRUE 2022-12-16 18:00:00
## 8582 2022-12-16 17:50:08      TRUE 2022-12-16 18:00:00
## 8583 2022-12-16 17:50:07      TRUE 2022-12-16 18:00:00
## 8584 2022-12-16 17:50:07      TRUE 2022-12-16 18:00:00
## 8585 2022-12-16 17:50:00      TRUE 2022-12-16 18:00:00
## 8586 2022-12-16 17:50:00      TRUE 2022-12-16 18:00:00
## 8587 2022-12-16 17:49:59      TRUE 2022-12-16 18:00:00
## 8588 2022-12-16 17:49:59      TRUE 2022-12-16 18:00:00
## 8589 2022-12-16 17:49:59      TRUE 2022-12-16 18:00:00
## 8590 2022-12-16 17:49:52      TRUE 2022-12-16 18:00:00
## 8591 2022-12-16 17:49:50      TRUE 2022-12-16 18:00:00
## 8592 2022-12-16 17:49:42      TRUE 2022-12-16 18:00:00
## 8593 2022-12-16 17:49:41      TRUE 2022-12-16 18:00:00
## 8594 2022-12-16 17:49:38      TRUE 2022-12-16 18:00:00
## 8595 2022-12-16 17:49:38      TRUE 2022-12-16 18:00:00
## 8596 2022-12-16 17:49:37      TRUE 2022-12-16 18:00:00
## 8597 2022-12-16 17:49:36      TRUE 2022-12-16 18:00:00
## 8598 2022-12-16 17:49:31      TRUE 2022-12-16 18:00:00
## 8599 2022-12-16 17:49:29      TRUE 2022-12-16 18:00:00
## 8600 2022-12-16 17:49:20      TRUE 2022-12-16 18:00:00
## 8601 2022-12-16 17:49:18      TRUE 2022-12-16 18:00:00
## 8602 2022-12-16 17:49:14      TRUE 2022-12-16 18:00:00
## 8603 2022-12-16 17:49:08      TRUE 2022-12-16 18:00:00
## 8604 2022-12-16 17:49:08      TRUE 2022-12-16 18:00:00
## 8605 2022-12-16 17:49:07      TRUE 2022-12-16 18:00:00
## 8606 2022-12-16 17:48:59      TRUE 2022-12-16 18:00:00
## 8607 2022-12-16 17:48:58      TRUE 2022-12-16 18:00:00
## 8608 2022-12-16 17:48:57      TRUE 2022-12-16 18:00:00
## 8609 2022-12-16 17:48:54      TRUE 2022-12-16 18:00:00
## 8610 2022-12-16 17:48:53      TRUE 2022-12-16 18:00:00
## 8611 2022-12-16 17:48:48      TRUE 2022-12-16 18:00:00
## 8612 2022-12-16 17:48:44      TRUE 2022-12-16 18:00:00
## 8613 2022-12-16 17:48:43      TRUE 2022-12-16 18:00:00
## 8614 2022-12-16 17:48:42      TRUE 2022-12-16 18:00:00
## 8615 2022-12-16 17:48:40      TRUE 2022-12-16 18:00:00
## 8616 2022-12-16 17:48:39      TRUE 2022-12-16 18:00:00
## 8617 2022-12-16 17:48:33      TRUE 2022-12-16 18:00:00
## 8618 2022-12-16 17:48:31      TRUE 2022-12-16 18:00:00
## 8619 2022-12-16 17:48:29      TRUE 2022-12-16 18:00:00
## 8620 2022-12-16 17:48:27      TRUE 2022-12-16 18:00:00
## 8621 2022-12-16 17:48:26      TRUE 2022-12-16 18:00:00
## 8622 2022-12-16 17:48:24      TRUE 2022-12-16 18:00:00
## 8623 2022-12-16 17:48:24      TRUE 2022-12-16 18:00:00
## 8624 2022-12-16 17:48:23      TRUE 2022-12-16 18:00:00
## 8625 2022-12-16 17:48:22      TRUE 2022-12-16 18:00:00
## 8626 2022-12-16 17:48:21      TRUE 2022-12-16 18:00:00
svnteen1 %>% pull(created) %>% min()
## [1] "2022-12-16 17:48:21 UTC"
svnteen1 %>% pull(created) %>% max()
## [1] "2022-12-16 23:59:59 UTC"

plotting ggplot() & plotly()

ggplot(data = grp2, aes(x = created)) + geom_histogram(aes(fill = ..count..)) +
  theme(legend.position = "right") + xlab("Time") + ylab("Number of Tweets") +
  scale_fill_gradient(low = "pink", high = "maroon")
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

pltly <- grp2 %>%
  dplyr::count(Created_At_Round) %>%
  ggplot(mapping = aes(x = Created_At_Round, y = n)) + theme_light() +
  geom_line() + xlab(label = 'Date') + ylab(label = NULL) +
  ggtitle(label = 'Number of Tweets Per Hour')
pltly %>% ggplotly()